[Ajuda] 26 erros
#1

E ai, alguйm pode me ajudar? como posso mudar isso? esta dando 26 erros, mais eu n sei onde, o que eu fiz? eu tiro essa parte os 26 erros some..

PHP код:
                /*case 0: format(string, 128, "** %s saiu. (Problema de conexгo)", GetPlayerNameRP(playerid));
                case 1: format(string, 128, "** %s saiu. (Vontade prуpria)", GetPlayerNameRP(playerid));
                case 2: format(string, 128, "** %s saiu. (Kicked/Banned)", GetPlayerNameRP(playerid));
                SendClientMessage(i, -1, string);*/ 
Reply
#2

tenta: https://sampforum.blast.hk/showthread.php?tid=240470
Reply
#3

Esses erros devem ter sido causados por alguma chave aberta, olha o codigo correto: https://sampwiki.blast.hk/wiki/OnPlayerDisconnect_PT
Reply
#4

Mande o seu OnPlayerDisconnect inteiro. E um aviso, 128 cells pra variбvel string estб muito grande. Defina com 70 cells no mбximo.
Код:
new string[70];
Reply
#5

pawn Код:
switch(reason)
    {
    case 0:  format(Str,sizeof(Str), "%s Saiu do Servidor {FFFFFF}|Conexгo/Crash|",Nome(playerid));
    case 1:  format(Str,sizeof(Str), "%s Saiu do Servidor {FFFFFF}|Vontade Propia|",Nome(playerid));
    case 2:  format(Str,sizeof(Str), "%s Saiu do Servidor {FFFFFF}|Kickado/Banido|",Nome(playerid));
    }
    SendClientMessageToAll(0x808080AA, Str);
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)