Jump to content

Recommended Posts

Posted

salut. cand folosesc comanda /oplace si creez un cadou si intru in el sa iau banii nu merge.. iau cadoul dar nu primesc nimic..

poate aveti voi idei, multumesc astept raspunsuri !

Posted
7 minutes ago, Senal said:

Multumesc! Imi poti spune si cum fac? Numai tin minte deloc, m-am lasat 4 luni de sa-mp si am cam uitat, multumesc

new pickup_Cash;
new pickup_Health;
 
public OnGameModeInit()
{
    pickup_Cash = CreatePickup(1274, 2, 0.0, 0.0, 9.0);
    pickup_Health = CreatePickup(1240, 2, 0.0, 0.0, 9.0);
    return 1;
}
 
public OnPlayerPickUpPickup(playerid, pickupid)
{
    if(pickupid == pickup_Cash)
    {
        GivePlayerMoney(playerid, 1000);
    }
    else if(pickupid == pickup_Health)
    {
        SetPlayerHealth(playerid, 100);
    }
    return 1;
}

[e un exemplu]

Retras

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.