09.04.2017, 15:36
Nгo tenho ideia se vai funcionar, ou nгo.
PHP код:
new Cidade_Que_Morreu[MAX_PLAYERS];
public OnPlayerDeath(playerid, killerid, reason)
{
if(IsPlayerInLosSantos(playerid))
{
Cidade_Que_Morreu[playerid] = 1; // Los Santos
}
if(IsPlayerInSanFierro(playerid))
{
Cidade_Que_Morreu[playerid] = 2; // SanFierro
}
if(IsPlayerInLasVenturas(playerid))
{
Cidade_Que_Morreu[playerid] = 3; // Las Venturas
}
return 1;
}
static stock IsPlayerInLosSantos(playerid)
{
new Float:x,Float:y,Float:z;
GetPlayerPos(playerid, x, y, z);
if(x >= 44.60 && y >= -2892.90 && x <= 2997.00 && y <= -768.00) return 1;
else return 0;
}
static stock IsPlayerInLasVenturas(playerid)
{
new Float:x,Float:y,Float:z;
GetPlayerPos(playerid, x, y, z);
if(x >= 869.40 && y >= 596.30 && x <= 2997.00 && y <= 2993.80) return 1;
else return 0;
}
static stock IsPlayerInSanFierro(playerid)
{
new Float:x,Float:y,Float:z;
GetPlayerPos(playerid, x, y, z);
if(x >= -2954.502 && y >= -3012.892 && x <= -957.5858 && y <= 1436.379) return 1;
else return 0;
}