18.02.2010, 13:34
nгo й preciso um sistema sу pra fazer uma simples GZ dominavel oO
nгo testei, fiz rapido, aperfeiзoe isto e vocк tera uma GZ dominavel
pawn Код:
forward Dominando(playerid);
new gz;
//OnGameModeInit()
gz = GangZoneCreate(min.x, min.y, max.x, max.y);
//OnPlayerSpawn(playerid)
GangZoneShowForPlayer(playerid, gz, COR);
//OnPlayerCommandText(playerid, cmdtext[])
if(strcmp(cmdtext, "/gz", true) == 0)
{
if(IsPlayerInRangeOfPoint(playerid, raio, x, y, z)//crie um pickup
{
GangZoneFlashForAll(gz, COR);
SetTimer("Dominando", 30000, 0);//30000 й o tempo
//add mais coisas como "%s esta dominando sei la"
}
return 1;
}
public Dominando(playerid)
{
GangZoneDestroy(gz);
GangZoneCreate(min.x, min.y, max.x, max.y);//as mesmas coordenadas do primeiro
GangZoneShowForAll(gz, COR);
return 1;
}