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

14 lines
553 B
Plaintext

// Grant builders rights
void main()
{
object oTarg=GetLocalObject(GetPCSpeaker(),"oTarget");
object oItem;
SetLocalInt(oTarg,"nBuilder",TRUE);
if (GetItemPossessedBy(oTarg,"RTSUnit_Creation")==OBJECT_INVALID)
oItem=CreateItemOnObject("rtsunit_creation",oTarg);
if (GetItemPossessedBy(oTarg,"RTSCreation_Tool")==OBJECT_INVALID)
oItem=CreateItemOnObject("rtscreation_tool",oTarg);
AssignCommand(oTarg,ClearAllActions());
AssignCommand(oTarg,SpeakString("I have been granted BUILDER rights by my team leader."));
}