19 lines
397 B
Python
19 lines
397 B
Python
|
#
|
||
|
# Example module.
|
||
|
#
|
||
|
|
||
|
from .. import hook_system
|
||
|
|
||
|
hook = hook_system.hook
|
||
|
|
||
|
|
||
|
@hook.add_hook
|
||
|
class Login:
|
||
|
# Different hook types are executed at different places.
|
||
|
# In this case, the hook is executed when a user logs in.
|
||
|
# Check the documentation for more hook types.
|
||
|
hook_type = "player_login"
|
||
|
|
||
|
def __call__(self, *args, **kwargs):
|
||
|
print("LOGIN HOOK:", args, kwargs)
|