Files
ets-module-collection/modules/npcs/npcbot.ts
2024-01-21 10:45:49 -05:00

17 lines
369 B
TypeScript

const npcBotEmote: creature_event_on_died = (event: number, creature: Creature, player: Player) => {
// player.KillPlayer();
print('Here!!!!!')
// print(`Emote ${emoteId}`);
return true;
}
RegisterCreatureEvent(
25155,
// 70201,
CreatureEvents.CREATURE_EVENT_ON_DIED,
(...args) => npcBotEmote(...args)
);
print("hello world");