Thread: Functions
View Single Post
  #9  
Old 10-15-2001, 03:53 AM
Xaviar Xaviar is offline
Registered User
Join Date: Aug 2001
Location: Fairyland
Posts: 463
Xaviar is on a distinguished road
Send a message via ICQ to Xaviar Send a message via AIM to Xaviar
Re: Re: Re: Re: k

Quote:
Originally posted by btedji


i dont think thats even possible, just dont make the function occur until you want it to
I'll have to agree with you on that...

Nyght, heres an example:

if you use oh, say this:
if (playertouchsme) {
talk();
}

function talk() {
message Hello.;
sleep 3;
message ;
}

its the exact same thing as using this, the only difference is readability, and some performance issues:

if (playertouchsme) {
message Hello.;
sleep 3;
message ;
}


Got it?
__________________
One by one, the penguins steal my sanity.

*cookie for Xaviar* --Originally posted by Tyhm

--Xaviar

A m e r i c a
Reply With Quote