12 lines
337 B
Plaintext
12 lines
337 B
Plaintext
|
// rts_debug_wand
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
object oPC=GetItemActivator();
|
||
|
object oTarget=GetItemActivatedTarget();
|
||
|
location lTarget=GetItemActivatedTargetLocation();
|
||
|
SetLocalObject(oPC,"oDebugTarget",oTarget);
|
||
|
SetLocalLocation(oPC,"lDebugTarget",lTarget);
|
||
|
FloatingTextStringOnCreature("** Debug Target Selected **",oPC);
|
||
|
}
|