[Ajuda] Com Rank
#1

Код:
	new pName[24], string3[128];
    for(new a; a < MAX_PLAYERS; ++a)
    {
        if(IsPlayerConnected( a) && !IsPlayerNPC( a))
        {
            GetPlayerName(a, pName, 24);
            if(Kills[a] > MaxKills)
		//	if(arrayPlayer[a][PAssassinatos] > MaxKills)
		    {
                MaxKills = Kills[a];
                format(string3, 128, " Killer: '%s'", pName);
				TextDrawSetString(TextMatador, string3);
				TextDrawShowForAll(TextMatador);
				break;
            }
      	}
    }
quando alguem digamos, que estб no topo lб que matou mais e aparece seu nome na textdraw, se ele desconectar o text fica com o nome dele atй outro com maior kill conectar ou matar mas on
Reply
#2

Esse cуdigo й executado com que frequкncia?
Reply
#3

a cada 1 segundo
Reply
#4

Tenta isso

pawn Код:
//Topo do GM
    new BigKiller;

    //OnPlayerDisconnect
    if(playerid == BigKiller)
        TextDrawHideForAll(TextMatador);

    new pName[24], string3[128];
    for(new a; a < MAX_PLAYERS; ++a)
    {
        if(IsPlayerConnected( a) && !IsPlayerNPC( a))
        {
            GetPlayerName(a, pName, 24);
            if(Kills[a] > MaxKills)
            {
                MaxKills = Kills[a];
                BigKiller = a;
                format(string3, 128, " Killer: '%s'", pName);
                TextDrawSetString(TextMatador, string3);
                TextDrawShowForAll(TextMatador);
                break;
            }
        }
    }
Reply


Forum Jump:


Users browsing this thread: 3 Guest(s)