02.03.2013, 19:09
Pessoal, tentei, pesquisei mas nгo consegui!
Eis meu cуdigo, se alguem poder me ajudar, agradeзo!
Eis meu cуdigo, se alguem poder me ajudar, agradeзo!
PHP код:
new PlayerInArea[MAX_PLAYERS];
forward AreaChecks();
//gamemodeinit
SetTimer("AreaChecks", 1000, true);
//final do gamemode
public AreaChecks()
{
for(new i=0; i < MAX_PLAYERS; i++)
{
if(IsPlayerConnected(i))
{
if(IsPlayerInArea(i, 900.391357, 437.526123, 1508.391357, 597.526123))
{
PlayerInArea[i] = 1;
SendClientMessage(i,COLOR_WHITE,"Entrou na area");
}
else
{
if(PlayerInArea[i] == 1)
{
PlayerInArea[i] = 0;
SendClientMessage(i,COLOR_WHITE,"Saiu area");
}
}
}
}
}
stock IsPlayerInArea(playerid, Float:minx, Float:maxx, Float:miny, Float:maxy)
{
new Float:x, Float:y, Float:z;
GetPlayerPos(playerid, x, y, z);
if (x > minx && x < maxx && y > miny && y < maxy) return 1;
return 0;
}