Quote:
Originally Posted by Abagail
Why not just store all the positions? This won't hurt the server's performance at all, it's just a bit more memory which is not noticeable at all.
You can also try something such as this to return just the Y:
pawn Код:
Float:returnYPos(playerid) { new Float: x, Float: y, Float: z; GetPlayerPos(playerid, x, y, z);
return y; }
|
Taking unnecessary space in my code and memory, not much but if there's a way to just get what I want would be great, looks like there isn't though(despite using a stock) , thanks anyway.