17 lines
241 B
Plaintext
17 lines
241 B
Plaintext
|
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
SetLocalString(oPC, "krthmny", "1");
|
||
|
|
||
|
// Give the speaker some gold
|
||
|
GiveGoldToCreature(GetPCSpeaker(), 10);
|
||
|
|
||
|
// Give the speaker some XP
|
||
|
GiveXPToCreature(GetPCSpeaker(), 35);
|
||
|
|
||
|
}
|