mirror of
https://github.com/imayushsaini/Bombsquad-Ballistica-Modded-Server.git
synced 2025-10-20 00:00:39 +00:00
boilerplate for mods
This commit is contained in:
parent
9241a456d1
commit
0fd45fb29e
33 changed files with 82 additions and 0 deletions
7
dist/ba_root/mods/chatHandle/__init__.py
vendored
Normal file
7
dist/ba_root/mods/chatHandle/__init__.py
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Released under the MIT License. See LICENSE for details.
|
||||
#
|
||||
"""Common bits of functionality shared between all efro projects.
|
||||
|
||||
Things in here should be hardened, highly type-safe, and well-covered by unit
|
||||
tests since they are widely used in live client and server code.
|
||||
"""
|
||||
BIN
dist/ba_root/mods/chatHandle/__pycache__/__init__.cpython-38.pyc
vendored
Normal file
BIN
dist/ba_root/mods/chatHandle/__pycache__/__init__.cpython-38.pyc
vendored
Normal file
Binary file not shown.
BIN
dist/ba_root/mods/chatHandle/__pycache__/handlechat.cpython-38.pyc
vendored
Normal file
BIN
dist/ba_root/mods/chatHandle/__pycache__/handlechat.cpython-38.pyc
vendored
Normal file
Binary file not shown.
7
dist/ba_root/mods/chatHandle/chatCMDS/__init__.py
vendored
Normal file
7
dist/ba_root/mods/chatHandle/chatCMDS/__init__.py
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Released under the MIT License. See LICENSE for details.
|
||||
#
|
||||
"""Common bits of functionality shared between all efro projects.
|
||||
|
||||
Things in here should be hardened, highly type-safe, and well-covered by unit
|
||||
tests since they are widely used in live client and server code.
|
||||
"""
|
||||
0
dist/ba_root/mods/chatHandle/chatCMDS/chatcmd.py
vendored
Normal file
0
dist/ba_root/mods/chatHandle/chatCMDS/chatcmd.py
vendored
Normal file
0
dist/ba_root/mods/chatHandle/chatCMDS/fun.py
vendored
Normal file
0
dist/ba_root/mods/chatHandle/chatCMDS/fun.py
vendored
Normal file
0
dist/ba_root/mods/chatHandle/chatCMDS/management.py
vendored
Normal file
0
dist/ba_root/mods/chatHandle/chatCMDS/management.py
vendored
Normal file
7
dist/ba_root/mods/chatHandle/chatFilter/__init__.py
vendored
Normal file
7
dist/ba_root/mods/chatHandle/chatFilter/__init__.py
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Released under the MIT License. See LICENSE for details.
|
||||
#
|
||||
"""Common bits of functionality shared between all efro projects.
|
||||
|
||||
Things in here should be hardened, highly type-safe, and well-covered by unit
|
||||
tests since they are widely used in live client and server code.
|
||||
"""
|
||||
7
dist/ba_root/mods/chatHandle/chatSpam/__init__.py
vendored
Normal file
7
dist/ba_root/mods/chatHandle/chatSpam/__init__.py
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Released under the MIT License. See LICENSE for details.
|
||||
#
|
||||
"""Common bits of functionality shared between all efro projects.
|
||||
|
||||
Things in here should be hardened, highly type-safe, and well-covered by unit
|
||||
tests since they are widely used in live client and server code.
|
||||
"""
|
||||
2
dist/ba_root/mods/chatHandle/handlechat.py
vendored
Normal file
2
dist/ba_root/mods/chatHandle/handlechat.py
vendored
Normal file
|
|
@ -0,0 +1,2 @@
|
|||
import playersData
|
||||
|
||||
0
dist/ba_root/mods/custom_hooks.py
vendored
Normal file
0
dist/ba_root/mods/custom_hooks.py
vendored
Normal file
10
dist/ba_root/mods/playersData/__init__.py
vendored
Normal file
10
dist/ba_root/mods/playersData/__init__.py
vendored
Normal file
|
|
@ -0,0 +1,10 @@
|
|||
# Released under the MIT License. See LICENSE for details.
|
||||
#
|
||||
"""Common bits of functionality shared between all efro projects.
|
||||
|
||||
Things in here should be hardened, highly type-safe, and well-covered by unit
|
||||
tests since they are widely used in live client and server code.
|
||||
"""
|
||||
|
||||
|
||||
score=69
|
||||
BIN
dist/ba_root/mods/playersData/__pycache__/__init__.cpython-38.pyc
vendored
Normal file
BIN
dist/ba_root/mods/playersData/__pycache__/__init__.cpython-38.pyc
vendored
Normal file
Binary file not shown.
0
dist/ba_root/mods/playersData/data.json
vendored
Normal file
0
dist/ba_root/mods/playersData/data.json
vendored
Normal file
0
dist/ba_root/mods/playersData/roles.json
vendored
Normal file
0
dist/ba_root/mods/playersData/roles.json
vendored
Normal file
0
dist/ba_root/mods/serverData/Chat Logs.txt
vendored
Normal file
0
dist/ba_root/mods/serverData/Chat Logs.txt
vendored
Normal file
7
dist/ba_root/mods/serverData/__init__.py
vendored
Normal file
7
dist/ba_root/mods/serverData/__init__.py
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Released under the MIT License. See LICENSE for details.
|
||||
#
|
||||
"""Common bits of functionality shared between all efro projects.
|
||||
|
||||
Things in here should be hardened, highly type-safe, and well-covered by unit
|
||||
tests since they are widely used in live client and server code.
|
||||
"""
|
||||
0
dist/ba_root/mods/serverData/data.json
vendored
Normal file
0
dist/ba_root/mods/serverData/data.json
vendored
Normal file
0
dist/ba_root/mods/setting.json
vendored
Normal file
0
dist/ba_root/mods/setting.json
vendored
Normal file
0
dist/ba_root/mods/setting.py
vendored
Normal file
0
dist/ba_root/mods/setting.py
vendored
Normal file
7
dist/ba_root/mods/spaz/effects/__init__.py
vendored
Normal file
7
dist/ba_root/mods/spaz/effects/__init__.py
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Released under the MIT License. See LICENSE for details.
|
||||
#
|
||||
"""Common bits of functionality shared between all efro projects.
|
||||
|
||||
Things in here should be hardened, highly type-safe, and well-covered by unit
|
||||
tests since they are widely used in live client and server code.
|
||||
"""
|
||||
0
dist/ba_root/mods/spaz/hitmessage.py
vendored
Normal file
0
dist/ba_root/mods/spaz/hitmessage.py
vendored
Normal file
7
dist/ba_root/mods/spaz/tag/__init__.py
vendored
Normal file
7
dist/ba_root/mods/spaz/tag/__init__.py
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Released under the MIT License. See LICENSE for details.
|
||||
#
|
||||
"""Common bits of functionality shared between all efro projects.
|
||||
|
||||
Things in here should be hardened, highly type-safe, and well-covered by unit
|
||||
tests since they are widely used in live client and server code.
|
||||
"""
|
||||
7
dist/ba_root/mods/stats/__init__.py
vendored
Normal file
7
dist/ba_root/mods/stats/__init__.py
vendored
Normal file
|
|
@ -0,0 +1,7 @@
|
|||
# Released under the MIT License. See LICENSE for details.
|
||||
#
|
||||
"""Common bits of functionality shared between all efro projects.
|
||||
|
||||
Things in here should be hardened, highly type-safe, and well-covered by unit
|
||||
tests since they are widely used in live client and server code.
|
||||
"""
|
||||
0
dist/ba_root/mods/stats/mystats.json
vendored
Normal file
0
dist/ba_root/mods/stats/mystats.json
vendored
Normal file
0
dist/ba_root/mods/stats/rank.py
vendored
Normal file
0
dist/ba_root/mods/stats/rank.py
vendored
Normal file
0
dist/ba_root/mods/stats/stats.json
vendored
Normal file
0
dist/ba_root/mods/stats/stats.json
vendored
Normal file
0
dist/ba_root/mods/tools/Log.py
vendored
Normal file
0
dist/ba_root/mods/tools/Log.py
vendored
Normal file
14
dist/ba_root/mods/tools/__init__.py
vendored
Normal file
14
dist/ba_root/mods/tools/__init__.py
vendored
Normal file
|
|
@ -0,0 +1,14 @@
|
|||
# Released under the MIT License. See LICENSE for details.
|
||||
#
|
||||
"""Common bits of functionality shared between all efro projects.
|
||||
|
||||
Things in here should be hardened, highly type-safe, and well-covered by unit
|
||||
tests since they are widely used in live client and server code.
|
||||
"""
|
||||
|
||||
name="smoothy"
|
||||
|
||||
|
||||
|
||||
def log():
|
||||
print("i logged")
|
||||
BIN
dist/ba_root/mods/tools/__pycache__/__init__.cpython-38.pyc
vendored
Normal file
BIN
dist/ba_root/mods/tools/__pycache__/__init__.cpython-38.pyc
vendored
Normal file
Binary file not shown.
0
dist/ba_root/mods/tools/spamcheck.py
vendored
Normal file
0
dist/ba_root/mods/tools/spamcheck.py
vendored
Normal file
0
dist/ba_root/mods/tools/textonmap.py
vendored
Normal file
0
dist/ba_root/mods/tools/textonmap.py
vendored
Normal file
0
dist/ba_root/mods/tools/whitelist.py
vendored
Normal file
0
dist/ba_root/mods/tools/whitelist.py
vendored
Normal file
Loading…
Add table
Add a link
Reference in a new issue