10.10.2010, 04:40
Hey what is a command to bring a player to you? thanks
CMD:get(playerid, params[])
{
new pID, Float:x, Float:y, Float:z;
if(sscanf(params, "r", pID)) return /* Send error message */
GetPlayerPos(playerid, x, y, z);
SetPlayerPos(pID, x, y, z);
return 1;
}