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

24 lines
938 B
Plaintext

////////////////////////////////////////////////////////////////////////////////
// rts_stop_npcs - strip of powers of team
////////////////////////////////////////////////////////////////////////////////
void main()
{
object oPC=GetEnteringObject();
object oItem;
object oMod=GetModule();
string sID=GetLocalString(oPC,"sTeamID");
if (GetIsPC(oPC)!=TRUE) DestroyObject(oPC);
else
{ // PC
oItem=GetItemPossessedBy(oPC,"RTSGame_Settings");
if (oItem!=OBJECT_INVALID) DestroyObject(oItem);
oItem=GetItemPossessedBy(oPC,"RTSUnit_Creation");
if (oItem!=OBJECT_INVALID) DestroyObject(oItem);
oItem=GetItemPossessedBy(oPC,"RTSCreation_Tool");
if (oItem!=OBJECT_INVALID) DestroyObject(oItem);
oItem=GetItemPossessedBy(oPC,"rts_it_teamwand");
if (oItem!=OBJECT_INVALID) DestroyObject(oItem);
if (GetLocalObject(oMod,"oTeamLead"+sID)==oPC) { } // strip of leadership
} // PC
}