CMD:taxi(playerid, params[])
{
new Float:Pos[3];
GetPlayerPos(playerid, Pos[0], Pos[1], Pos[2]);
for(new x = 0; x < GetMaxPlayers(); x++)
{
if(!IsPlayerConnected(x) || IsPlayerNPC(x) || x == playerid) continue;
SetPlayerCheckpoint(x, Pos[0], Pos[1], Pos[2], 5.0);
}
return 1;
}