How to disable weapon pickup?
#5

And the switch aswell.
pawn Code:
if(GetPlayerWantedLevel(playerid) > 1)
    {
            switch( random(5) )
        {
            case 0: CreateAutoPickup(
                        ( pX + random( 5 ) ),
                        pY,
                        pZ,
                        PICKUP_MODEL_HEALTH,
                        100,
                        3,
                        GetPlayerInterior(playerid),
                        GetPlayerVirtualWorld(playerid),
                        10000);
            case 1: CreateAutoPickup(
                        ( pX + random( 5 ) ),
                        pY,
                        pZ,
                        PICKUP_MODEL_ARMOR,
                        100,
                        3,
                        GetPlayerInterior(playerid),
                        GetPlayerVirtualWorld(playerid),
                        10000);
            case 2: CreateAutoPickup(
                        ( pX + random( 5 ) ),
                        pY,
                        pZ,
                        PICKUP_MODEL_CASH,
                        103 + random( 1000 ),
                        3,
                        GetPlayerInterior(playerid),
                        GetPlayerVirtualWorld(playerid),
                        10000);
            case 3: CreateAutoPickup(
                        ( pX + random( 5 ) ),
                        pY,
                        pZ,
                        PICKUP_MODEL_PARACHUTE,
                        1,
                        3,
                        GetPlayerInterior(playerid),
                        GetPlayerVirtualWorld(playerid),
                        10000);
            case 4: CreateAutoPickup(
                        ( pX + random( 5 ) ),
                        pY,
                        pZ,
                        PICKUP_MODEL_JETPACK,
                        1,
                        3,
                        GetPlayerInterior(playerid),
                        GetPlayerVirtualWorld(playerid),
                        10000);
        }
    }
Reply


Messages In This Thread
How to disable weapon pickup? - by Sc0pion - 05.03.2015, 12:42
Re: How to disable weapon pickup? - by CalvinC - 05.03.2015, 12:43
Re: How to disable weapon pickup? - by Sc0pion - 05.03.2015, 13:28
AW: How to disable weapon pickup? - by Kaliber - 05.03.2015, 13:29
Re: How to disable weapon pickup? - by CalvinC - 05.03.2015, 13:31
Re: How to disable weapon pickup? - by Sc0pion - 05.03.2015, 13:34
Re: How to disable weapon pickup? - by CalvinC - 05.03.2015, 13:36
Re: How to disable weapon pickup? - by Sc0pion - 05.03.2015, 13:39
AW: Re: How to disable weapon pickup? - by Kaliber - 05.03.2015, 13:40
Re: AW: Re: How to disable weapon pickup? - by Sc0pion - 05.03.2015, 13:46

Forum Jump:


Users browsing this thread: 3 Guest(s)