Guess someone will find this usefull.
This batch script will automaticly compile the sp
"myfile" and move the compiled smx file to "Plugins" directory.
Run the batch script from scripting directory, and it should work.
Code:
@echo off
pause
spcomp myfile.sp
move myfile.smx ..\plugins\myfile.smx
echo Compile Completed.
pause
__________________