Jump to content
  • 0

Problema


ciprian2013

Question

Problema intalnita (descriere):Cand apas click imi tot da un mesaj .
Ero(area / rile) / warning-(ul / urile):/
Liniile de cod / sursa / script-ul(obligatoriu):

Quote

    if(PRESSED(KEY_FIRE))
    {
        if(PlayerInfo[playerid][pJob] == 10)
        {
            if(HoldWood[playerid] == 1) return 1;
            for(new t = 0; t < sizeof(Tree); t++)
            {
                if(!IsValidDynamicObject(Tree[t]) || TreeA[t] != 1) continue;
                new Float:x, Float:y, Float:z;
                GetDynamicObjectPos(Tree[t], x, y, z);
                SendClientMessage(playerid,COLOR_WHITE,"Du-te la punctul rosu de pe harta");
                if(IsPlayerInRangeOfPoint(playerid, 3.2, x, y, z))
                {
                    new skill, remain, forup;
                    GetWoodSkill(playerid, skill, remain, forup);
                    if(PlayerInfo[playerid][pStockPile] >= (225 + skill*25)) return SendClientMessage(playerid, COLOR_GRAD1, "Nu puteti taia mai multi copaci, stocurile sunt pline.");
                    if(WoodWait[playerid] > gettime())
                    {
                        format(gString, sizeof(gString), "Trebuie sa astepti %d secunde.", WoodWait[playerid]-gettime());
                        SendClientMessage(playerid, COLOR_ERROR, gString);
                        return 1;
                    }
                    TreeA[t] = 0;

                    ClearAnimations(playerid);
                    GivePlayerWeapon(playerid, 9, 1);
                    ApplyAnimation(playerid,"CHAINSAW","WEAPON_csaw",4.1,1,0,0,0,6100);

                    CutWood[playerid] = 1;
                    SetTimerEx("PTree", 6000, 0, "ii", t, playerid);
                }
            }
        }
    }

Doar aici apare mesajul "Du-te la punctul rosu de pe harta" /Deci de aici e problema.
Imagini / Video (optional):http://imgur.com/Mu3pVMV
Ati incercat sa rezolvati singur?: Da

Link to comment
Share on other sites

4 answers to this question

Recommended Posts

  • 0
1 oră în urmă, ciprian2013 a spus:

Problema intalnita (descriere):Cand apas click imi tot da un mesaj .
Ero(area / rile) / warning-(ul / urile):/
Liniile de cod / sursa / script-ul(obligatoriu):

Doar aici apare mesajul "Du-te la punctul rosu de pe harta" /Deci de aici e problema.
Imagini / Video (optional):http://imgur.com/Mu3pVMV
Ati incercat sa rezolvati singur?: Da

Sterge "SendClientMessage(playerid,COLOR_WHITE,"Du-te la punctul rosu de pe harta"); "

Link to comment
Share on other sites

  • 0
Citat

if(PRESSED(KEY_FIRE))
    {
        if(PlayerInfo[playerid][pJob] == 10)
        {
            if(HoldWood[playerid] == 1) return 1;
            for(new t = 0; t < sizeof(Tree); t++)
            {
                if(!IsValidDynamicObject(Tree[t]) || TreeA[t] != 1) continue;
                new Float:x, Float:y, Float:z;
                GetDynamicObjectPos(Tree[t], x, y, z);
                // SendClientMessage(playerid,COLOR_WHITE,"Du-te la punctul rosu de pe harta");
                if(IsPlayerInRangeOfPoint(playerid, 3.2, x, y, z))
                {
                    new skill, remain, forup;
                    GetWoodSkill(playerid, skill, remain, forup);
                    if(PlayerInfo[playerid][pStockPile] >= (225 + skill*25)) return SendClientMessage(playerid, COLOR_GRAD1, "Nu puteti taia mai multi copaci, stocurile sunt pline.");
                    if(WoodWait[playerid] > gettime())
                    {
                        format(gString, sizeof(gString), "Trebuie sa astepti %d secunde.", WoodWait[playerid]-gettime());
                        SendClientMessage(playerid, COLOR_ERROR, gString);
                        return 1;
                    }
                    TreeA[t] = 0;

                    ClearAnimations(playerid);
                    GivePlayerWeapon(playerid, 9, 1);
                    ApplyAnimation(playerid,"CHAINSAW","WEAPON_csaw",4.1,1,0,0,0,6100);

                    CutWood[playerid] = 1;
                    SetTimerEx("PTree", 6000, 0, "ii", t, playerid);
                }
            }
        }
    }

Chiar iti este atat de greu sa pui doua Slash-uri ( Comment ) pe linia respectiva ( cu mesajul ) ... ?

  • Upvote 1
Link to comment
Share on other sites

Guest
This topic is now closed to further replies.
×
×
  • 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.