Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
2 changes: 1 addition & 1 deletion LICENSE
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
MIT License

Copyright (c) 2022 Members of bombsquad-community organization, and contributors
Copyright (c) 2022-2026 Members of bombsquad-community organization, and contributors

All source code in this repository is licensed under MIT, unless otherwise
explicitly stated in source code.
Expand Down
5 changes: 3 additions & 2 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -38,12 +38,13 @@ which makes further modding of your game more convenient by providing easier acc

## Installation

There are two different ways the plugin manager can be installed:
There are three different ways the plugin manager can be installed:


1. From dev console

- Enable "Show Dev Console Button" from advance BombSquad settings
- Make sure you're connected to the internet
- Paste the following code in dev console
```py
import urllib.request;import _babase;import os;url="https://github.com/bombsquad-community/plugin-manager/releases/latest/download/plugin_manager.py";plugin_path=os.path.join(_babase.env()["python_directory_user"],"plugin_manager.py");file=urllib.request.urlretrieve(url)[0];fl = open(file,'r');f=open(plugin_path, 'w+');f.write(fl.read());fl.close();f.close();print("SUCCESS")
Expand All @@ -57,7 +58,7 @@ There are two different ways the plugin manager can be installed:
manually apply updates by copying the latest plugin manager's source code again to your workspace when using this method.

3. [Download plugin_manager.py][DownloadLink] to your mods directory (check it out by going into your game's
Settings -> Advanced -> Show Mods Folder). This is the recommended way (read next method to know why).
Settings -> Advanced -> Show Mods Folder).
If you're on a newer version of Android (11 or above) and not rooted, it probably won't be possible to copy
mods to game's mods folder. In this case, you can connect your Android phone to a computer and push `plugin_manager.py`
[using `adb`](https://www.xda-developers.com/install-adb-windows-macos-linux/):
Expand Down