Files
Anphillia_PRC8/_module/nss/anph_xpw_quest_s.nss
Jaysyn904 28cdb617b3 Initial commit
Adding all of the current content for Anphillia Unlimited.
2024-01-04 07:49:38 -05:00

19 lines
302 B
Plaintext

#include "hc_inc"
#include "xp_inc"
void main()
{
object oDM = GetLastSpeaker ();
object oPC;
oPC = GetLocalObject (oDM, "xpwand_target");
if (GetIsPC (oPC))
{
SendMessageToPC (oPC, "Your efforts have been rewarded!");
xp_GiveXPPercentage (oPC, 10.0f);
}
}