Initial commit
Initial commit [v9.7]
This commit is contained in:
21
_module/nss/en_bash3.nss
Normal file
21
_module/nss/en_bash3.nss
Normal file
@@ -0,0 +1,21 @@
|
||||
#include "x0_i0_partywide"
|
||||
|
||||
void main()
|
||||
|
||||
{
|
||||
|
||||
// Get the PC who is in this conversation.
|
||||
object oPC = GetPCSpeaker();
|
||||
|
||||
// Give 5 experience (to party) to the PC.
|
||||
GiveXPToAll(oPC, 5);
|
||||
|
||||
if (!GetIsPC(oPC)) return;
|
||||
int DoOnce = GetLocalInt(OBJECT_SELF, GetTag(OBJECT_SELF));
|
||||
if (DoOnce==TRUE) return;
|
||||
SetLocalInt(OBJECT_SELF, GetTag(OBJECT_SELF), TRUE);
|
||||
|
||||
AddJournalQuestEntry("The Web of Mog", 3, oPC, TRUE, FALSE);
|
||||
|
||||
}
|
||||
|
||||
Reference in New Issue
Block a user