12.02.2018, 23:14
(
Последний раз редактировалось Eoussama; 14.02.2018 в 23:01.
)
Today I learned about a simple BATCH instruction that serves as a cool hack when testing/debugging.
1- First, open any text editor, and paste the following instructions
2- Save the file as “something.bat”
3- Run the .bat file
Now, whenever you change your code source and compile, no need to exit and re-execute your samp-server.exe, just type the exit command in the console, and it will automatically close and re-open it for you.
1- First, open any text editor, and paste the following instructions
PHP код:
@echo off
:s
samp-server.exe
goto s
3- Run the .bat file
Now, whenever you change your code source and compile, no need to exit and re-execute your samp-server.exe, just type the exit command in the console, and it will automatically close and re-open it for you.