View Single Post
  #10  
Old 07-17-2006, 01:19 AM
ApothiX ApothiX is offline
Okiesmokie
Join Date: May 2004
Posts: 1,447
ApothiX is on a distinguished road
Quote:
Originally Posted by Twinny
PHP Code:
function onCreated() {
  
"Penguin";
}

function 
onPlayerchats() {
  if (
player.chat == "hello") {
    
message("I am a" SPC e);
  }

Now when a player says hello in the room with that NPC, it will reply "I am a Penguin".
Would probably be better to use this.char (or just chat) instead of message to set the text. Also, you should avoid prefixless variables whenever possible, use this. or temp. instead.

PHP Code:
function onCreated() {
  
this.type "Penguin";
}

function 
onPlayerChats() {
  if(
player.chat == "hello") {
    
chat "I am a " this.type;
  }

__________________


[06:24:19] * Parts: Skyld (i=silent@unaffiliated/skyld) ("Perhaps Okiesmokie did not realise that I like the boys. ")
Reply With Quote