View Single Post
  #1  
Old 02-07-2006, 12:09 AM
Prozac Prozac is offline
one of the good guys
Prozac's Avatar
Join Date: Jan 2006
Posts: 245
Prozac is on a distinguished road
Send a message via AIM to Prozac
startswith gs2 equivelant?

What is the startwith(part,str) equivelant in gs2?
I searched on the wiki and the Graal Bible and they only mention it under NPC server and old gscript.

for example, I am trying:

PHP Code:
//#CLIENTSIDE
function onPlayerchats()
  {
    if (
startswith("test",player.chat))
     {
      
player.chat="test worked!";    // it never gets here when i say test
     
}
  } 
is there a gs2 version of this command? any suggestions?
Reply With Quote