21.10.2012, 03:18
Quote:
Isn't it easier to get the positions like this :
Код:
new Float:pos[3]; GetPlayerPos(ID, pos[0], pos[1], pos[2]); Код:
new Float:x; //Defining float X new Float:y; //Same new Float:z; //Same GetPlayerPos(ID, x, y, z); //This line get the "ID" position |