-
Notifications
You must be signed in to change notification settings - Fork 14
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
3 changed files
with
89 additions
and
3 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,3 +1,47 @@ | ||
*.amx | ||
*.lst | ||
*.asm | ||
# | ||
# Package only files | ||
# | ||
|
||
# Compiled Bytecode | ||
*.amx | ||
*.lst | ||
*.asm | ||
|
||
# Vendor directory for dependencies | ||
dependencies/ | ||
|
||
# Dependency versions lockfile | ||
pawn.lock | ||
|
||
|
||
# | ||
# Server/gamemode related files | ||
# | ||
|
||
# compiled settings file | ||
# keep `samp.json` file on version control | ||
# but make sure the `rcon_password` field is set externally | ||
# you can use the environment variable `SAMP_RCON_PASSWORD` to do this. | ||
server.cfg | ||
|
||
# Plugins directory | ||
plugins/ | ||
|
||
# binaries | ||
*.exe | ||
*.dll | ||
*.so | ||
announce | ||
samp03svr | ||
samp-npc | ||
|
||
# logs | ||
logs/ | ||
server_log.txt | ||
|
||
# | ||
# Common files | ||
# | ||
|
||
*.sublime-workspace | ||
*.sublime-project |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,30 @@ | ||
# amx_assembly | ||
|
||
AMX stuff | ||
|
||
## Installation | ||
|
||
Simply install to your project: | ||
|
||
```bash | ||
sampctl package install amx_assembly | ||
``` | ||
|
||
Include in your code and begin using the library: | ||
|
||
```pawn | ||
#include <amx_assembly\part> | ||
``` | ||
|
||
## Usage | ||
|
||
|
||
## Testing | ||
|
||
To test, simply run the package: | ||
|
||
```bash | ||
sampctl package run | ||
``` | ||
|
||
And connect to `localhost:7777` to test. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,12 @@ | ||
{ | ||
"user": "Zeex", | ||
"repo": "amx_assembly", | ||
"entry": "test\\all-tests.pwn", | ||
"output": "test\\all-tests.amx", | ||
"contributors": [ | ||
"Slice", | ||
"Y_Less", | ||
"Zeex" | ||
] | ||
} | ||
|