Skip to content

Commit dd5a163

Browse files
committed
sampctl
1 parent 6076cb8 commit dd5a163

File tree

3 files changed

+89
-3
lines changed

3 files changed

+89
-3
lines changed

.gitignore

Lines changed: 47 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,3 +1,47 @@
1-
*.amx
2-
*.lst
3-
*.asm
1+
#
2+
# Package only files
3+
#
4+
5+
# Compiled Bytecode
6+
*.amx
7+
*.lst
8+
*.asm
9+
10+
# Vendor directory for dependencies
11+
dependencies/
12+
13+
# Dependency versions lockfile
14+
pawn.lock
15+
16+
17+
#
18+
# Server/gamemode related files
19+
#
20+
21+
# compiled settings file
22+
# keep `samp.json` file on version control
23+
# but make sure the `rcon_password` field is set externally
24+
# you can use the environment variable `SAMP_RCON_PASSWORD` to do this.
25+
server.cfg
26+
27+
# Plugins directory
28+
plugins/
29+
30+
# binaries
31+
*.exe
32+
*.dll
33+
*.so
34+
announce
35+
samp03svr
36+
samp-npc
37+
38+
# logs
39+
logs/
40+
server_log.txt
41+
42+
#
43+
# Common files
44+
#
45+
46+
*.sublime-workspace
47+
*.sublime-project

README.md

Lines changed: 30 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,30 @@
1+
# amx_assembly
2+
3+
AMX stuff
4+
5+
## Installation
6+
7+
Simply install to your project:
8+
9+
```bash
10+
sampctl package install amx_assembly
11+
```
12+
13+
Include in your code and begin using the library:
14+
15+
```pawn
16+
#include <amx_assembly\part>
17+
```
18+
19+
## Usage
20+
21+
22+
## Testing
23+
24+
To test, simply run the package:
25+
26+
```bash
27+
sampctl package run
28+
```
29+
30+
And connect to `localhost:7777` to test.

pawn.json

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,12 @@
1+
{
2+
"user": "Zeex",
3+
"repo": "amx_assembly",
4+
"entry": "test\\all-tests.pwn",
5+
"output": "test\\all-tests.amx",
6+
"contributors": [
7+
"Slice",
8+
"Y_Less",
9+
"Zeex"
10+
]
11+
}
12+

0 commit comments

Comments
 (0)