RoT2_PRC8/_module/nss/xx_reward10k.nss

24 lines
336 B
Plaintext
Raw Permalink Normal View History

2023-09-25 18:13:22 -04:00
#include "nw_i0_tool"
void main()
{
object oPC;
if (!GetIsPC(GetItemActivatedTarget())
){
SendMessageToPC(GetItemActivator(), "Improper use of item!");
return;}
oPC = GetItemActivator();
RewardPartyXP(10000, oPC, FALSE);
RewardPartyGP(10000, oPC, FALSE);
FloatingTextStringOnCreature("You are Rewarded for the Quest", oPC);
}