View Single Post
  #13  
Old 05-31-2006, 03:35 PM
xAndrewx xAndrewx is offline
Registered User
xAndrewx's Avatar
Join Date: Sep 2004
Posts: 5,260
xAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud ofxAndrewx has much to be proud of
Quote:
Originally Posted by Omini
NPC Code:
function onKeypressed(character)
{
if (character == "s") {
if (client.cx == "on") {
putaway();
}
}
}

NPC Code:
function onKeyPressed(Code, Key)
{
if (client.cs != "on")
return;
if (Key == "s")
putaway();
}


It's code, and then key :]

Skyld is only doing what is right, I guess most of the posts were pointless.
Reply With Quote