Bombsquad-Ballistica-Modded.../dist/ba_root/mods/custom_hooks.py

21 lines
334 B
Python
Raw Normal View History

2021-04-22 14:54:47 +05:30
from chatHandle import handlechat
2021-04-10 16:33:19 +05:30
2021-04-20 20:35:12 +05:30
def filter_chat_message(msg, client_id):
return handlechat.filter_chat_message(msg, client_id)
2021-04-10 16:33:19 +05:30
def on_app_launch():
from tools import whitelist
whitelist.Whitelist()
#something
def score_screen_on_begin(_stats):
2021-04-07 03:58:40 +05:30
pass
#stats
def playerspaz_init(player):
2021-04-07 03:58:40 +05:30
pass
#add tag,rank,effect
2021-04-02 20:53:19 +05:30