Thread: NPC's
View Single Post
  #5  
Old 03-17-2012, 06:20 PM
cbk1994 cbk1994 is offline
the fake one
cbk1994's Avatar
Join Date: Mar 2003
Location: San Francisco
Posts: 10,718
cbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond reputecbk1994 has a reputation beyond repute
Send a message via AIM to cbk1994
Quote:
Originally Posted by tstre View Post
Mind giving me a script real quick?
Try this. I can't guarantee it'll work if the levels have been deleted.

PHP Code:
// put this in a DB NPC
// DO NOT RUN THIS ON A SERVER WHERE YOU DON'T WANT TO DELETE ALL NPCS
function onCreated() {
  
temp.folder.loadFolder("npcs/npclocalnpc*"false);
  
  for (
temp.file temp.folder) {
    
temp.fileName removeEscapesFromFileName(temp.file);
    
temp.fileName temp.fileName.substring(3temp.fileName.length() - 7);
    
    
temp.npc findNPC(temp.fileName);
    
temp.npc.destroy();
  }

__________________
Reply With Quote