29 lines
642 B
Plaintext
29 lines
642 B
Plaintext
|
|
#include "nw_i0_tool"
|
|
void main()
|
|
{
|
|
|
|
object oPC = GetPCSpeaker();
|
|
|
|
if (!GetIsPC(oPC)) return;
|
|
|
|
int DoOnce = GetLocalInt(OBJECT_SELF, GetTag(OBJECT_SELF));
|
|
|
|
if (DoOnce==TRUE) return;
|
|
|
|
SetLocalInt(OBJECT_SELF, GetTag(OBJECT_SELF), TRUE);
|
|
|
|
|
|
RewardPartyGP(50, oPC, FALSE);
|
|
|
|
CreateItemOnObject("lankhleatherarmo", GetPCSpeaker(), 1);
|
|
CreateItemOnObject("lankhmardagger", GetPCSpeaker(), 1);
|
|
CreateItemOnObject("lankhmarshortd", GetPCSpeaker(), 1);
|
|
CreateItemOnObject("lankhmarshortbw", GetPCSpeaker(), 1);
|
|
CreateItemOnObject("nw_wamar001", GetPCSpeaker(), 99);
|
|
CreateItemOnObject("lankhmartorch", GetPCSpeaker(), 1);
|
|
|
|
|
|
}
|
|
|