Help with Random Weapons
#1

Can enyone tell me how to give player Random Weapons if he spawns?
Reply
#2

Wrote a quick func for you not tested should work.

pawn Код:
stock GiveRandomWeapon(playerid)
{

    new rand_weapon = random( 42 );
   
    switch( rand_weapon )
    {
   
        case 0, 19, 20, 21://invalid ids, or unarmed. Add any weaponids you don't want here
        {
       
            rand_weapon = 22;//9mm change if you want
            GivePlayerWeapon( playerid, rand_weapon, 1000 );
        }
       
        default:
        {
            GivePlayerWeapon( playerid, rand_weapon, 1000 ); //or also create random ammo amt
        }
   
    }

}
EDIT: I also forgot to add satchel charges to invalid weapon case, IIRC they are not synced.
Reply
#3

thats right script
Reply


Forum Jump:


Users browsing this thread: 1 Guest(s)