Page 1 of 1

Is there any way to...

Posted: Fri Jul 21, 2006 5:03 am
by Jasaka
Is there any way to list councealed gms near location?

Posted: Fri Jul 21, 2006 12:29 pm
by Yukiko
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!!!]

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