15 lines
203 B
Plaintext
15 lines
203 B
Plaintext
|
#include "nw_i0_tool"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
GiveGoldToCreature(GetPCSpeaker(), 500000);
|
||
|
|
||
|
RewardPartyXP(8000, GetPCSpeaker());
|
||
|
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
CreateItemOnObject("dg_chest_key", oPC);
|
||
|
|
||
|
}
|