noxworld-dev / opennox

OpenNox main repository.

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hook onto PlayerDeath()

Ephreaym opened this issue · comments

A function to hook onto a PlayerDeath would be most welcome.

I recently refactored how we extend the game objects. Now we can put a lot more data into any object, including the new custom hooks.

The plan is to expose two new functions for this ticket:

// Global callback that cares only about players
ns4.OnPlayerDeath(func(p ns4.Player) {...})
// Per-object callback:
obj.OnDeath(func(){...})

Anything else that I need to consider here?

Not that I can think of right now. Been busy with my work and end of year assignments, so haven’t been working on the bot project as much.

I can get back to it around December.

No worries, same on my side regarding the lack of time. Now getting a bit more of it, so starting slowing picking up stuff again.