Quote:
Originally posted by ownerofbabylon
hmm, i see. Thanks alot. I got a couple more questions. First, for an NPC they buy this would work right:
if(playersays(fire))&&classlight=true{
blah blah;
}
Is that right or would it be like
if(playersays(fire)){
if(classlight){
blah blah;
}
Then the other question is I want them to know for sure they are a Warrior of that class. I want somthing like on N-Pulse how at the top in the little box it says your class. I want somthing like that to say light or dark. How would you do that?
One more question then I shutup, Im trying to figure out how to show someone is a warrior of light or dark. Because I dont want people faking a {Light} thing or {Dark} how can I do this?
|
better use:
if (strequals(#c,fire)&&classlight) {
message here's your weapon sir!;
}
else {message WTF ARE YOU DOING HERE DARK GUY?!;
}