ok you can call me lazy if you want but i got tired of manualy copying my compiled *.AMXs to my amxx/plugins folder from my amxx/scripting folder so i did a bit of batch code editing and just threw in a line to do this step for me!
Code:
@echo off
rem AMX Mod X
rem
rem by the AMX Mod X Development Team
rem originally developed by OLO
rem
rem This file is part of AMX Mod X.
if not exist compiled mkdir compiled
if exist temp.txt del temp.txt
for %%i in (*.sma) do sc %%i -ocompiled\%%i >> temp.txt
copy compiled\*.sma compiled\*.amx
copy compiled\*.sma ..\plugins\*.amx
del compiled\*.sma
type temp.txt
del temp.txt
pause