[Ajuda] Ajuda, 26 erros! - Printable Version
+- SA-MP Forums Archive (
https://sampforum.blast.hk)
+-- Forum: Non-English (
https://sampforum.blast.hk/forumdisplay.php?fid=9)
+--- Forum: Languages (
https://sampforum.blast.hk/forumdisplay.php?fid=33)
+---- Forum: Português/Portuguese (
https://sampforum.blast.hk/forumdisplay.php?fid=34)
+---- Thread: [Ajuda] Ajuda, 26 erros! (
/showthread.php?tid=432114)
Ajuda, 26 erros! -
Pedro_Teixeira - 21.04.2013
Oi, eu tava aqui editando meu tutorial e me ta dando aquele erro dos 26 erros, de quando estб algum } ou { mal posto.
como devo por isso para nao dar erro?
pawn Код:
if(TutTime[playerid] >= 1)
{
TutTime[playerid] += 1;
{
if(TutTime[playerid] == 5)
{
if(dialogid == 900)
{
if(response == 1)
RegistrationStep[playerid] = 2;
TutTime[playerid] = 1;
SendClientMessage(playerid, COLOR_LIGHTRED, "Obrigado pelas respostas ! Presta agora atenзгo ao resto do tutorial!");
SendClientMessage(playerid, COLOR_YELLOW2, "Olб sк muito bem vindo ao NorthGames RPG");
SendClientMessage(playerid, COLOR_YELLOW2, "Este й um pequeno tutorial para que possas a a jogar no nosso servidor");
SendClientMessage(playerid, COLOR_YELLOW2, "para que nгo tenhas duvidas futuras e que entendas as nossas regras.");
SendClientMessage(playerid, COLOR_YELLOW2, " Й altamente recomendado que leias todo este tutorial atentamente");
SendClientMessage(playerid, COLOR_YELLOW2, " pois ele vai te ajudar muito no teu percurso no servidor.");
SendClientMessage(playerid, COLOR_YELLOW2, " Atenзгo sу poderбs ver este toturial uma vez.");
PlayerInfo[playerid][pEmprego] = 0;
return 0;
}
Re: Ajuda, 26 erros! -
DrTHE - 21.04.2013
Exatamente, chaves.
pawn Код:
if(TutTime[playerid] >= 1) {
TutTime[playerid] += 1;
if((TutTime[playerid] == 5) && (dialogid == 900)) {
if(response == 1) {
RegistrationStep[playerid] = 2;
TutTime[playerid] = 1;
SendClientMessage(playerid, COLOR_LIGHTRED, "Obrigado pelas respostas ! Presta agora atenзгo ao resto do tutorial!");
SendClientMessage(playerid, COLOR_YELLOW2, "Olб sк muito bem vindo ao NorthGames RPG");
SendClientMessage(playerid, COLOR_YELLOW2, "Este й um pequeno tutorial para que possas a a jogar no nosso servidor");
SendClientMessage(playerid, COLOR_YELLOW2, "para que nгo tenhas duvidas futuras e que entendas as nossas regras.");
SendClientMessage(playerid, COLOR_YELLOW2, " Й altamente recomendado que leias todo este tutorial atentamente");
SendClientMessage(playerid, COLOR_YELLOW2, " pois ele vai te ajudar muito no teu percurso no servidor.");
SendClientMessage(playerid, COLOR_YELLOW2, " Atenзгo sу poderбs ver este toturial uma vez.");
PlayerInfo[playerid][pEmprego] = 0;
return 0;
}
}
}
Re: Ajuda, 26 erros! -
Pedro_Teixeira - 21.04.2013
vlw cara