15.03.2014, 09:31
How do I find a certain spot in game if I have the coords for it?
#include <a_samp>
#include <zcmd>
#include <sscanf2>
CMD:tp(playerid, params[])
{
new Float:x, Float:y, Float:z;
if(sscanf(params, "fff", x, y, z)) return 1;
SetPlayerPos(playerid, x, y, z);
return 1;
}