Quote:
Originally posted by osrs
I would Know if this Script is correct..
"Choosing RC Head"
Note: This script dont is made by me.
if (created){
timeout=.1;
}
if (timeout){
for(i=0;i<allplayerscount;i++){
with (allplayers[i]){
if (strlen(#F)<=0){
if (strequals(#a,"RC account")&&!strequals(#3,head3.png)){
setplayerprop #3,head3.png;
}
}
}
}
timeout=.1;
-osrs-
|
I think it would be better said
NPC Code:
if (created || timeout) {
for(i=0;i<allplayerscount;i++){
with (allplayers[i]){
if (strequals(#a,npcserver)) {
setcharprop #3,headgoeshere;
}
}
}
}
timeout = .1;
}