Thread: script help pls
View Single Post
  #3  
Old 09-30-2006, 04:24 AM
ZeroTrack ZeroTrack is offline
G2K1 Developer
ZeroTrack's Avatar
Join Date: Apr 2004
Location: LongIsland, NY
Posts: 402
ZeroTrack is on a distinguished road
Send a message via AIM to ZeroTrack
Quote:
Originally Posted by Mark Sir Link View Post
NPC Code:

//in serverside...
function fib(n)
{
if (n < 2)
return 1;
return fib(n-1)+fib(n-2);
}

//#CLIENTSIDE
function onPlayerEnters()
{
player.chat = fib(30000);
}

http://wiki.graal.net/index.php/Crea...Starting_Guide

Get to reading
__________________

Reply With Quote