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

9 lines
248 B
Plaintext

// Take 500 gold and join guild
void main()
{
object oChest=GetObjectByTag("MG_CHEST");
object oItem=CreateItemOnObject("nw_it_gold001",oChest,500);
TakeGoldFromCreature(500,GetPCSpeaker());
SetLocalInt(GetPCSpeaker(),"nMGMember",1);
}