[Ajuda] Ajuda com um tutorial.
#8

Quote:
Originally Posted by Gabriel Santana
Посмотреть сообщение
Intao, onde eu coloco esse codigo, quero assim, pra todos perto de quem vai dar o colete.
Ajeitei o cуdigo e tб assim.

Код:
CMD:coletet(playerid)
{
    if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, VERMELHO, "ERRO: Vocк nгo й um adiministrador para usar esse comando.");
    for(new x = 0; x < MAX_PLAYERS; x++) { 
    SetPlayerArmour(x, 100);
    new nome[MAX_PLAYER_NAME], stringnome[300];
    GetPlayerName(playerid, nome, sizeof(nome));
    format(stringnome, sizeof(stringnome), "** O jogador %s deu colete a todos perto dele.",nome);
    SendClientMessageToAll(AMARELO, stringnome);
}
    return 1;
}
Onde coloco o,
Код:
if(GetDistanceBetweenPlayers(playerid, i) <= 50.0)
Faзa isto Gabriel:

pawn Код:
CMD:coletet(playerid)
{
    new Float:X, Float:Y, Float:Z;
    if(!IsPlayerAdmin(playerid)) return SendClientMessage(playerid, VERMELHO, "ERRO: Vocк nгo й um adiministrador para usar esse comando.");
    GetPlayerPos(playerid, X, Y, Z);
    for(new x = 0; x < MAX_PLAYERS; x++) {
    if(IsPlayerInRangeOfPoint(x, 50.0, X, Y, Z))
    {
    SetPlayerArmour(x, 100);
    new nome[MAX_PLAYER_NAME], stringnome[300];
    GetPlayerName(playerid, nome, sizeof(nome));
    format(stringnome, sizeof(stringnome), "** O jogador %s deu colete a todos perto dele.",nome);
    SendClientMessageToAll(AMARELO, stringnome);
    }
    }
    return 1;
}
Reply


Messages In This Thread
Ajuda com um tutorial. - by Gabriel Santana - 19.08.2012, 15:14
Re: Ajuda com um tutorial. - by Bruno Alves - 19.08.2012, 15:23
Re: Ajuda com um tutorial. - by .FuneraL. - 19.08.2012, 15:24
Re: Ajuda com um tutorial. - by @Riichard - 19.08.2012, 15:27
Re: Ajuda com um tutorial. - by Gabriel Santana - 19.08.2012, 16:13
Re: Ajuda com um tutorial. - by Bruno Alves - 19.08.2012, 16:37
Re: Ajuda com um tutorial. - by Gabriel Santana - 19.08.2012, 16:41
Re: Ajuda com um tutorial. - by .FuneraL. - 19.08.2012, 16:51
Re: Ajuda com um tutorial. - by Bruno Alves - 19.08.2012, 16:55
Re: Ajuda com um tutorial. - by Gabriel Santana - 19.08.2012, 16:56

Forum Jump:


Users browsing this thread: 1 Guest(s)