mirror of
https://github.com/araxiaonline/ets-module-collection.git
synced 2026-06-13 02:52:20 -04:00
17 lines
369 B
TypeScript
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");
|