Well, first of all, go in game on a local server, then /save where you want the teleport to be. It should look something like this:
PHP код:
AddPlayerClass(116,207.5703,-111.0274,1005.1328,351.5634,0,0,0,0,0,0); // 
 Now, copy the x, y, and z co ordinates (in this, 207.5703,-111.0274,1005.132

. Then, make your command for teleporting e.g. /lsa, then add:
PHP код:
SetPlayerPos(playerid,X_POSITION_HERE,X_POSITION_HERE,Z_POSITION_HERE); 
 If you are using zcmd, it should look like this:
PHP код:
CMD:lsa(playerid,params[])
{
     SetPlayerPos(playerid,207.5703,-111.0274,1005.1328);
     return 1;
} 
 PS: sorry about no pic/video