Amon_PRC8/_module/nss/tr_gm_wand.nss

20 lines
309 B
Plaintext
Raw Permalink Normal View History

2025-04-03 19:00:46 -04:00
void main()
{
object oPC;
if (!GetIsPC(GetItemActivatedTarget())
|| GetIsInCombat(GetItemActivator())
){
SendMessageToPC(GetItemActivator(), "Improper use of item!");
return;}
object oTarget;
oPC = GetItemActivator();
oTarget = oPC;
AssignCommand(oTarget, ActionStartConversation(oPC, "tr_gm_wand"));
}