Results 1 to 8 of 8
  1. #1
    Mizzle420420's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    Korriban
    Posts
    838
    Reputation
    18
    Thanks
    1,096
    My Mood
    Twisted

    Cool DayZ Standalone SQF Tutorials and Resources: ClassNames - Ammo Types

    Quote Originally Posted by Kosmo View Post

    Mind telling me the shotgun bullet class name?
    Hey guys today I'm going to be releasing a list of Ammo Types I gathered from the DayZ Standalone PBOs.

    Credits:
    Reverse, Research, and Composition - Mizzle420420
    Source - Bohemia Interactive Studios

    Note: These are not the Loot Classnames for ammo, These are the ClassNames for Ammo when it is fired from a Weapon.

    These have a lot of uses for both Memory and SQF.

    Awhile ago we discovered that Ammo Types of a Weapon can be changed quite easily in memory with a simple string change.

    Example:

    Find String - MeleeFist

    Change to - B_12Gauge_Slug

    Thus making you shoot Shotgun Slugs from your fists every time you punch.

    Code:
    Projectiles = 
    {
    	A_composite
    	A_crude
    	A_primitive
    	A_Boned
    	A_bolt
    	B_Flare
    	B_22_Ball
    	B_380_Ball
    	B_9mm_Ball
    	B_9x39_AP
    	B_357
    	B_45ACP_Ball
    	B_545X39_Ball
    	B_556X45_Ball
    	B_762X39_Ball
    	B_762x54_Ball
    	B_308Win_Ball
    	B_12Gauge_Pellets
    	B_12Gauge_Slug
    };
    Melee = 
    {
    	MeleeFist
    	MeleeDamage
    	MeleeProd
    	MeleeLightBlunt
    	MeleeSoft
    	MeleeFist
    	MeleeZombie
    	MeleeZombieMale
    	MeleeZombieMaleSoldier
    	MeleeZombieFemale
    	MeleeZombieMaleLong
    	MeleeZombieMaleSoldierLong
    	MeleeZombieFemaleLong
    	MeleeSlash
    	MeleeStab
    	MeleeBlunt
    	MeleeMachete
    	MeleeBat
    	MeleeHeavybat
    	MeleeAxe
    	MeleeFireaxe
    	MeleeChainsaw
    };	
    Explosions = 
    {
    	LaserBombCore
    	FuelExplosion
    };



    P.S.

    "Maybe you should do research? " - Kosmo 10/26/2015

    ^This guy lol

  2. #2
    |Infinity|'s Avatar
    Join Date
    Oct 2015
    Gender
    male
    Posts
    8
    Reputation
    10
    Thanks
    3
    Here's the Ammo Classnames

    Code:
    Ammo =
    {
    ammo_22_50rnd
    ammo_22 ammo_45fmj 
    ammo_556  ammo_762
    ammo_12ga_pellets
    ammo_12ga_slug
    ammo_357
    shotgunbase
    ammo_556_20rnd
    ammo_762_20rnd
    ammo_762x39
    ammo_762x39_20rnd
    ammo_357_20rnd
    ammo_45acp_25rnd
    ammo_9mm
    ammo_380
    ammo_flare
    ammo_545
    ammo_308win
    ammo_9x39
    };
    I believe these are all of them if i'm correct.
    Last edited by |Infinity|; 10-29-2015 at 07:36 AM.

  3. #3
    Mizzle420420's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    Korriban
    Posts
    838
    Reputation
    18
    Thanks
    1,096
    My Mood
    Twisted
    Quote Originally Posted by |Infinity| View Post
    Here's the Ammo Classnames

    Code:
    Ammo =
    {
    ammo_22_50rnd
    ammo_22 ammo_45fmj 
    ammo_556  ammo_762
    ammo_12ga_pellets
    ammo_12ga_slug
    ammo_357
    shotgunbase
    ammo_556_20rnd
    ammo_762_20rnd
    ammo_762x39
    ammo_762x39_20rnd
    ammo_357_20rnd
    ammo_45acp_25rnd
    ammo_9mm
    ammo_380
    ammo_flare
    ammo_545
    ammo_308win
    ammo_9x39
    };
    I believe these are all of them if i'm correct.

    Whats that shotgun base doing in there
    Last edited by Mizzle420420; 10-29-2015 at 07:56 AM.

  4. #4
    Jun19972's Avatar
    Join Date
    Dec 2013
    Gender
    male
    Posts
    202
    Reputation
    10
    Thanks
    39
    My Mood
    Paranoid
    knowing from my last experience with messing around with bullet types MineCore still worked should add that to the list of explosions plus the flashbang is fun to fuck with
    What Comes with power comes great responsibility - Talkin about you NormenJay

  5. #5
    liroy142's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    36
    Reputation
    10
    Thanks
    1
    How i can make unlimited ammo/dupe my self

    I got executer.

    i just need the code

  6. #6
    Smoke's Avatar
    Join Date
    Nov 2014
    Gender
    male
    Posts
    11,899
    Reputation
    2661
    Thanks
    4,610
    My Mood
    Amazed
    Quote Originally Posted by liroy142 View Post
    How i can make unlimited ammo/dupe my self

    I got executer.

    i just need the code
    Use the "Search" function in the DayZ section, to find what you need.
    https://gyazo.com/b361695738a022f8ab5361539b659690


    CLICK TO BUY NOW!!


    Quote Originally Posted by Liz View Post
    This is my first vouch, ever. Rapidgator account worked perfectly. Would buy in the future.

  7. #7
    Mizzle420420's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    Korriban
    Posts
    838
    Reputation
    18
    Thanks
    1,096
    My Mood
    Twisted
    Quote Originally Posted by Smoke View Post
    Use the "Search" function in the DayZ section, to find what you need.
    https://gyazo.com/b361695738a022f8ab5361539b659690
    In this case the search function is not going to help for unlimited ammo, I don't think there are any tutorials here on how to do this in standalone. I will say it is not simple and not many people have the ability to make unlimited mags, I personally only know a handful of people that can. As far as dupe goes, there are many tutorials on how to do it both with script and just by glitching with out cheats.

  8. #8
    Mizzle420420's Avatar
    Join Date
    Feb 2013
    Gender
    male
    Location
    Korriban
    Posts
    838
    Reputation
    18
    Thanks
    1,096
    My Mood
    Twisted
    These are the newer Explosions.

    Code:
    G_GrenadeHand
    G_FlashGrenadeHand
    G_SmokeGrenadeHand

Similar Threads

  1. [Tutorial] DayZ Standalone SQF Tutorials and Resources: ClassNames - Objects and Bases
    By Mizzle420420 in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 16
    Last Post: 02-03-2016, 12:10 PM
  2. Replies: 0
    Last Post: 05-18-2015, 03:15 PM
  3. [WTS] Selling A Steam Account With Dayz Standalone Arma 2 and more
    By keival in forum Selling Accounts/Keys/Items
    Replies: 0
    Last Post: 04-26-2014, 02:41 PM
  4. [WTS] Steam Account with DayZ Standalone, Arma III, and other titles
    By 3kc in forum Elite Selling / Trading / Buying
    Replies: 8
    Last Post: 03-10-2014, 03:51 PM
  5. [Tutorial] DAYZ STANDALONE Weapon Duplicate and other stuff =)
    By boj in forum DayZ Mod & Standalone Hacks & Cheats
    Replies: 3
    Last Post: 02-09-2014, 07:19 AM

Tags for this Thread