Alangara_PRC8/_module/nss/jh_bnk_x_02.nss
Jaysyn904 86feb9ca6f Initial commit
Initial commit.
2024-06-05 21:21:06 -04:00

19 lines
399 B
Plaintext

/*
OnSpawn for the banker CRUCIAL!
*/
void main()
{
string sName= GetTag(OBJECT_SELF);
object oItem = GetFirstItemInInventory(OBJECT_SELF);
location locLocation ;
while (GetIsObjectValid(oItem))
{
if (GetPlotFlag(oItem)==FALSE)
DestroyObject(oItem);
oItem =GetNextItemInInventory(OBJECT_SELF);
}
RetrieveCampaignObject("bnkacnt"+sName,"bnkacnt_"+sName,locLocation,OBJECT_SELF,OBJECT_INVALID);
}