View Single Post
  #10  
Old 12-28-2002, 03:50 AM
Falcor Falcor is offline
Darth Cucumber
Falcor's Avatar
Join Date: Mar 2001
Location: At School
Posts: 2,874
Falcor is on a distinguished road
Send a message via ICQ to Falcor Send a message via AIM to Falcor Send a message via MSN to Falcor Send a message via Yahoo to Falcor
if #F == 0 then they are an RC, otherwise they are a player
I duno why you'd check for >0 when you'd be enevitbly doing
NPC Code:

if(strlen(#F)>0) {
//Totally useless
} else {
setplayerprop #3,head25.gif; //or whatever your code is.
}


that is horridly stupid and worthless
NPC Code:

if(strlen(#F)==0) {
setplayerprop #3,head25.gif; //or whatever your code is.
}


That one is better if only for the sheer fact that you dont wana type as much.
__________________

subliminal message: 1+1=3
Reply With Quote