string bug
#4

pawn Код:
CMD:s(playerid, params[])
{
    if (!zInfo[playerid][adminlvl]) return 0;
    if (isnull(params)) return SendClientMessage(playerid, BLUE, "* Rašyti pranešima žaidėjams: /s [Tekstas]");
   
    new _str[128];
   
    switch (zInfo[playerid][adminlvl])
    {
        case 1: _str = "Administratorius {FFFF00}I{00FF00} lygio";
        case 2: _str = "Administratorius {FFFF00}II{00FF00} lygio";
        case 3: _str = "Administratorius {FFFF00}III{00FF00} lygio";
        case 4: _str = "Savininkas";
        case 5: _str = "Scripteris";
        default:
        {
            if(zInfo[playerid][emigrator]) _str = "{FFFF00}Emigracijų{00FF00} prižiūrėtojas";
            else if(zInfo[playerid][adminator]) _str = "{FFFF00}Administratorių{00FF00} prižiūrėtojas";
            else if(zInfo[playerid][vipator]) _str = "{FFFF00}Vipų{00FF00} prižiūrėtojas";
            else if(zInfo[playerid][prezidentas]) _str = "{FFFF00}Direktorių{00FF00} prižiūrėtojas";
        }
    }
   
    new vardas[MAX_PLAYER_NAME];
    GetPlayerName(playerid, vardas, MAX_PLAYER_NAME);
    format(_str, sizeof (_str), "{00FF00}%s {FFFF00}%s {00FF00}praneša:", _str, vardas);
    SendClientMessageToAll(-1, _str);
    format(_str, sizeof (_str), "{009966}%s", params);
    SendClientMessageToAll(-1, _str);
    return 1;
}
Reply


Messages In This Thread
string bug - by ancezas - 27.01.2014, 18:03
Re: string bug - by Vanter - 27.01.2014, 18:35
Re: string bug - by ancezas - 28.01.2014, 15:43
Re: string bug - by Konstantinos - 28.01.2014, 15:53
Re: string bug - by ikey07 - 28.01.2014, 15:56

Forum Jump:


Users browsing this thread: 1 Guest(s)