22.01.2018, 01:00
Fiz esse exemplo, testei e foi com sucesso, se nгo for isso que quer fazer desculpe.
Resultado:
PHP код:
#include <a_samp>
#define MAX_SHOWSLOTS (3)
static const Float:gCarShowSlots[][] =
{
{1098.5062, -1754.9224, 13.1775},
{1098.5096, -1757.9258, 13.1775},
{1098.5859, -1760.8698, 13.1764}
};
new bool:gCarOn[MAX_SHOWSLOTS];
main()
{
gCarOn[1] = true; // No caso o gCarShowSlots[1] estaria bloqueado.
for(new i; i < MAX_SHOWSLOTS; i++)
{
if(gCarOn[i] != true)
{
printf("index: %d x: %f y:%f z:%f", i,gCarShowSlots[i][0],gCarShowSlots[i][1],gCarShowSlots[i][2]);
}
}
}