18 lines
412 B
Plaintext
18 lines
412 B
Plaintext
|
#include "x0_i0_partywide"
|
||
|
|
||
|
void main()
|
||
|
{
|
||
|
// Get the PC who is in this conversation.
|
||
|
object oPC = GetPCSpeaker();
|
||
|
|
||
|
// Only fire once.
|
||
|
if ( GetLocalInt(GetModule(), "DO_ONCE__" + GetTag(OBJECT_SELF)) )
|
||
|
return;
|
||
|
SetLocalInt(GetModule(), "DO_ONCE__" + GetTag(OBJECT_SELF), TRUE);
|
||
|
|
||
|
// Give 1k gold, xp (to party) to the PC.
|
||
|
GiveGoldToAll(oPC, 1000);
|
||
|
GiveXPToAll(oPC, 1000);
|
||
|
|
||
|
}
|