Amon_PRC8/_module/nss/tr_gm_wand.nss
Jaysyn904 c5cffc37af Initial Commit
Initial Commit [v1.01]
2025-04-03 19:00:46 -04:00

20 lines
309 B
Plaintext

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"));
}