Initial commit
Initial commit [v9.7]
This commit is contained in:
17
_module/nss/give_xp_1k.nss
Normal file
17
_module/nss/give_xp_1k.nss
Normal file
@@ -0,0 +1,17 @@
|
||||
#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);
|
||||
|
||||
}
|
||||
Reference in New Issue
Block a user