SA-MP Forums Archive
[Ajuda] Profissao - 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] Profissao (/showthread.php?tid=521142)



Profissao - chefaoBR - 21.06.2014

Galera me ajuda , tentei adicionar a profissao Ninja assim , mais da o famozo 26 erros

Menu de profissao ai

Код:
if(current == honestas2)
{
    new string[266];
    new aname[MAX_PLAYER_NAME];
    GetPlayerName(playerid, aname, MAX_PLAYER_NAME);
    format(file, sizeof(file), PASTA_CONTAS, aname);
    switch(row) {
    case 0:                                   // Petroleiro
        {
            SendClientMessage(playerid, 0x008080AA, "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Petroleiro ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
            format(string, sizeof(string), "» Senhor(a) %s, Parabйns emprego aceito com susseso.", aname);
            SendClientMessage(playerid, Branco, string);
            SendClientMessage(playerid, 0xDBDBDBAA, "» Vocк trabalharб como Petroleiro");
            SendClientMessage(playerid, Branco, "» Vocк ganharб um salбrio de R$500.");
            SendClientMessage(playerid, 0xDBDBDBAA, "» Para visualizar os comandos de sua profissгo: /profissao");
            SendClientMessage(playerid, 0x008080AA, "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Petroleiro ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
            PlayerPlaySound(playerid, 1057, 0, 0, 0);
            PlayerInfo[ playerid ][pProfissao] = Petroleiro;
            dini_FloatSet(file,"CasaX",Float:254.9706);
            dini_FloatSet(file,"CasaY",Float:1410.7343);
            dini_FloatSet(file,"CasaZ",Float:10.7075);
            ShowMenuForPlayer(spawnprof, playerid);
            Logarprof(playerid);
            SetSpawnInfo(playerid, 0, dini_Int(file, "Skin"), dini_Int(file, "CasaX"), dini_Int(file, "CasaY"), dini_Int(file, "CasaZ"), 354.1657, 0, 0, 0, 0, 0, 0);
        )
        case 1:                                   // Ninja
        {
       	 if(PlayerInfo[playerid][pLevel] >= 300){
             SendClientMessage(playerid, 0x008080AA, "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Ninja ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
             format(string, sizeof(string), "» Senhor(a) %s, Parabйns emprego aceito com susseso.", aname);
             SendClientMessage(playerid, Branco, string);
             SendClientMessage(playerid, 0xDBDBDBAA, "» Vocк trabalharб como Traficante de drogas");
             SendClientMessage(playerid, Branco, "» Vocк ganharб um salбrio de R$2.000,00.");
             SendClientMessage(playerid, 0xDBDBDBAA, "» Para visualizar os comandos de sua profissгo: /profissao");
             SendClientMessage(playerid, 0x008080AA, "~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ Ninja ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~");
             PlayerPlaySound(playerid, 1057, 0, 0, 0);
             PlayerInfo[ playerid ][pProfissao] = Ninja;
             dini_FloatSet(file,"CasaX",Float:2355.7896);
             dini_FloatSet(file,"CasaY",Float:-647.9340);
             dini_FloatSet(file,"CasaZ",Float:128.0547);
             ShowMenuForPlayer(spawnprof, playerid);
             Logarprof(playerid);
             SetSpawnInfo(playerid, 0, dini_Int(file, "Skin"), dini_Int(file, "CasaX"), dini_Int(file, "CasaY"), dini_Int(file, "CasaZ"), 354.1657, 0, 0, 0, 0, 0, 0);
           }
            else {
                TogglePlayerControllable(playerid, 1);
                SendClientMessage(playerid, Vermelho, " | ERRO | Vocк nao tem level suficiente para essa profissao.");
            }
        }
        case 2:                                   // Votar
        {
            ShowMenuForPlayer(profissoes, playerid);
        }
        case 3:                                   /// Cancelar
        {
            HideMenuForPlayer(desonestas, playerid);
            TogglePlayerControllable(playerid, 1);
        }
    }
}



Re: Profissao - MultiKill - 21.06.2014

Envie os erros. No seu cуdigo nгo achei nenhum erro, de falta de chaves.


Re: Profissao - PT - 21.06.2014

olha;

pawn Код:
)
        case 1:                                   // Ninja
        {
deveria ser

pawn Код:
}
        case 1:                                   // Ninja
        {