View Single Post
  #9  
Old 01-29-2005, 12:38 AM
Rick Rick is offline
PipBoy Extraordinaire!
Rick's Avatar
Join Date: Jul 2004
Location: Long Beach, California.
Posts: 831
Rick is on a distinguished road
A snippet from a DB-NPC I made awhile ago: (uses gscript1 for clientside, 2.x compatible)

NPC Code:
function onCreated()
{
this.setshape(1, 32, 32);
}

function onActionChat(text)
{
message("You said: " @ text);
}

//#CLIENTSIDE
if (playerchats) {
triggeraction x+1,y+1,chat,#c;
}

Reply With Quote