29.05.2018, 10:37
Quote:
I can access this link: https://sampforum.blast.hk/showthread.php?pid=3284897#pid3284897
|
The tutorial was basically using this package.
Open in Atom the project root (where the server03svr and all the gamemodes/filterscripts/scriptfiles folders are) and Create a file named
Code:
.atom-build.json
Code:
{ "cmd": "pawno\\pawncc.exe YOUR_SCRIPT_HERE.pwn -r -w=203 -;+ -(+ -v2 -d2 -i=pawno\\include", "name": "SA:MP Build Script" }
Replace where I wrote "YOUR_SCRIPT_HERE" with the script you want to compile, if for example you have a script inside "gamemodes" folder that is called "mygamemode" the code above should look like this:
Code:
{ "cmd": "pawno\\pawncc.exe gamemodes\\mygamemode.pwn -r -w=203 -;+ -(+ -v2 -d2 -i=pawno\\include", "name": "SA:MP Build Script" }
If you're running on Linux, then you should replace the back slash " \ " with " / "
Quote:
Is this one Better:
Whats the difference: ? https://atom.io/packages/language-pawn https://github.com/Larceny-/language-pawn |