Files
ets-module-collection/modules/items/vashj-fix.ts
2024-01-12 15:59:04 -05:00

11 lines
286 B
TypeScript

const TaintedKill: player_event_on_kill_creature = (event, player, creature) => {
if(creature.GetEntry() == 22009) {
player.AddItem(31088, 1);
}
};
RegisterPlayerEvent(
PlayerEvents.PLAYER_EVENT_ON_KILL_CREATURE,
(...args) => TaintedKill(...args)
);