01.09.2012, 14:29
pawn Код:
public OnPlayerClickPlayer(playerid, clickedplayerid, source)
{
static Float:x, Float:y, Float:z;
GetPlayerPos(clickedplayerid, x , y , z);
SetPlayerPos(playerid, x + 2 , y , z);
SetPlayerInterior(playerid, GetPlayerInterior(clickedplayerid));
SetPlayerVirtualWorld(playerid, GetPlayerVirtualWorld(playerid));
return 1;
}