26.06.2012, 11:30
Damn, do you even know what "continue" do? Go read wiki...
Yes, it's in vehicle, but I tried!! It returns also 0.0, 0.0, 0.0
pawn Код:
for( new i; i < 5; i++ )
{
if( i == 3 ) continue;
printf( "%d", i );
}
/*
result:
[14:38:50] 0
[14:38:50] 1
[14:38:50] 2
[14:38:50] 4
*/
Quote:
|
If you're trying to get the position of an NPC that is in a vehicle, use GetVehiclePos instead.
|


