View Single Post
  #2  
Old 04-28-2007, 07:02 PM
Chandler Chandler is offline
Banned
Join Date: Jan 2007
Posts: 656
Chandler will become famous soon enough
HTML Code:
function onPlayerChats()
  {
  if (player.chat == "heyllo") //if (strequals(#c, heyllo))
    this.chat = "Heyllo";  //message hi;
  else if (player.chat.starts("hi")) //if (startswith(hi, #c))
    this.chat = "Oh heyllo there!";   
  }
Some tiny things, hehe
Reply With Quote