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

31 lines
773 B
Plaintext

//::///////////////////////////////////////////////
//:: Deposit Gold
//:://////////////////////////////////////////////
/*
Deposit gold into your slot machine "account". Put this on the "OnClose"
event of a chest near the lever.
*/
// Main
void main()
{
object oPC = GetLastOpenedBy();
int iGold = GetGold( OBJECT_SELF );
if ( !GetIsPC( oPC ) )
return;
if ( iGold > 0 )
{
SetLocalInt( oPC, "sm_SlotGold", iGold );
object oGold = GetFirstItemInInventory();
while( oGold != OBJECT_INVALID )
{
if ( GetTag( oGold ) == "NW_IT_GOLD001" )
{
DestroyObject( oGold );
return;
}
oGold = GetNextItemInInventory();
}
}
}