Erro com Gamemode TDM
#1

Fala Galera,Sou novo aq no fуrum samp,To fazendo um Gamemode TDM mбs ele tem um problema quando vai anunciar que um player matou o outro nгo mostra o nick do cara exemplo : [MORTES]: Fabio tirou o pe da lama jб; Matou um ..Aparece assim ex: [MORTES]: tirou o pe da lama jб; Matou um ..Tirei um Print ( /imageshack/i/scrape...per201102.jpg/ ) Como resolvo esse erro?..Isso й problema no Onplayerdeath?..Vlw
Reply
#2

Fiz um aqui para vocк...

No Comeзo do Mode:
pawn Код:
new TotaldeMortes[MAX_PLAYERS];
new nome[MAX_PLAYER_NAME];
Em OnPlayerConnect:
pawn Код:
TotaldeMortes[playerid] = 0;
Em OnPlayerDisconnect:
pawn Код:
TotaldeMortes[playerid] = 0;
Em OnPlayerDeath:
pawn Код:
TotaldeMortes[killerid]++;
    new string[128];
    if(TotaldeMortes[killerid] == 1)
    {
        GetPlayerName(killerid, nome, sizeof(nome));
        format(string, sizeof(string), "[MORTES]: %s Tirou o pй da lama e jб matou um...", nome);
        SendClientMessageToAll(0xCCCC00AA, string);
    }
    if(TotaldeMortes[killerid] == 15)
    {
        GetPlayerName(killerid, nome, sizeof(nome));
        format(string, sizeof(string), "[MORTES]: %s Esta entrando na vida do crime e jб matou 15 pessoas...", nome);
        SendClientMessageToAll(0xCCCC00AA, string);
    }
    if(TotaldeMortes[killerid] == 20)
    {
        GetPlayerName(killerid, nome, sizeof(nome));
        format(string, sizeof(string), "[MORTES]: %s Estб virando um assasino e jб matou 20 pessoas", nome);
        SendClientMessageToAll(0xCCCC00AA, string);
    }
    if(TotaldeMortes[killerid] == 25)
    {
        GetPlayerName(killerid, nome, sizeof(nome));
        format(string, sizeof(string), "[MORTES]: Cuidado com o(a): %s Pois jб matou 25", nome);
        SendClientMessageToAll(0xCCCC00AA, string);
    }
    if(TotaldeMortes[killerid] == 30)
    {
        GetPlayerName(killerid, nome, sizeof(nome));
        format(string, sizeof(string), "[MORTES]: %s й o mais novo aniquilador de pessoas da cidade, Jб matou 30", nome);
        SendClientMessageToAll(0xCCCC00AA, string);
    }
Reply
#3

Vlw Cara me ajudo bastante '-'
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)