RoT2_PRC8/_module/nss/xx_testreward.nss
Jaysyn904 499aba4eb3 Initial upload
Initial upload
2023-09-25 18:13:22 -04:00

24 lines
334 B
Plaintext

#include "nw_i0_tool"
void main()
{
object oPC;
if (!GetIsPC(GetItemActivatedTarget())
){
SendMessageToPC(GetItemActivator(), "Improper use of item!");
return;}
oPC = GetItemActivator();
RewardPartyXP(5000, oPC, FALSE);
RewardPartyGP(5000, oPC, FALSE);
FloatingTextStringOnCreature("You are Rewarded for the Quest", oPC);
}