You are viewing our Forum Archives. To view or take place in current topics click here.
Bioshock programming help...
Posted:

Bioshock programming help...Posted:

iiMrG6
  • Challenger
Status: Offline
Joined: Nov 20, 201112Year Member
Posts: 172
Reputation Power: 6
Status: Offline
Joined: Nov 20, 201112Year Member
Posts: 172
Reputation Power: 6
hi,

I need some help with the weapon upgrade bindings. I know how and what to do but I must be going wrong some where. I make the file upgrades.txt with the code in a text document and then add that to programfiles/.../bishock/content/system. once I have done this I then go into the user/[my username]/appdata/roaming/bioshock.....then I come to a folder called user.ini. I edit the [default] section in the file.

it kinder looks like this(THIS IS THE PART OF THE FILE THAT I WANT TO BIND)everything up to F6 will be binded and also I think F8 and F9 for saves and loads:

F1=
F2=
F3=
F4=
F5=
F6=
F7=(this is the button I want to bind)exec upgrades.txt
F8=
F9=
F10=
F11=
F12=

not sure whether the upgrade.txt file is in the wrong location or if the code is spelt wrong??. I have successfully binded other code to the keys. e.g money, adam, health, etc.

please help.....

thanks

-iiMrG6
#2. Posted:
Mensch
  • V5 Launch
Status: Offline
Joined: Jan 03, 201113Year Member
Posts: 1,165
Reputation Power: 56
Status: Offline
Joined: Jan 03, 201113Year Member
Posts: 1,165
Reputation Power: 56
Maybe this will help you:

Weapon Upgrade Commands
1. Create "upgrades.txt" in \Content\System within your BioShock installation folder (i.e. C:\Program Files\2K Games\BioShock\Content\System). Add any of the codes listed below to upgrades.txt and save it. Be sure to preserve the spacing. Each code must be on its own line in the file. 2. Open User.ini in X:\Documents and Settings\[username]\Application Data\Bioshock for XP or X:\Users\[username]\AppData\Roaming\BioShock for Vista. You may need to enable viewing of hidden files and folders to find it. 3. Find the section entitled [Default]. 4. Within this section, find an unbound key that you want to use and bind it to the command "Exec upgrades.txt" (i.e. F7=Exec upgrades.txt). NOTE: If you give upgrades for a weapon you don't have yet, the upgrades will be applied when you pick up that weapon, so you don't have to wait to get a weapon before you upgrade it.

Effect Code
Gives the "Chemical Thrower Consupmtion Rate" upgrade. AddWeaponStatUpgrade ChemicalThrower ConsumptionRate
Gives the "Chemical Thrower Range" upgrade. AddWeaponStatUpgrade ChemicalThrower Range
Gives the "Crossbow Breakage Chance" upgrade. AddWeaponStatUpgrade Crossbow BreakageChance
Gives the "Crossbow Damage Increase" upgrade. AddWeaponStatUpgrade Crossbow Damage
Gives the "Grenade Launcher Damage Immunity" upgrade. AddWeaponStatUpgrade GrenadeLauncher Immunity
Gives the "Grenade Launcher Damage Increase" upgrade. AddWeaponStatUpgrade GrenadeLauncher Damage
Gives the "Machine Gun Damage Increase" upgrade. AddWeaponStatUpgrade MachineGun Damage
Gives the "Machine Gun Kickback Reduction" upgrade. AddWeaponStatUpgrade MachineGun Kickback
Gives the "Pistol Clip Size" upgrade. AddWeaponStatUpgrade Pistol MagazineSize
Gives the "Pistol Damage Increase" upgrade. AddWeaponStatUpgrade Pistol Damage
Gives the "Shotgun Damage Increase" upgrade. AddWeaponStatUpgrade Shotgun Damage
Gives the "Shotgun Rate of Fire" upgrade. AddWeaponStatUpgrade Shotgun RateOfFire

Source
http://www.gamefaqs.com/pc/924919-bioshock/cheats
#3. Posted:
iiMrG6
  • Challenger
Status: Offline
Joined: Nov 20, 201112Year Member
Posts: 172
Reputation Power: 6
Status: Offline
Joined: Nov 20, 201112Year Member
Posts: 172
Reputation Power: 6
thanks, a different source told me the wrong code.
Jump to:
You are viewing our Forum Archives. To view or take place in current topics click here.