[Ajuda] OOcSanFierro nгo funciona
#1

oi pessoal estou aqui humildemente pedindo ajuda por favor!!! o problema й assim os anuncios tudo que usa OOcLosSantos ou OOcLasVenturas funciona perfeitamente os anuncios globais tambйm mas tudo no chat que usa o OOcSanfierro nгo aparece simplismente ele nгo aparece nada me ajudem pf

As publics

Код:
forward OOCLosSantos(COLOR,const string[]);
public OOCLosSantos(COLOR,const string[])
{
	for(new i = 0; i < MAX_PLAYERS; i++)
	{
		if(IsPlayerConnected(i))
		{
		    if(IsPlayerInLosSantos(i))
		    {
				SendClientMessage(i, COLOR, string);
			}
		}
	}
}

forward OOCLasVenturas(COLOR,const string[]);
public OOCLasVenturas(COLOR,const string[])
{
	for(new i = 0; i < MAX_PLAYERS; i++)
	{
		if(IsPlayerConnected(i))
		{
		    if(IsPlayerInLasVenturas(i))
		    {
				SendClientMessage(i, COLOR, string);
			}
		}
	}
}

forward OOCSanFierro(COLOR,const string[]);
public OOCSanFierro(COLOR,const string[])
{
	for(new i = 0; i < MAX_PLAYERS; i++)
	{
		if(IsPlayerConnected(i))
		{
		    if(IsPlayerInLasVenturas(i) || IsPlayerInLosSantos(i))
		    {
				return true;
			}
			else
			{
			    SendClientMessage(i, COLOR, string);
			}
		}
	}
	return true;
}


AS Stocks




Код:
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;
}

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;
}
Reply


Messages In This Thread
OOcSanFierro nгo funciona - by vitorluiz96 - 29.05.2015, 16:10
Re: OOcSanFierro nгo funciona - by PT - 29.05.2015, 16:15

Forum Jump:


Users browsing this thread: 1 Guest(s)