21.10.2015, 15:23
Okay, this is my tab-list in Notepad++.
Let's say I'm in "stocks.irf" and I want to compile the code (which I have bound to F5). I can't, because if I push F5, it's going to try to compile stocks.irf rather than main.pwn.
I'd like to be able to push compile no matter what file I'm in and it ALWAYS attempt to compile main.pwn.
EDIT: I'd imagine I could change this around, but I'm not quite sure what to change it to.
-------------------
SOLVED This is what I ended up doing:
Let's say I'm in "stocks.irf" and I want to compile the code (which I have bound to F5). I can't, because if I push F5, it's going to try to compile stocks.irf rather than main.pwn.
I'd like to be able to push compile no matter what file I'm in and it ALWAYS attempt to compile main.pwn.
EDIT: I'd imagine I could change this around, but I'm not quite sure what to change it to.
Код:
npp_save cd $(CURRENT_DIRECTORY) "C:\Users\Nick\Desktop\Role Play Script\pawno\pawncc.exe" "$(FILE_NAME)" -; -(
SOLVED This is what I ended up doing:
Код:
npp_save cd C:\Users\Nick\Desktop\Role Play Script\gamemodes "C:\Users\Nick\Desktop\Role Play Script\pawno\pawncc.exe" "main.pwn" -; -(