SA-MP Forums Archive
foreach strange problem - 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: foreach strange problem (/showthread.php?tid=286630)



foreach strange problem - Anzipane! - 29.09.2011

Hi guys, I am doing a vehicle system and I've found a problem.
When the foreach loop starts it only does executes once and then stops, but I need it to foreach 50 times (MAX_VEH).

My question is: why it stops after the first execution?

Here's the code:
pawn Code:
for(new i = 1; i != MAX_VEH; i++)
{
    Iter_Add(Vehicles, i);
}

foreach(Vehicles, v)
{
    format(qStr, sizeof(qStr), "SELECT * FROM Veicoli WHERE ID = %d", v);
    REZ = db_query(vDatabase, qStr);
    if(db_num_rows(REZ) == 0)
    {
        Iter_Remove(Vehicles, v);
        printf("[WARNING]: Iter_Remove: %d", v);
        db_free_result(REZ);
        continue;
    }
    // Rest of the code...
}



Re: foreach strange problem - Anzipane! - 30.09.2011

Ok, I've tested again and if I remove the function "Iter_Remove" from the code the loop works fine.
But I need that function. How can I solve this problem? Thank you!


Re: foreach strange problem - Anzipane! - 30.09.2011

Oh thanks, I get it now.