Jump to content

Mr.Pawno

Membru
  • Posts

    14
  • Joined

  • Last visited

Posts posted by Mr.Pawno

  1. Salut, numele meu este Alex, sa nu prelungim povestea.

    Caut un scripter bun / priceput, pentru o perioadă indelungată. Proiectul a mai avut succes în trecut, dar din lipsa de timp, am considerat la vremea aceea ca ar fii mai bine sa'l abandonam puțin.

    Tot o data, caut și Developer pentru un server se 'FiveM'


    Cerinte: 1) Nivel scriptic: 8-9 / 10.

                   2) Sa nu mai scripteze pentru altcineva.

                   3) Sa ofere seriozitate, fără amânări (ex: repar saptamana viitoare, nu pot acum, s.a.m.d)

    Ofer și rog seriozitate.

    Plata: Negociabil (Nu sunt curios de investite, atât timp cât iese ce'mi doresc).

    Data de contact: Skype: qpal3csbwa

                             Discuție: AlleqsZ#3206
                             InstagraM: www.instagram.com/alleqsz

    Pentru alternative(whatsapp/etc) - Mesaj PM.

     

    Dacă ești interesat, lași mesaj(pm/etc). Nu vreau post.uri cu "Da.mi msj, etc''(datorita faptului ca am timpul limitat, sunt slabe șanse sa trimit eu mesaj).

    Dacă ești interesat, lasă mesaj. 

    • Upvote 1
  2. On 2/13/2020 at 6:58 AM, ionutdrg45 said:

    Care dintre motive sunt afișate când da fail, distanta, undercover sau telefonul pornit? De asemenea mai ai nevoie de niște verificări, dacă e cuțit și distanta mai mica de 99 sa nu se pună fail și cred ca ar fi util și dacă e mai mare distanta de 99 sa verifici dacă are sniper, pentru ca de presupune ca ar trebui sa fie silențios, cu alte arme nu prea e. 

    Poi primesc fail pe distanta.

    if(GetDistanceBetweenPlayers(killerid,playerid) <= 99)
    {
        format(string,256,"%s failed to complete the contract on %s for $%s, distance: %.0fm. Fail reason: distance/weapon.",killer,name,FormatNumber(PlayerInfo[playerid][pHeadValue]),GetDistanceBetweenPlayers(killerid,playerid));
    }

  3. On 2/11/2020 at 3:55 PM, ionutdrg45 said:

    Arata codul de unde ti se trimite mesajul ca este fail ca sa ne putem da seama de ce nu este in regula.

     if(PlayerInfo[playerid][pHeadValue] > 0)
            {
                if(IsPlayerConnected(killerid))
                {
                    if(PlayerInfo[killerid][pMember] == 11)
                    {
                        if(GoChase[killerid] == playerid)
                        {
                            new killer[MAX_PLAYER_NAME];
                            GetPlayerName(killerid, killer, sizeof(killer));
                            GivePlayerCash(killerid, PlayerInfo[playerid][pHeadValue]);
                            if(Undercover[killerid] == 1 && PhoneOnline[killerid] == 1 && GetDistanceBetweenPlayers(killerid,playerid) >= 100)
                            {
                                format(string,256,"%s has succesfully completed the contract on %s for $%s, distance: %.0fm.",killer,name,FormatNumber(PlayerInfo[playerid][pHeadValue]),GetDistanceBetweenPlayers(killerid,playerid));
                            }
                            if(Undercover[killerid] == 0)
                            {
                                format(string,256,"%s failed to complete the contract on %s for $%s, distance: %.0fm. Fail reason: not undercover.",killer,name,FormatNumber(PlayerInfo[playerid][pHeadValue]),GetDistanceBetweenPlayers(killerid,playerid));
                            }
                            if(PhoneOnline[killerid] == 0)
                            {
                                format(string,256,"%s failed to complete the contract on %s for $%s, distance: %.0fm. Fail reason: phone turned on.",killer,name,FormatNumber(PlayerInfo[playerid][pHeadValue]),GetDistanceBetweenPlayers(killerid,playerid));
                            }
                            if(GetDistanceBetweenPlayers(killerid,playerid) <= 99)
                            {
                                format(string,256,"%s failed to complete the contract on %s for $%s, distance: %.0fm. Fail reason: distance/weapon.",killer,name,FormatNumber(PlayerInfo[playerid][pHeadValue]),GetDistanceBetweenPlayers(killerid,playerid));
                            }
                            SendFamilyMessage(11, COLOR_TEAL, string);
                            PlayerInfo[playerid][pHeadValue] = 0;
                            GotHit[playerid] = 0;
                            GetChased[playerid] = 999;
                            GoChase[killerid] = 999;
                            new str[256];
                            mysql_format(SQL,str,sizeof(str),"UPDATE users SET `HeadValue`='0' WHERE `name`='%s'",PlayerInfo[playerid][pNormalName]);
                            mysql_tquery(SQL,str,"","");
                            Update(killerid, pCashx);
                            togfind[killerid] = 0;
                            PlayerInfo[killerid][pHitT] = 300;
                            mysql_format(SQL, string, sizeof(string), "UPDATE users SET `HitT`='%d' WHERE `name`='%s'", PlayerInfo[killerid][pHitT], PlayerInfo[killerid][pNormalName]);
                            mysql_tquery(SQL,string,"","");
                        }
                    }
                }
                return 1;
            }

     

     

    Sau -> https://pastebin.com/G75Y1R87

  4. On 12/16/2019 at 9:58 AM, Koqs said:

    Arata ce ai la

    if(PlayerHit[killerid] == playerid) {

    // HITMAN
        if(GotHit[playerid] > 0)
        {
            if(GetChased[playerid] < 999)
            {
                if(IsPlayerConnected(GetChased[playerid]))
                {
                    SendClientMessage(GetChased[playerid], COLOR_YELLOW, "Your hit has left the server.");
                    GoChase[GetChased[playerid]] = 999;
                    togfind[GetChased[playerid]] = 0;
                    PlayerInfo[GetChased[playerid]][pHitT] = 0;
                    pLastHit[ playerid ] = INVALID_PLAYER_ID;
                    new string[124];
                    mysql_format(SQL, string, sizeof(string), "UPDATE users SET `HitT`='%d' WHERE `name`='%s'", PlayerInfo[GetChased[playerid]][pHitT], PlayerInfo[GetChased[playerid]][pNormalName]);
                    mysql_tquery(SQL,string,"","");
                }
            }
        }
        if(GoChase[playerid] != 999)
        {
            GotHit[GoChase[playerid]] = 0;
            GetChased[GoChase[playerid]] = 999;
            GoChase[playerid] = 999;
            pLastHit[ playerid ] = INVALID_PLAYER_ID;
        }
        GetChased[playerid] = 999;                     GotHit[playerid] = 0;
  5. Salut, am gasit un GM pe un hdd(mai vechi), si gamemode-ul pentru (DealerShip, foloseste TextDraw).
    Care e problema?: Poi, merg la DS(/GotoDS), si folosesc comanda (/BuyCar), imi apare 'TextDraw', pana aici totu'i ok.
    Imi apare doar 'Prima masina' (Si nu imi functioneaza nici'un buton) Ex: ">>", "<<", "CUMPARA", "INCHIDE".

    Nu face nimic. Ca sa pot sa ies afara din 'TD', sunt nevoit sa apas 'ESC'.

    Help me? pls

  6. Salut, caut un scripter bun / priceput, pentru o perioadă indelungată. 


    Pret: Negociabil.

    Preț minim (De unde pornim): 200-300 de euro.
    Cerinte: 1) Nivel scriptic: 8-9 / 10.

                   2) Sa nu mai scripteze pentru altcineva.

                   3) Sa fie serios.

    Data de contact: Skype: qpal3csbwa

                             Discuție: BlueFox # 3206

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