07.05.2016, 00:31
Sу olhar na wiki estб tudo explicado com exemplos:
https://sampwiki.blast.hk/wiki/RemoveBuildingForPlayer
esse seria o que vocк quer:
remove todos os objetos com ID:615 em um raio de 200.0 a partir do ponto 0 "centro de San Andreas".
https://sampwiki.blast.hk/wiki/RemoveBuildingForPlayer
esse seria o que vocк quer:
PHP код:
public OnPlayerConnect(playerid)
{
// When the player connects, objects with model 615 will be removed within a
// range of 200.0 from the point 0.0, 0.0, 0.0, which is the center of San Andreas.
RemoveBuildingForPlayer(playerid, 615, 0.0, 0.0, 0.0, 200.0);
return 1;
}