Skip to content

Commit

Permalink
sampctl
Browse files Browse the repository at this point in the history
  • Loading branch information
Y-Less committed Jan 6, 2018
1 parent 6076cb8 commit dd5a163
Show file tree
Hide file tree
Showing 3 changed files with 89 additions and 3 deletions.
50 changes: 47 additions & 3 deletions .gitignore
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
30 changes: 30 additions & 0 deletions README.md
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.
12 changes: 12 additions & 0 deletions pawn.json
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"
]
}

0 comments on commit dd5a163

Please sign in to comment.