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

12 lines
183 B
Plaintext

// Tab, put this on Disarmevent of trap to give XP.
void main()
{
object oPC = GetLastDisarmed();
if (GetIsPC(oPC))
{
GiveXPToCreature(oPC, 5000);
}
}