Is there any way to...
Posted: Fri Jul 21, 2006 5:03 am
Is there any way to list councealed gms near location?
Code: Select all
use uo;
program list_concealed_gms (who)
var people;
people := ListMobilesNearLocationEx (who.x, who.y, who.z, 7,LISTEX_FLAG_CONCEALED, who.realm);
foreach person in people
SendSysMessage (who, "I found a concealed person!!!", color :=33);
endforeach
endprogram