Thread: setlevel?
View Single Post
  #9  
Old 08-05-2005, 06:41 PM
Tolnaftate2004 Tolnaftate2004 is offline
penguin.
Join Date: Jul 2004
Location: Berkeley, CA
Posts: 534
Tolnaftate2004 is a jewel in the roughTolnaftate2004 is a jewel in the rough
Send a message via AIM to Tolnaftate2004
Quote:
Originally Posted by Lance
It's a serverside command.
Quote:
Originally Posted by excaliber7388
//#CLIENTSIDE
...
toweapons Warp Rings/Warper1;
...
setlevel2 warper.nw,31,31;
...
@ above

You don't want toweapons with an NPC-Server.

PHP Code:
if (actionserverside) {
  if (
strequals(#p(0),warp)){
    
setlevel2 ...;
  }
}
//#CLIENTSIDE
...
triggeraction 0,0,serverside,WEAPON,warp;
... 
Reply With Quote