Thread: I need NPC help
View Single Post
  #14  
Old 02-02-2002, 09:11 AM
Saga2001 Saga2001 is offline
Wishing he had 3 feet
Join Date: Aug 2001
Location: Basement
Posts: 1,565
Saga2001 is on a distinguished road
Send a message via ICQ to Saga2001 Send a message via AIM to Saga2001 Send a message via Yahoo to Saga2001
Well,
Ipersonally think that its pretty retarded to send values thru functions, its trendy, and you could just use triggeractions. Also, that could screw up the scope, and like I personally hate non-global scope, like PHP. Its just pointless... Also this:
NPC Code:

func(10,10);
function func(i,j) {
ans = i*j;
return;
}


is to:
NPC Code:

i = 10;
j = 10;
func();
function func(i,j) {
ans = i*j;
return;
}


Mmmmmmmmmmmm....global scope.
Bootiful.
__________________

!Wan ( 11:27:55 AM):
can i c ur scripts please?
Zorg (RC): If I hear NPC Server call Ne0, Past Austin or Brent sexy one more time im disconnecting it
Reply With Quote