12 lines
183 B
Plaintext
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);
|
||
|
}
|
||
|
}
|
||
|
|