View Single Post
  #13  
Old 03-22-2006, 09:34 PM
Skyld Skyld is offline
Script-fu
Skyld's Avatar
Join Date: Jan 2002
Location: United Kingdom
Posts: 3,914
Skyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud ofSkyld has much to be proud of
Send a message via AIM to Skyld
Quote:
Originally Posted by Warcaptain
Also in substring() you need to tell it how long as well.

NPC Code:

player.colors[0] = player.chat.substring(4,-1).trim();

In new gscript, you do not need to specify a second parameter for substring() if you only want to specify an offset and continue to the end of the string.
PHP Code:
player.colors[0] = player.chat.substring(4).trim(); 
... is perfectly acceptable.
__________________
Skyld
Reply With Quote