Dead Rising Wiki
Line 517: Line 517:
 
==Creating a new Combo card==
 
==Creating a new Combo card==
 
[[File:combocard.png|thumb|right|combo item values]]
 
[[File:combocard.png|thumb|right|combo item values]]
If you want the weapon to be integrated inside the game a little better, the electribow can be a "combo item" by adding a combocard to the end of the electribow list of attributes. The title of the ComboCardItem can be edited and the 2 weapons needed to make the combo weapon. In this example, the "BowandArrow" was Weapon_1 and the "Battery" as Weapon_2.
+
If you want the weapon to be integrated inside the game a little better, the electribow can be a "combo item" by adding a combocard to the end of the electribow list of attributes in the [[Items.txt]] file. The title of the ComboCardItem can be edited and the 2 weapons needed to make the combo weapon. In this example, the "BowandArrow" was Weapon_1 and the "Battery" as Weapon_2.
   
 
You now have a fully functioning combo weapon that you can create in a Maintenance Room by combining a BowandArrow and Battery.
 
You now have a fully functioning combo weapon that you can create in a Maintenance Room by combining a BowandArrow and Battery.

Revision as of 06:31, 30 January 2011

Modifying PC Dead Rising 2
Dead Rising 2 PC Mods Forum

Performance Guide

Index of all mods on forum


Tutorials


   Opening files to edit (Gibbed)
   Debug Mode
   Swap characters (Model Swap)
   Import Models
    Mod:Dead Rising 1 Files
   Placing characters
     enlarging/ resizing characters
   Create Reskins
   Adding & removing items
     Coordinates/ Rotation
    Resize Enlarge items
   Changing Text
   Weapon modifications
   Texmod: Texmod installation
   Texmod: Download textures
   Texmod: Create Reskins
  Remove missing prop box

List of what each file does


  All game items (items.txt)
   Item animations (PyroEffect)
     Bigfile.xml
  All Game Text
  All Missions and cases (missions.txt)
   Times of all missions
    Mission breakdown
  All major packed files (big files)
    datafile.big
    Character models (npcs.big)
   Sgraph - animations
   HUD (game player's interface)
   Camera.txt (camera view)
   Lighting
  Zombie models
  Game rules (Frontend)
  Cutscenes (Cinematics.big)
  Environment
    Royal Flush
    Safe house
    Americana Casino
    Arena
   Collision - controls solid surfaces
   Excel coordinates of all areas

Tools


  See also Gibbed's and Texmod
   Hex Editor

   Infinity Mode
   Work in Progress Mods
   Zombie Mode

Template:Navbar

In Dead Rising 2 a modder can customize and create a new weapon.

Requirements

Basic knowledge of how to pack and unpack using Gibbed tools is necessary to unpack the files data\datafile.big and data\streamedassets.big.


Finding the weapon to modify

Decide which base weapon to work with. A full list of weapons is listed in items.txt.

In this example we will create a electribow, which was created using the Bow and Arrow as a base weapon.

In the collapsed folder below, are screenshots and the full text of the "BowandArrow" and "electribow", and "electricarrow" and "Arrow", also a new combo card.

Changing weapon's abilities

Unpack datafile.big with Gibbed's tool.

Inside the newly created datafile_big folder open items.txt. There is a list of all items in the game and all of their properties.

In each of the Bows' main titles they are listed as "cProjectileLauncherItem", meaning they are a weapon that throws props that do damage and don't necessarily do damage by themselves.

STEP 1: Copy and paste the weapon to modify

In order to create your own item, copy the base item (both the BowandArrow and Arrow) and paste it at the top of the list.

STEP 2: Rename the weapons with new titles

Rename your base item to your own item name ("electribow" and "electricarrow"). The name you give your item is the name that is stored in the game and the name you will need to use in order to place the item at a location.

cProjectileLauncherItem BowandArrow >> cProjectileLauncherItem electribow
cProjectileLauncherItem Arrow >> cProjectileLauncherItem electricarrow

Important: Everything is case sensitive, always pay attention to capitals. In the new electribow section find line "AssetFilename = "data/models/weapons/bowandarrow"". This value is where the game retrieves the items .big and .tex files which determine what it looks like and how it interacts with Chuck. Change this to the name of the new item, "electribow".

AssetFilename = "data/models/weapons/bowandarrow" >> AssetFilename = "electribow"
STEP 3: Change the number of arrows

"NumberOfThrowables = "20"" determines how many arrows Chuck can shoot out of his bow. Change this to 999.

NumberOfThrowables = "20" >> NumberOfThrowables = "999"
STEP 4: Change the type of arrow shot from the bow

Thus far you have made a new bow, but at the moment the bow just fires normal arrows, scroll down just a bit to "PropToThrow = "arrow"". This value determines what the bow will shoot. Change this to your own arrow, "electricarrow", this is the most important value to change since without it you would just be recreating a new bow.

PropToThrow = "arrow" >> PropToThrow = "electricarrow"
STEP 5: Range of arrows

"ThrowRange = "22.5"", increases the range of the arrows. This was not changed in this tutorial.

ThrowRange = "22.5" >> 	ThrowRange = "99"

Changing arrow's abilities

Itemelectricarrow

electricarrow from items.txt

With a ProjectileLauncher, its not the launcher that does the damage, its the projectile that does the damage.

STEP 6: Change the arrow's asset name

In the new electricarrow section within items.txt, like the bow, change the "AssetFilename = "data/models/weapons/bowandarrow" to "AssetFilename = "electricarrow"".

AssetFilename = "data/models/weapons/arrow"  >> AssetFilename = "electricarrow"

Customizing the weapon's abilities

What each value does

"MaxProjectileDamage", this value determines how much damage the arrow does when it hits a zombie.

MaxProjectileDamage = "22.5"

Right underneath MaxProjectileDamage are three "ProjectileHit" values, these are the hit reaction of the zombie and what they will do once hit.

	ProjectileFatalHitReaction = "50"
	ProjectileHitImpulse = "1.1"
	ProjectileHitReaction = "52"

Use the screenshot to the right for reference. All the "PropEffect" and "PyroEffect" values determine all the "sugar and spice" of the weapon, whether it adds damage or is just plain eye candy.

	PropEffectLocator0 = "16"
	PropEffectLocatorIndex0 = "0"
	PropEffectsOnCondition0 = "3"
	PyroEffect0 = "56"

There are up to 4 PyroEffects (PyroEffect0, PyroEffect1, PyroEffect2 , PyroEffect3) for each weapon/item.

"PyroEffects" determines what the weapon/item does. For example: "PropEffectDuration0" effects the duration of "PyroEffect0", only, NOT "PyroEffect1" "PyroEffect2" or "PyroEffect3"

Note: Already existing pyroeffects from other items are the only effects available

"PropEffectDuration" Determines the duration of the Effect
"PropEffectLocator" Determines where on the item the Effect shows up (default is usually 16)
"PropEffectsOnCondition" Determines what it takes to activate the effect

Making the arrow electric

Electric arrow

For the modified weapon's first PyroEffect (PyroEffect0), take the "PyroEffect0 = "213"" and all "PropEffect" values from "Tesla Ball" which is the lightning effect the weapon had when Chuck throws the ball. So all "PropEffects" with a "0" at the end affect the "PyroEffect0" attribute. This gives the arrow the lightning/electrocution effect.

Tesla Ball's electric values:

	PropEffectDuration0 = "4.5"
	PropEffectLocator0 = "16"
	PropEffectLocatorIndex0 = "1"
	PropEffectsOnCondition0 = "4"
	PropEffectStartDelay0 = "0.1"
	PyroEffect0 = "213"
Lightning effect when idle

Create a cool idle lightning effect when the arrow is not in use. Find the electrocution effect of the Electric Rake.

This is the item's "PyroEffect = "123"". Add this to the electricarrow as "PyroEffect1 = "123"".

PyroEffect0 = "123" >> PyroEffect1 = "123"

But currently this happens ONLY when Chuck hits a zombie with the rake. To make it occur constantly, look for an item that has a constant effect like the FlamingSword or FlamingGloves.

Take all of their "PropEffects" of the Flaming Gloves or Infernal Arms and add them to the electricarrow as "PropEffectLocator1", "PropEffectLocatorIndex1", and "PropEffectsOnCondition1".

PropEffectLocator1 = "16"
PropEffectLocatorIndex1 = "0"
PropEffectsOnCondition1 = "2"

The arrow now has an electric rake effect with constant properties similar to a Flaming Sword so that it doesn't need to be activated like the Tesla Ball.

Items' Big Files

Assets

streamedassets.big file

Previously this tutorial discussed changing the "AssetFilename" of each of the items. The files need to be put in the right place.

Unpack the Dead Rising 2\data\streamedassets.big file and open the newly created streamedassets_big folder.

Find the BowandArrow.big and the Arrow.big files, copy them.

Dynamicprops

Newly created dynamicprops folder

Return to the /data folder and create a folder and name it "dynamicprops". Open "dynamicprops". Paste both BowandArrow.big and Arrow.big files inside this folder.

These .big files must be renamed to whatever the new items are named: "BowandArrow" - "electribow", "Arrow" - "electricarrow". Remember, this is case sensitive.

Dynamicprops is the folder in which "AssetFilename" will look to find the .big and .tex files. As the screenshot shows, all of your custom weapons are here.

Item Placement

Itemplacement

Electic bow placed in Royal Flush Plaza

Now the new weapon has been created, it still needs to be placed in the game. Place it anywhere in the "royal_flush.txt" file inside datafile.big.

Deadrising2 2011-01-28 09-16-42-10

Placement of electribow

This places the weapon in the Boiler Room next to the safe house.

Creating a new Combo card

Combocard

combo item values

If you want the weapon to be integrated inside the game a little better, the electribow can be a "combo item" by adding a combocard to the end of the electribow list of attributes in the Items.txt file. The title of the ComboCardItem can be edited and the 2 weapons needed to make the combo weapon. In this example, the "BowandArrow" was Weapon_1 and the "Battery" as Weapon_2.

You now have a fully functioning combo weapon that you can create in a Maintenance Room by combining a BowandArrow and Battery.

Packing the modified files

Now the final step is to pack up datafile_big using Gibbed's tools. Delete "datafile_big" folder and "datafile.big" file. Next rename newly created "datafile_big.big" to "datafile.big".

Boot up the game and enjoy. You have now created and placed a new weapon into the game.

Video

Electicbow. Since the video was created I changed the idle PyroEffect to that what I explained in this tutorial.


Other created weapons

Gambitcards

Gambit's Cards

Here is another item created and completely gutted, to give you and idea on how much you can change.

Difficult and potentially impossible mods

Below are attempted weapons that failed horribly and will not work with the community's current knowledge of Modding:

  • Saber Bike - Motorcycle with Laser Light Swords to slice zombies
  • Zombie Launcher - Spear Thrower that launches zombies
  • Real Mega Buster from Dead Rising - this weapon is possible, or something similar, but nothing has been found that would appear as the actual Real Mega Buster. One of the the Trash Cans in the Royal Flush Plaza might work, but I couldn't find a way to shrink the size and rotate how Chuck holds it.