Jump to content

VolticHD

Membru
  • Posts

    24
  • Joined

  • Last visited

  • Days Won

    1

Posts posted by VolticHD

  1. Am o comunitate deschisa de 2 ani si vreau sa gasesc pe cineva care se price sa faca paneluri. Ii pot oferi grad de Administrator pe forum si admin 7 pe joc!

    Cine e interesat pm pe discord VolticHD#0414

    Olteanu daca vezi asta ti-am scris dar mi-a zis ca m-ai blocat

    EDIT: Comunitatea nu mai este populata deoarece a primit alt nume si am vrut sa incepem ceva nou

  2. Daca vreti sa nu trebuiasca sa il bagati in gamemode ca sa mearga sa nu intri in casa puteti face sa scrie asta cand incearca sa intre in casa,
    if(GetPlayerVirtualWorld(playerid) == 9998) return SCM(playerid, COLOR_LIGHTRED, "Eroare: Nu poti intr-o locuintra in timpul meciului de PUBG");

    Pentru bizuri

    if(GetPlayerVirtualWorld(playerid) == 9998) return SCM(playerid, COLOR_LIGHTRED, "Eroare: Nu poti intr-un business in timpul meciului de PUBG");

  3. in loc de 

    Quote

     

    
    case DIALOG_CLANTAG: {
                if(!response) return 1;
                if(listitem == 2) {
                    PlayerInfo[playerid][pTag] = -1;
                    UpdateVar(playerid, "Tag", -1);
                    SCM(playerid, COLOR_LGREEN, "Ti-ai scos tagul!");
                    return 1;
                }
                PlayerInfo[playerid][pTag] = listitem;
                UpdateVar(playerid, "Tag", listitem);
                SCM(playerid, COLOR_LGREEN, "Pozitia TAG-ului a fost modificata!");
                new clanid = PlayerInfo[playerid][pClan];
                if(PlayerInfo[playerid][pClan] != 0 && PlayerInfo[playerid][pTag] == 0) {
                    format(string, sizeof(string), "%s%s", ClanInfo[clanid][clTag], PlayerInfo[playerid][pUsername]);
                    SetPlayerName(playerid, string);
                }
                else if(PlayerInfo[playerid][pClan] != 0 && PlayerInfo[playerid][pTag] == 1) {
                    format(string, sizeof(string), "%s%s", PlayerInfo[playerid][pUsername], ClanInfo[clanid][clTag]);
                    SetPlayerName(playerid, string);
                }        
            }    

    pune

    Quote

    case DIALOG_CLANTAG: {
                if(!response) return 1;
                if(listitem == 2) {
                    PlayerInfo[playerid][pTag] = -1;
                    UpdateVar(playerid, "Tag", -1);
                    SCM(playerid, COLOR_LGREEN, "Ti-ai scos tagul!");
                    format(string, sizeof(string), "%s", PlayerInfo[playerid][pUsername]);
                    SetPlayerName(playerid, string);
                    return 1;
                }
                PlayerInfo[playerid][pTag] = listitem;
                UpdateVar(playerid, "Tag", listitem);
                SCM(playerid, COLOR_LGREEN, "Pozitia TAG-ului a fost modificata!");
                new clanid = PlayerInfo[playerid][pClan];
                if(PlayerInfo[playerid][pClan] != 0 && PlayerInfo[playerid][pTag] == 0) {
                    format(string, sizeof(string), "%s%s", ClanInfo[clanid][clTag], PlayerInfo[playerid][pUsername]);
                    SetPlayerName(playerid, string);
                }
                else if(PlayerInfo[playerid][pClan] != 0 && PlayerInfo[playerid][pTag] == 1) {
                    format(string, sizeof(string), "%s%s", PlayerInfo[playerid][pUsername], ClanInfo[clanid][clTag]);
                    SetPlayerName(playerid, string);
                }        
            }    

     

  4. Quote
    
    if(time < 36000) return SS(playerid, COLOR_LIGHTGREEN3, "Trebuie sa ai 10 ore jucate in ultimele 30 de zile (fara AFK/sleep) pentru a putea cumpara o proprietate.", "You need 10 played hours in last 30 days (without AFK/sleep) to buy a property.");

    scoatel si va merge

  5. Quote

    YCMD:ticket(playerid, params[], help) {
        if(!IsACop(playerid)) return SCM(playerid, COLOR_GREY, "Nu esti politist.");
        if(PlayerInfo[playerid][pMember] == 2 || PlayerInfo[playerid][pMember] == 3) return SCM(playerid, COLOR_LGREEN, "Nu poti folosi aceasta comanda!");
        if(OnDuty[playerid] != 1) return SCM(playerid, COLOR_LGREEN, "Eroare: Nu esti la datorie!");
        new id,string[128];
        if(sscanf(params, "u",id)) return SCM(playerid, COLOR_GREY, "USAGE: {FFFFFF}/ticket <playerid/name>");
        if(!IsPlayerConnected(id) || id == INVALID_PLAYER_ID) return SCM(playerid, COLOR_GREY, "Acel player nu este conectat.");
        if(!ProxDetectorS(8.0, playerid, id)) return SCM(playerid, -1, "Acel player nu este langa tine.");
        if(IsACop(id)) return SCM(playerid, COLOR_GREY, "Nu poti da amenda unui politist!");
                            
        new szDialog[1000], title[100];
        format(title, 100, "Ticket > %s", GetName(id));
        for(new i = 0; i < 7; i++) {
            format(string, sizeof(string), "%s ($%d)\n", ticketName(i), ticketValue(i)); 
            strcat(szDialog, string);
        }
        ShowPlayerDialog(playerid, DIALOG_TICKET, DIALOG_STYLE_LIST, title, szDialog, "Ok", "Cancel");                    
        SetPVarInt(playerid, "userID", id);                    
        return 1;
    }

    pentru gamemode burned

×
×
  • Create New...

Important Information

We have placed cookies on your device to help make this website better. You can adjust your cookie settings, otherwise we'll assume you're okay to continue. For more details you can also review our Terms of Use and Privacy Policy.