17 lines
260 B
Plaintext
17 lines
260 B
Plaintext
|
|
||
|
#include "nw_i0_tool"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
// Give the speaker some gold
|
||
|
RewardPartyGP(2000, GetPCSpeaker());
|
||
|
|
||
|
// Give the speaker some XP
|
||
|
RewardPartyXP(350, GetPCSpeaker());
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
SetLocalString(oPC, "hiddengold", "1");
|
||
|
|
||
|
}
|