Is there any way to...
Is there any way to...
Is there any way to list councealed gms near location?
Here is a script that will do the trick thanks to an added flag for POL 96:
[Edited 22-Jul-2006 - removed the redundant 'if' check for concealment---DUH!!!]
[Edited 22-Jul-2006 - removed the redundant 'if' check for concealment---DUH!!!]
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