RoT2_PRC8/_module/nss/trap_dis_2k.nss

12 lines
183 B
Plaintext
Raw Permalink Normal View History

2023-09-25 18:13:22 -04:00
// Tab, put this on Disarmevent of trap to give XP.
void main()
{
object oPC = GetLastDisarmed();
if (GetIsPC(oPC))
{
GiveXPToCreature(oPC, 2000);
}
}