View Single Post
addons_zz
Veteran Member
Join Date: Aug 2015
Location: Dreams, zz
Old 06-15-2017 , 14:03   Re: [TUT] Compiling AMXX plugins with Sublime Text
Reply With Quote #56

Quote:
Originally Posted by Depresie View Post
Happens every time with every plugin =\
Thanks for the log. Looking into it, seems a problem of too much double quotes. Can you find these lines:
Code:
File: AmxxPawn.bat
...
65: set PLUGIN_SOURCE_CODE_FILE_PATH="%1"
...
175: echo.
176: if "%1"=="" pause
And replace by:
Code:
File: AmxxPawn.bat
...
65: set PLUGIN_SOURCE_CODE_FILE_PATH=%1
...
175: echo.
176: if %PLUGIN_SOURCE_CODE_FILE_PATH%=="" pause
If it works, you can disable debug mode. If not, post the new log.
__________________
Plugin: Sublime Text - ITE , Galileo
Multi-Mod: Manager / Plugin / Server

Support me on Patreon, Ko-fi, Liberapay or Open Collective
addons_zz is offline