15.04.2015, 09:27
Код:
<parallx> what's the difference between cache_get_row_float and cache_get_field_content_float?
example
Код:
pData[playerid][pX] = cache_get_row_float(0, 10); // row number is 10 its an example
Код:
pData[playerid][pX] = cache_get_field_content_float(0,"px");
Код:
public OnPlayerSpawn(playerid) { SetPlayerPos(playerid, pData[playerid][pX], pData[playerid][pY], pData[playerid][pZ]); return 1; }