Thread: semi auto smg

Results 1 to 4 of 4
  1. #1
    jimmynguyen3030's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Location
    NukeTown
    Posts
    263
    Reputation
    10
    Thanks
    18
    My Mood
    Bored

    semi auto smg

    is it possible to make a smg semi auto?

  2. #2
    EpicPlayer's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    628
    Reputation
    13
    Thanks
    158
    You mean in some style like burst-firing? ;p

    It is, here's probaly the noobyest way to do it xD

    Code:
    SuperBadBurstWeapon()
    {
    	self endon("death");
    
    
                        self maps\mp\perks\_perks::givePerk("specialty_fastreload");
    	self giveWeapon("ump45_mp");
    	self GiveMaxAmmo("ump45_mp");
    
    	self setWeaponAmmoClip("ump45_mp", 1);
    
    	for(;;)
    	{
    		stock = self getWeaponAmmoStock("ump45_mp");	
    
    		self waittill("weapon_fired");
    
    		if(self getCurrentWeapon() == "ump45_mp")
    		{
    	                        self setClientDvar("perk_weapReloadMultiplier", 0.1);
    			while(self getWeaponAmmoClip("ump45_mp") == 0)
    			{
    				wait .05;
    			}
    			self setWeaponAmmoClip("ump45_mp", 1);
    			self setWeaponAmmoStock("ump45_mp", stock - 1);
    		}
    		wait .05;	
    	}
    }
    Just some crap to show, not somenthing I would use xD

  3. #3
    idiot2010's Avatar
    Join Date
    Sep 2010
    Gender
    male
    Posts
    174
    Reputation
    9
    Thanks
    6
    My Mood
    Paranoid
    i think he mean making SMG to shoot like Fal,
    lol

  4. #4
    EpicPlayer's Avatar
    Join Date
    Nov 2010
    Gender
    male
    Posts
    628
    Reputation
    13
    Thanks
    158
    Yeah I got it, that's the closest thing we can do without mod tools O_o