View Single Post
  #2  
Old 12-10-2008, 12:19 AM
Tigairius Tigairius is offline
The Cat
Tigairius's Avatar
Join Date: Jan 2007
Location: Missouri, USA
Posts: 4,240
Tigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant futureTigairius has a brilliant future
You can delay the loading of the rest of the NPC by doing this I guess
PHP Code:
//#CLIENTSIDE
function onCreated() {
  while (
temp.wait 10) {
    
temp.wait++;
    
sleep(0.05);
  }
  [
Other Stuff Here]

But it would probably be better practice to do it this way:
PHP Code:
function onCreated() {
  
scheduleEvent(1"NewCreated"NULL);
}

function 
onNewCreated() {
  [
Other Stuff Here]

__________________


“Shoot for the moon. Even if you miss, you'll land among the stars.”
Reply With Quote