Gaming Underground Network

Come for the mods, stay for the community
 
HomePortalLatest imagesInterviewsRegisterLog in
Search
 
 

Display results as :
 

 


Rechercher Advanced Search
Info Panel
______________
MOD MASTER THREADS:
FALLOUT
THE ELDER SCROLLS

______________


______________


GUNinsider
Fallout Miami: Mika999
Stay Connected

GUNetwork
Keywords
machine commonwealth Superpele wolfenstein body NPCs boomers mandalorian vault boom Reforged leon brotherhood Metal khan Ryse hunk dead Mask Gear power marvel riot money ghoul port
Latest topics
» Roland Deschain ist The Mysterious Stranger and other t
Changing Clip Size Code Emptyby SpaceRanger Mon Jul 22, 2024 10:15 am

» Guns you want in Fallout
Changing Clip Size Code Emptyby SpaceRanger Mon Jul 22, 2024 9:25 am

» [FO4] Doom 2016 models as replecement.
Changing Clip Size Code Emptyby SpaceRanger Sun Jul 21, 2024 9:12 am

» [FO4] Secret Service armor, helmet headlamp
Changing Clip Size Code Emptyby fossaceca17 Sun Jul 21, 2024 4:19 am

» The Legion are fascists, let's discuss it.
Changing Clip Size Code Emptyby Cipher22 Fri Jul 12, 2024 5:28 am

» The Next fallout
Changing Clip Size Code Emptyby Cipher22 Fri Jul 12, 2024 5:25 am

» Your favorite mods for F:NV
Changing Clip Size Code Emptyby Cipher22 Fri Jul 12, 2024 5:21 am

» Afterlife discord
Changing Clip Size Code Emptyby Willaemann Tue Jul 09, 2024 7:44 pm

» What happened to Outlawer's pack 1?
Changing Clip Size Code Emptyby Trappy82 Mon Jun 17, 2024 6:17 am

» Greetings
Changing Clip Size Code Emptyby septron Fri Jun 14, 2024 2:49 pm

» Starfield
Changing Clip Size Code Emptyby jaypak Mon Jun 10, 2024 9:56 am

» (Fo4) fo76 Steel Dawn Weapons and Armor ports
Changing Clip Size Code Emptyby RockstarAC16 Mon Jun 03, 2024 11:19 am

» Just a tired engineer with too little free time
Changing Clip Size Code Emptyby Lonesome_Wanderer Fri May 31, 2024 5:02 am

» Hello everyone. Looking to add classic Fallout in FO4
Changing Clip Size Code Emptyby Lonesome_Wanderer Fri May 31, 2024 4:53 am

» The Fallout TV show destroyed NV. I'm done with Todd.
Changing Clip Size Code Emptyby SpookyGeist Wed May 29, 2024 2:39 pm

» XHX Discord server.
Changing Clip Size Code Emptyby TheGoodKoosh Sat May 25, 2024 11:25 pm

» Weird bug or glitch with Console Command. [FNV]
Changing Clip Size Code Emptyby nickenicole47 Sat May 25, 2024 9:05 am

» What's your favorite weapon in the Fallout Series
Changing Clip Size Code Emptyby FellowHumanOfOutpost31 Thu May 23, 2024 5:32 pm

» (FO4) FO76 BOS Objects
Changing Clip Size Code Emptyby keelordd Wed May 22, 2024 8:53 am

» How to change the UI sound fx placed by a mod?
Changing Clip Size Code Emptyby immortallegion Mon May 13, 2024 12:40 am

July 2024
MonTueWedThuFriSatSun
1234567
891011121314
15161718192021
22232425262728
293031    
CalendarCalendar
_
July 2024
MonTueWedThuFriSatSun
1234567
891011121314
15161718192021
22232425262728
293031    
CalendarCalendar

Share
 

 Changing Clip Size Code

View previous topic View next topic Go down 
AuthorMessage
Gray Wolf

Gray Wolf

Posts : 23
Join date : 2015-01-16
Location : USA

Changing Clip Size Code Empty
PostSubject: Changing Clip Size Code   Changing Clip Size Code EmptySat Jul 04, 2015 11:24 pm

I've looked but can't find anything anywhere, and from the research I've done, I don't know how to implement the code I do know. I want to make a custom ammolist (easy), where if one type of ammo is chosen, there will be a clip size of ten, whereas if another type is chosen, the projectile, damage, sound, and clip size is changed. Anyone have any ideas on this? Thanks.
Back to top Go down
Guest
Guest
avatar


Changing Clip Size Code Empty
PostSubject: Re: Changing Clip Size Code   Changing Clip Size Code EmptySun Jul 05, 2015 12:47 am

Assuming you mean multiple variations of the same weapon (your post is somewhat vague in that regard) that each fire different kinds of projectiles, its fairly easy to do.

Using a 10mm pistol as an example, you would need to create:

10mm Pistol 'Master' weapon (this is the item you'd loot and select in your inventory)
10mmPistolSA (standard ammo)
10mmPistolIA (incendiary ammo)
10mmPistolEA (explosive ammo)

You would script the Master weapon so that selecting/equipping it brings up a list, allowing you to choose which version of the 10mm Pistol you want to use. Choosing one of the ammo types adds that weapon to your inventory with the player.additem command.

And because each 'ammo type' is actually a standalone weapon in the GECK/plugin, you could make those weapons as distinct as you want.  Model/texture, projectile type, ammo capacity, etc.
Back to top Go down
Gray Wolf

Gray Wolf

Posts : 23
Join date : 2015-01-16
Location : USA

Changing Clip Size Code Empty
PostSubject: Re: Changing Clip Size Code   Changing Clip Size Code EmptySun Jul 05, 2015 10:08 pm

Hey Tes. Nice avatar too! Ha ha!

Thanks for the response. Sorry for the lack of detail at the time. It was really late and I was about to pass out. What I am working on is a pistol with an underbarrel shotgun. By pressing UP on the D-Pad (or 2 if using a keyboard), one can switch the type of ammo they are using for a gun. I have that part figured out, so that the ammo available is either 10mm or 12ga.

Now, using the script functions "GetWeaponAmmo", "GetWeaponAmmoUse", "GetWeaponClipRounds", and/or "SetWeaponClipRounds", I'd like to make it so that when using the 10mm ammo, the clip size is 15, but when using the 12ga shells, it's only 1. I've never used those functions before, and haven't been able to find an example of how they are used. Hope that helps.


EDIT:

Ok, so I figured it out finally in order to be more productive. However, I'm still having trouble with the code (see below). When on the default ammo (9mm), I start with 10 rounds in a ten round magazine. I'll fire three shots, leaving me with 7 rounds left in the magazine. I switch to the shotgun ammo and the magazine capacity changes to 1. I fire one shot and then reload. Then I'll switch back to the 9mm ammo, and the magazine capacity changes back to 10. So far so good.

Now, when I switch back to the 9mm ammo, there is only one round in the magazine from when it was using the shotgun ammo. I have to reload like normal in order to refill the magazine. What is supposed to happen is that after the magazine capacity changes back to 10, the magazine should be reloaded back to the 7 rounds that were left over from before switching to the shotgun shells. This is the last part of this stage in the mod before I move on to changing other values (damage done, projectile used, firing sound, etc.) the same way.

Code:

scn GunScript

ref Gun
ref GunAmmoType

int CurrentAmmoLevel
int NewAmmoLevel

Begin GameMode

let Gun := Player.GetEquippedObject 5
let GunAmmoType := GetPlayerCurrentAmmo

set NewAmmoLevel to 1

if Gun == DoublePistol
   
   if GunAmmoType == Ammo9mm
      SetWeaponClipRounds 10 DoublePistol      ;Set Magazine Capacity to 10.
      
      if NewAmmoLevel == 0
         SetPlayerCurrentAmmoRounds CurrentAmmoLevel   ;Set Ammo Level to CurrentAmmoLevel.
         set NewAmmoLevel to 1
      EndIf

      set CurrentAmmoLevel to GetPlayerCurrentAmmoRounds   ;Set CurrentAmmoLevel to current ammo level.
   
   else
      SetWeaponClipRounds 1 DoublePistol      ;Set Magazine Capacity to 1.
      set NewAmmoLevel to 0
   EndIf

EndIf
   


END
Back to top Go down
Sponsored content




Changing Clip Size Code Empty
PostSubject: Re: Changing Clip Size Code   Changing Clip Size Code Empty

Back to top Go down
 

Changing Clip Size Code

View previous topic View next topic Back to top 
Page 1 of 1

 Similar topics

-
» [FO4] Wrist size being enlarged
» Changing the race of a companion
» [FNV] - Changing Goodsprings/Intro
» What do you use to reduce load order size?
» Changing races to companions

Permissions in this forum:You cannot reply to topics in this forum
Gaming Underground Network :: Fallout :: Troubleshooting-