A modular sniper.
Once you have cloned the repository, install the required dependencies with
yarn install
, build the program with yarn build
, and run it with yarn start
. You only need to build the program once, unless it is updated.
Any modules should have their own installation guide included. Here's a basic idea of the general steps:
- Copy the file/folder to
src/mod/
. - Enable the module
If a new update is released, you will be able to update the program using git pull origin <branch>
.
isnipe uses the ini
format for config files.
The root config file is found at cfg/isnipe.ini
and has some of the default
options set.
You can include other ini
files using include
:
[example]
include = "example.ini"
include
paths are relative to cfg/
.
To enable an isnipe module, create a section for it in the config file, and set
enabled
to true
:
[example]
enabled = true
Coming soon.