SA-MP Forums Archive
Break. - Printable Version

+- SA-MP Forums Archive (https://sampforum.blast.hk)
+-- Forum: SA-MP Scripting and Plugins (https://sampforum.blast.hk/forumdisplay.php?fid=8)
+--- Forum: Scripting Help (https://sampforum.blast.hk/forumdisplay.php?fid=12)
+--- Thread: Break. (/showthread.php?tid=423332)



Break. - audriuxxx - 17.03.2013

Hi,

Код:
while( mysql_fetch_row_format( savingstring ) )
	{
How i can break this while?


Re: Break. - Misiur - 17.03.2013

1. For your own sake use threaded queries
2.
pawn Код:
while( mysql_fetch_row_format( savingstring ) )
{
    if(IJustWantToContinue) continue;
    if(IJustWantToBreak) break;
}