13.02.2009, 15:16 
	
	
	
		and player spawned on default location.... that i think:
	
	
	
	
Код:
if(!strcmp(cmdtext, "/sync", true))
{
new Float:X,Float:Y,Float:Z,Float:A;
GetPlayerPos(playerid,X,Y,Z);
GetPlayerFacingAngle(playerid,A);
SpawnPlayer(playerid);
SetPlayerPos(playerid,X,Y,Z);
SetPlayerFacingAngle(playerid,A);
SendClientMessage(playerid,COLOR_WHITE,"Spawned At Last Synced Position!");
return 1;
}

