Files
RoT2_PRC8/src/module/nss/trap_dis_2k.nss
Jaysyn904 ab2fc1d732 Added PEPS AI
Added PEPS AI.
Full compile.
Reorganized repository.
2025-07-28 12:49:34 -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, 2000);
}
}