19.04.2014, 14:51
Quote:
Can someone who gets this check if the gamemode thread is still running like in here? https://sampforum.blast.hk/showthread.php?tid=490719
I can enter a custom RCON command and execute AMX code, specifically SQLite queries and printf. That does not happen if the server is in an infinite loop on the AMX level as far as I know. |
pawn Code:
//I use this for loops cause its easyer to make Loop(i,size)
#define Loop(%0,%1) \
for(new %0 = 0; %0 != %1; %0++)
//No indefinate loops works fine
new count = CountDynamicObjects();
Loop(i,count)
//Indefinate loop can still run rcon commands
Loop(i,CountDynamicObjects())