Jump to content

Recommended Posts

Posted

Salutare tuturor din aceasta comunitate de sa:mp.

Am facut si eu un sistem clasic de crate in care dai /buycrate iti ia o anumita suma de bani si iti poate da niste premii ( fara textdraw, nu stiu sa-l fac ).

Am facut cu random de 4 premii si as vrea sa stiu cum sa le pot pune sanse la premii, ma puteti ajuta?

GameMode: bottles, folosesc ZCMD

Comanda: https://pastebin.com/rX9TCvRL

Posted
Acum 13 minute, AnDrEyUpS a spus:

Salutare tuturor din aceasta comunitate de sa:mp.

Am facut si eu un sistem clasic de crate in care dai /buycrate iti ia o anumita suma de bani si iti poate da niste premii ( fara textdraw, nu stiu sa-l fac ).

Am facut cu random de 4 premii si as vrea sa stiu cum sa le pot pune sanse la premii, ma puteti ajuta?

GameMode: bottles, folosesc ZCMD

Comanda: https://pastebin.com/rX9TCvRL

Citat

CMD:opencrate(playerid, params[])
{
    if(pInfo[playerid][pScore] < 3) return SCM(playerid, COLOR_ERROR, "Nu ai nivelul neceser pentru a folosi aceasta comanda.");
    if(!IsPlayerInRangeOfPoint(playerid, 7.0,155.6681,-1966.2190,3.5834)) return SCM(playerid, COLOR_ERROR, "Nu esti la locatia potrivita.");
    new sanse = random(36);
    switch(sanse)
    {
        case 0..10:// 10% sanse
        {
            GiveMoney(playerid, 902000);
            SCM(playerid, COLOR_SUCCES, "Ai castigat: 902000$ din (Legendary Crate).");
        }
        case 11..20:// 9% sanse
        {
            GiveMoney(playerid, 1010000);
            SCM(playerid, COLOR_SUCCES, "Ai castigat: 1010000$ din (Legendary Crate).");
        }
        case 21..29://8%
        {
            GiveMoney(playerid, 1010000);
            SCM(playerid, COLOR_SUCCES, "Ai castigat: 1010000$ din (Legendary Crate).");
        }
        case 30..36://5%
        {
            GiveMoney(playerid, 2100000);
            SCM(playerid, COLOR_SUCCES, "Ai castigat: 2100000$ din (Legendary Crate).");
        }
    }
    return 1;
}

// modifici tu cum vr

 

YouTube : Click

Discord : CosminAK47#8524

Posted
Acum 2 ore, CosminAK47 a spus:

 

Multumesc frumos, chiar ma ajutat... Pe viitor o sa mai apelez cand am probleme, am mai vorbit cu tine acum ceva timp si m-ai ajutat mereu ❤️

  • Upvote 1

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
×
×
  • 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.