Skyrim Creation Kit Add Item To Player Inventory

Jan 29, 2014 Skyrim Creation Kit Tutorial - Containers, Giving and Receiving Items from Inventories. Player Receives an item from NPC. Creating an Item and adding it to the World and a NPC - Duration: 8.

  1. The Creation Kit tutorials offer a host of various tips, tricks and guides on how to get the most out of Bethesda's modding software. In today's tutorial; Ho.
  2. Player.additem Add an item to the inventory. For example, to add 100 gold to the inventory, use player.additem f 100: player.addperk Adds the perk. Addshout Add shout to one's skill list. Shouts are also part of spells, so in order for this command to work the spells will need to already be unlocked.

Now, we will finally begin to work with the Creation Kit to create our own items. Anyone who owns Skyrim already owns the Creation Kit. You simply need to download it through the tools section in your Steam Library. Once you have the Creation Kit installed and launched, you are ready to begin the tutorial.

In this tutorial, I will show you how to create a sword.

Step 1: Loading the Skyrim Master File

The easiest way to create your own items is to edit a current item. To do this, we will first load up the Skyrim master file so we can see all the items in the game.

  1. Go to File>Data…
  2. A new window should open up called “Data.”
  3. Double click on the square next to “Skyrim.esm” so that a black “x” appears. See Figure 1.
  4. Hit “OK.”
  5. After a few moments, a prompt should appear, press “Yes to all.”

Figure 1: Load the Skyrim master file so that we can base our mod off of existing items.

The Creation Kit will freeze up for a few moments as it loads the file.

Step 2: Finding the Item to Edit

Once the Creation Kit has finished loading the master file, your ‘Object Window’ should be now be populated with a huge amount of objects.

  1. In your “Object Window”, go to Items>Weapon>WEAPONS.
  2. In the “Filter” type in “ironsword”.

Near the bottom of the list, you should see “IronSword”. See Figure 2.

Figure 2: Here is where the IronSword object is located.

Step 3: Editing the Item

If you double click on the “IronSword” it will bring up the item’s object window where you can edit nearly every aspect of the weapon. However, for the purposes of this tutorial we will only be concerned with a few of these fields.

  • ID: This is the string that the game uses to identify the item in the Creation Kit.
  • Name: This is the name of the item as it will appear in-game and in menus.
  • Value: This is the base price of the item.
  • Weight: This is the base weight of the item.
  • Speed: This is the base attack speed of the weapon.
  • Damage: This is the base damage of the weapon.
  • Crit % Mult: This affects how often the weapon will score a critical strike.
  • Crit Dmg: This is how much additional damage the weapon does on a critical strike.

Figure 3 shows the ModSword object window with these fields filled out with my customized stats.

Step 4: Saving our Mod

Once you are satisfied with the stats on your weapon, you are ready to save your new mod.

  1. Hit “OK” on the item’s object window.
  2. Hit “Yes” on the prompt to create a new form for the item (unless you want to overwrite the existing item).
  3. Search for “ModSword” in the “Filter” and our new item should appear.
  4. Go to File>Save.
  5. Save our mod as “ModSword.esp”.

Now, our mod should show up in our SkyrimData folder as “ModSword.esp”.

Step 5: Loading up our Mod

Now, if we launch the Nexus Mod Manager, our mod should appear in the “Plugins” list. Simply click the check box next to your plugin to ensure that the game will load your mod. See Figure 4.

Skyrim Creation Kit Add Item To Player Inventory Free

Skyrim Creation Kit Add Item To Player Inventory

Figure 4: Our ModSword is now loaded into Skyrim's mod load order.

Finally, you are now ready to launch Skyrim and play with your new item.

Inventory

In order to obtain your item simply:

ItemAdd
  1. Load a saved game.
  2. Press the tilde (~) key to bring up the console window.
  3. Type the following exactly as it appears: help “mod sword” 4
  4. Take note of the string of letters and numbers that appears next to the name of our item.
  5. Give yourself the item by typing the console command: player.additem <ITEM ID> <NUMBER OF ITEMS>

Figure 5 shows what our weapon looks like in-game.

Add Item Menu Skyrim

Figure 5: Our newly created (and overpowered) sword.

Skyrim Creation Kit Add Item To Player Inventory Guide

Congratulations! You have successfully created your first mod!