Rune_PRC8/_module/nss/k_xp_trap.nss
Jaysyn904 d1c309ae63 Initial commit
Initial commit
2024-09-13 09:10:39 -04:00

14 lines
445 B
Plaintext

// This script gives XP to the creature that disarmed the trap.
//
// ============================================================================
// Part of the "Aspire" module foundation package.
// Author: Kaylor
// ============================================================================
void main()
{
object oCreature = GetLastDisarmed();
int iXP = GetTrapDisarmDC(OBJECT_SELF) + d8(2);
GiveXPToCreature(oCreature, iXP);
}