Thread: 2 functions ?
View Single Post
  #10  
Old 05-23-2002, 08:20 PM
BBflat BBflat is offline
Registered User
BBflat's Avatar
Join Date: Apr 2002
Location: United States of America
Posts: 573
BBflat is on a distinguished road
Recursion...

NPC Code:

if (playerenters)
{
a();
}

function a()
{
if (playerx < 5 && playerx > 2)
{
sleep 1;
a();
}
else
{
messageLoop Terminated;
}
}

__________________
I am a .sig virus. Please put me in your .sig so I can continue to replicate.
Reply With Quote