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