Jump to content

Chuck_James

Membru
  • Posts

    58
  • Joined

  • Last visited

  • Days Won

    6

Posts posted by Chuck_James

  1. Salut, recent m-am reapucat de sa-mp. Am luat gta-ul de pe moduri.ro, am instalat si un enb, niste moduri de masini si ceva cu Grove Street. Am intrat frumos pe un server si aveam fps mic, cam 20-40 si am incercat sa dezactivez ENB-ul si aveam fps-ul la fel. Am jucat pe sa-mp cu gta simplu, fara moduri, aceleasi rezultate. Nu am pc prost, configuratie: i5 7500 3.6GHz, 8GB DDR4, GTX 1060 6GB. Ce are? Inainte aveam 200-240..

  2. Salut, numele meu este Chuck_James, și am făcut în decursul a doua zile un job ce va fii implementat pe serverul meu. Pana voi reveni cu varianta video a job-ului, îl voi prezenta prin poze.

    Sweeperul este simplu, urmezi checkpointurile și primești banii, adică 500$.

    Foto Job Trucker: http://m.imgur.com/a/VHqKv

    Foto Job Sweeper: http://m.imgur.com/a/wvC1n

     

    Sper ca va place, dacă aveți idei pt. îmbunătățire, lasați în comentarii. :)

    Bafta!

    • Upvote 1
  3. Problema intalnita (descriere): Am niste erori si habar nu am ce sa le fac.
    Ero(area / rile) / warning-(ul / urile):

    D:\mnx-xplay-kniferz\gamemodes\SincePlay.pwn(25362) : error 075: input line too long (after substitutions)
    D:\mnx-xplay-kniferz\gamemodes\SincePlay.pwn(25363) : error 037: invalid string (possibly non-terminated string)
    D:\mnx-xplay-kniferz\gamemodes\SincePlay.pwn(25363) : error 017: undefined symbol "FFFFFF"
    D:\mnx-xplay-kniferz\gamemodes\SincePlay.pwn(25363) : warning 221: label name "Cash" shadows tag name
    D:\mnx-xplay-kniferz\gamemodes\SincePlay.pwn(25363) : warning 215: expression has no effect
    D:\mnx-xplay-kniferz\gamemodes\SincePlay.pwn(25363) : error 001: expected token: ";", but found "$"
    Liniile de cod / sursa / script-ul(obligatoriu):

    CMD:shop(playerid, params[])
    {
        if(IsPlayerConnected(playerid))
        {
        ShowPlayerDialog(playerid, DIALOG_HPoints1, DIALOG_STYLE_LIST, "{FF3300}PremiumShop:", "{FFFFFF}Cash:  35.000$ - 100 PP\n{FFFFFF}Cash:  100.000$ - 300 PP\n{FFFFFF}Cash:  500.000$ - 800 PP\n{FFFFFF}Cash:  1.000.000$ - 1200 PP\n{FFFFFF}Cash:  2.000.000$ - 1700 PP\n{FFFFFF}PremiumAccount: - 500 PP\n{FFFFFF}Drugs: 50 drugs = 200 PP\n{FFFFFF}ClearFP: - 700 PP\n{FFFFFF}Clear 1 Warn - 600 PP\nHouse Interior 1 - {ff0000}Free\nHouse Interior 2 - 550 PP\nHouse Interior 3 - 750 PP\nHouse Interior 4 - 1000 PP\n{FF6600}Get PremiumPoints [+]\n", "Select", "Close");
        }
        return 1;
    }
    Imagini / Video (optional): -
    Ati incercat sa rezolvati singur?: Da, nu am reusit.

  4. CMD:givegold(playerid, params[])
    {
        new giveplayerid, splayer[25], gold;
        if(gLogged[playerid] == 0) return SendClientMessage(playerid, COLOR_ERROR, "Tu nu esti logat si nu poti sa folosesti aceasta comanda!");
        if(PlayerInfo[playerid][pAdmin] < 6) return SendClientMessage(playerid, COLOR_ERROR, "Nu ai gradul necesar ca sa folosesti aceasta comanda!");
        if(sscanf(params,"s[25]i",splayer,gold)) return SendClientMessage(playerid, COLOR_SYN, "Tasteaza:{FFFFFF} /givegold <Player ID/Name> <amount>");
        {
            if(GetPlayers(splayer) == INVALID_PLAYER_ID) return InvalidPlayer(playerid);
            else if(GetPlayers(splayer) == 1000) return ToManyResults(playerid);
            else if(GetPlayers(splayer) == 1001) return ShowResults(playerid, splayer);
            else giveplayerid = GetPlayers(splayer);
            format(gString, sizeof(gString), "%s has given %s gold to %s.",GetName(playerid),FormatNumber(gold),GetName(giveplayerid));
            CMDRaport(gString, 6, 0);
            PlayerInfo[giveplayerid][pGold] += gold;
            Update(giveplayerid, pGold);
        }
        return 1;
    }

     

    Dacă nu merge cauta în baza de date tabelul pGold.

  5. CMD:ceas(playerid, params[])
    {
           if(IsPlayerConnected(playerid))
           if(PlayerInfo[playerid][pCeasPlayer] == 1)
           {
              new string[60];
              new year,month,day,hours,minutes,seconds;
              PlayerTextDrawShow(playerid, CeasTD[playerid][0]);
              PlayerTextDrawShow(playerid, CeasTD[playerid][1]);
              PlayerTextDrawShow(playerid, CeasTD[playerid][2]);
              PlayerTextDrawShow(playerid, CeasTD[playerid][3]);
              PlayerTextDrawShow(playerid, CeasTD[playerid][6]);
              PlayerTextDrawShow(playerid, CeasTD[playerid][7]);
              PlayerTextDrawShow(playerid, CeasTD[playerid][8]);
              PlayerTextDrawShow(playerid, CeasTD[playerid][9]);
              PlayerTextDrawShow(playerid, CeasTD[playerid][10]);
              PlayerTextDrawShow(playerid, CeasTD[playerid][11]);
              PlayerTextDrawShow(playerid, CeasTD[playerid][12]);
              PlayerTextDrawShow(playerid, CeasTD[playerid][13]);
              PlayerTextDrawShow(playerid, CeasTD[playerid][14]);
              PlayerTextDrawShow(playerid, CeasTD[playerid][15]);
              format(string, sizeof string, "%s%d:%s%d", (hours < 10) ? ("0") : (""), hours, (minutes < 10) ? ("0") : (""), minutes, (seconds < 10) ? ("0") : (""), seconds);
              PlayerTextDrawSetString(playerid, CeasTD[playerid][4], string);
              PlayerTextDrawShow(playerid, CeasTD[playerid][4]);
                 format(string, sizeof string, "%d/%s%d/%s%d", day, ((month < 10) ? ("0") : ("")), month, (year < 10) ? ("0") : (""), year);
              PlayerTextDrawSetString(playerid, CeasTD[playerid][5], string);
              PlayerTextDrawShow(playerid, CeasTD[playerid][5]);
              SetTimerEx("CeasShow", 4, 0, "d", playerid);
           }
           return 1;
    }

  6. Poziţie: scripter
    Alte detalii:

    Am nevoie de un scripter bun, sa ma ajute sa fac niste sisteme Role-Play. Aceste sisteme sa fie unele de:

    -Spart mașini

    -CNP și numele Role-Play. Adică acea interdicție ca dacă nu ai un nume gen: Chuck_James, sa îți dea kick.

     

    Ofer 25/50 lei paysafe, depinde cat se cere.

     

     

×
×
  • 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.