20 lines
290 B
Plaintext
20 lines
290 B
Plaintext
|
#include "nw_j_assassin"
|
||
|
#include "nw_i0_tool"
|
||
|
|
||
|
void main()
|
||
|
|
||
|
{
|
||
|
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
// Give the speaker some gold
|
||
|
RewardPartyGP(50, oPC);
|
||
|
|
||
|
// Give the speaker some XP
|
||
|
RewardPartyXP(50, oPC);
|
||
|
|
||
|
// Set the variables
|
||
|
aSetPLocalInt(oPC, "CowThieves", 3);
|
||
|
|
||
|
}
|