HoS_PRC8/_mod/_module/nss/rts_it_teamwand.nss
Jaysyn904 04165202c0 Initial upload
Initial upload
2024-11-25 19:36:07 -05:00

24 lines
848 B
Plaintext

// rts_it_teamwand - Team control wand
void main()
{
object oPC=GetItemActivator();
object oTarg=GetItemActivatedTarget();
string sID=GetLocalString(oPC,"sTeamID");
object oLead=GetLocalObject(GetModule(),"oTeamLead"+sID);
effect eDmg=EffectDamage(1);
if (oLead==oPC)
{ // is leader
if (oTarg!=OBJECT_INVALID&&oTarg!=oPC)
SetLocalObject(oPC,"oTarget",oTarg);
else { DeleteLocalObject(oPC,"oTarget"); }
AssignCommand(oPC,ClearAllActions());
AssignCommand(oPC,ActionStartConversation(oPC,"team_wand",TRUE,FALSE));
} // is leader
else
{ // not allowed
SendMessageToPC(oPC,"The wand burns your hands as you use it and you are not the leader. It then vanishes.");
ApplyEffectToObject(DURATION_TYPE_INSTANT,eDmg,oPC,1.0);
DestroyObject(GetItemActivated());
} // not allowed
}