9 lines
248 B
Plaintext
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);
|
||
|
}
|