HoS_PRC8/_mod/_module/nss/uc_a_gcset.nss

10 lines
253 B
Plaintext
Raw Permalink Normal View History

2024-11-25 19:36:07 -05:00
// uc_a_gcset - Set the amount of gold carrying
void main()
{
object oMe=OBJECT_SELF;
int nGold=GetGold(oMe);
SetLocalInt(oMe,"nStartingGold",nGold);
SetLocalInt(GetPCSpeaker(),"nGoldGiven",0);
SetCustomToken(55001,IntToString(nGold));
}