View Single Post
  #11  
Old 09-25-2002, 10:48 PM
emortylone emortylone is offline
Registered User
Join Date: Apr 2002
Location: Control-NPC
Posts: 834
emortylone is on a distinguished road
It is easier SOMEWHAT to do /help which was my original idea, but I think making the NPC Server more interactive is a good way to do things. Maybe not for help, but for polls and FAQ questions and such. Perhaps though you're right, and /help could sendpm the message to you.

Jagen:
The whole #p(0) person and such... why though? If (actionpm) would be cool I guess, and #p(0) and #p(1) WOULD have to be seperate to make it more efficient otherwise to check to see if I sent you a pm:
NPC Code:

if (actionpm)
{ tokenize #p(0);
if (strequals(#t(0),Projectshifter))
{ action;}
}


vs.
NPC Code:

if (actionpm && strequals(#p(0),Projectshifter))
{ action;}


see the difference?
---Shifter
__________________
Quote:
*Stefan: it seems sometimes they hire newbie scripters everywhere x-x
*Stefan: scripters are sometimes like people that draw paintings
*Stefan: all that counts is that it looks nice
Reply With Quote