Advertisement
PikaNikz

Skyrim Console Class 101

Feb 7th, 2012
1,806
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 46.91 KB | None | 0 0
  1. by PikNik/VividAxis/Team ZRO
  2.  
  3. This is a primer to teach you some of the basics of what you can do with the Console and I will give you a few code lists.
  4.  
  5. Contents:
  6. Remove Furniture /Objects /People
  7. Add Furniture /Objects /People
  8. Moving and Resizing Objects
  9. Add Items to Inventory
  10. Console Map Codes
  11. How to Own Any House
  12. Items That Can Be Disenchanted
  13. Make Someone Your Follower
  14. Base Id and Reference Id
  15. How To Console-Enchant Items
  16. Increase/Decrease Stats
  17. Non-360 Items
  18. Load Screen Item Codes
  19. Persuade, Intimidate and Bribe
  20. Changing the TimeScale
  21. Sex/Race/Name Change
  22. Powers and Blessings
  23. Batch Files
  24. Interesting Object Codes
  25. The Vivid Rings
  26. What Are Those #'s For?
  27. Renaming Items
  28. Custom Commands
  29. Player Movement Speed
  30. Change Race (Play as a Dragon, or a Chicken, or whatever)
  31. Resurrection
  32. QA Smoke
  33. More Interesting Object Codes
  34. How to Fix A Negative Gold Amount
  35. Player Miscellaneous Stats
  36. Easy Rotate Objects
  37.  
  38. Thanks to Rhyme for posting the "Play as a Dragon" information in an earlier topic.
  39.  
  40.  
  41. Remove Furniture /Objects /People
  42. Open the Console by pressing the ~ key near the top left of your keyboard. Click on the item you want to remove. You will see it's code id in the center of the top of the Console panel. Type "MarkForDelete" press the Enter key, then type "Disable" and press the Enter key.
  43.  
  44.  
  45. Add Furniture /Objects /People
  46. Player.PlaceAtMe <itemcode>
  47. will create an object where you are standing.
  48. Opening the Console and clicking an item in the world then typing:
  49. PlaceAtMe <itemcode>
  50. will create an object at the location of the item you clicked.
  51. Object codes can be found with the Help command. Type:
  52. Help Chest 0
  53. then use the PageUp and PageDown keys to look through the list for the code you want. You will not see a list if you have the game in windowed mode. You have to fullscreen it. This is because the font they use does not scale with screen size and when the window is small you simply can't see the lists it returns when you use Help.
  54.  
  55.  
  56. Moving and Resizing Objects
  57. To move an object, open the Console and click the item. It's code will be shown at the top/center of the Console panel. Items that you create will always start with "ff". Use the following commands to move objects:
  58. GetPos X
  59. GetPos Y
  60. GetPos Z
  61. SetPos X <value>
  62. SetPos Y <value>
  63. SetPos Z <value>
  64. GetAngle X
  65. GetAngle Y
  66. GetAngle Z
  67. SetAngle X <value>
  68. SetAngle Y <value>
  69. SetAngle Z <value>
  70. GetScale
  71. SetScale <value>
  72. It is very time consuming to place objects exactly where you want them to be.
  73. The Angle commands do not redraw the object. It will appear that you have done nothing to them. Use the SetScale or SetPos command to force a redraw. SetScale 1 is the default. You can SetScale 5 or SetScale .01 or whatever you want it to be. I assume there is a limit on how big it can be. I've never needed to go above 5.
  74.  
  75.  
  76. Add Items to Inventory
  77. Player.AddItem itemid quantity
  78. You can find item codes here: http://www.uesp.net/wiki/Skyrim:Items
  79. To give yourself 18 Green Apples you would type:
  80. Player.AddItem 64B2F 18
  81.  
  82.  
  83. Console Map Codes
  84. TMM = Toggle Map Markers
  85. The command line: TMM A B C
  86. A = 0 is hide, 1 is show
  87. B = 0 is no fast travel (grey), 1 is fast travel (white)
  88. C = 0 is all except hidden, 1 is all including hidden
  89. Examples:
  90. TMM 0 0 0 #Hide all markers
  91. TMM 1 0 0 #Show all markers and do not set new locations for fast travel
  92. TMM 1 1 1 #Show all markers and set all locations for fast travel
  93.  
  94.  
  95. How To Own Any House
  96. Open the Console and type
  97. SetCellOwnership <locationcodename>
  98. You can enter this command from anywhere, you don't have to be at the location, but I like to go there when I do it so I can see that the containers and items are no longer are marked as stealing. You can find location codenames at http://www.uesp.net/ . And you can live anywhere - caves and mines and everything else. Some locations that contain people may have issues like the people may take things from your containers. You may want to remove them with the "MarkForDelete" and "Disable" commands, but be aware that any relative quests may be ruined when you remove important people.
  99. examples:
  100. SetCellOwnership WhiterunJorrvaskr
  101. SetCellOwnership WhiterunJorrvaskrBasement
  102. SetCellOwnership RoriksteadFrostFruitInn
  103. SetCellOwnership RiverwoodSleepingGiantInn
  104.  
  105.  
  106. Items That Can Be Disenchanted
  107. You can't fill your Enchant list (like you can the Skills) by simply typing in commands. But I have made a list of items that cover every unique Enchantment that can be disenchanted so you can learn how to make other items like it. This is my script:
  108. #This script adds one item of each type that can be disenchanted.
  109. #Unique
  110. Player.AddItem 0AE087 1 #Extra Damage To Nords
  111. Player.AddItem 0AE086 1 #Extra Damage To Animals
  112. Player.AddItem 03B0BF 1 #Silent Moons
  113. Player.AddItem 024CFF 1 #Fortify Smithing
  114. Player.AddItem 1019D4 1 #Fortify Smithing and Shock Damage
  115. Player.AddItem 10A06A 1 #Fortify Unarmed
  116. #Weapons
  117. Player.AddItem 0AA16F 1 #Absorb Health
  118. Player.AddItem 0AA172 1 #Absorb Magicka
  119. Player.AddItem 0AA175 1 #Absorb Stamina
  120. Player.AddItem 0BE189 1 #Banish
  121. Player.AddItem 08970B 1 #Fear
  122. Player.AddItem 0896AE 1 #Fire Damage
  123. Player.AddItem 0896bd 1 #Frost Damage
  124. Player.AddItem 0896D5 1 #Magicka Damage
  125. Player.AddItem 0BE197 1 #Paralyze
  126. Player.AddItem 0896C9 1 #Shock Damage
  127. Player.AddItem 0896EA 1 #Soul Trap
  128. Player.AddItem 0896FF 1 #Stamina Damage
  129. Player.AddItem 0896F3 1 #Turn Undead
  130. #Clothing
  131. Player.AddItem 08b667 1 #Fortify Alchemy
  132. Player.AddItem 0b972e 1 #Fortify Alteration
  133. Player.AddItem 10d669 1 #Fortify Alteration with Regenerate Magicka
  134. Player.AddItem 0b9743 1 #Fortify Archery
  135. Player.AddItem 10df4b 1 #Fortify Barter
  136. Player.AddItem 0ad448 1 #Fortify Block
  137. Player.AddItem 0accbb 1 #Fortify Carry Weight
  138. Player.AddItem 0b9734 1 #Fortify Conjuration
  139. Player.AddItem 10d66a 1 #Fortify Conjuration with Regenerate Magicka
  140. Player.AddItem 0b9737 1 #Fortify Destruction
  141. Player.AddItem 10d668 1 #Fortify Destruction with Regenerate Magicka
  142. Player.AddItem 10df57 1 #Fortify Healing Rate
  143. Player.AddItem 0b971c 1 #Fortify Health
  144. Player.AddItem 0accc1 1 #Fortify Heavy Armor
  145. Player.AddItem 08b6b1 1 #Fortify Illusion
  146. Player.AddItem 10d671 1 #Fortify Illusion with Regenerate Magicka
  147. Player.AddItem 0b971f 1 #Fortify Light Armor
  148. Player.AddItem 0b9740 1 #Fortify Lockpicking
  149. Player.AddItem 08b6b4 1 #Fortify Magicka
  150. Player.AddItem 100e59 1 #Fortify Magicka Rate
  151. Player.AddItem 0accce 1 #Fortify One-Handed
  152. Player.AddItem 0b9749 1 #Fortify Pickpocket
  153. Player.AddItem 08b6ba 1 #Fortify Restoration
  154. Player.AddItem 10d66b 1 #Fortify Restoration with Regenerate Magicka
  155. Player.AddItem 0accd1 1 #Fortify Smithing
  156. Player.AddItem 0accbf 1 #Fortify Sneak
  157. Player.AddItem 10df8c 1 #Fortify Stamina
  158. Player.AddItem 10df5b 1 #Fortify Stamina Regen
  159. Player.AddItem 0accd2 1 #Fortify Two-Handed
  160. Player.AddItem 092a75 1 #Muffle
  161. Player.AddItem 100e64 1 #Resist Disease
  162. Player.AddItem 0b9710 1 #Resist Fire
  163. Player.AddItem 0b9713 1 #Resist Frost
  164. Player.AddItem 10dfb6 1 #Resist Magic
  165. Player.AddItem 0fc03d 1 #Resist Poison
  166. Player.AddItem 0b9716 1 #Resist Shock
  167. Player.AddItem 0fc067 1 #Waterbreathing
  168.  
  169.  
  170. Make Someone Your Follower
  171. Open the Console and click the person. Their id will be displayed at the top/center of the Console panel. Then type these commands:
  172. SetRelationshipRank 14 3
  173. AddToFaction 5C84D 3
  174. AddToFaction 5A1A4 3
  175.  
  176. That will add the dialogue option, something like "I need your help. Follow me." if it is possible to add it. Certain people like guild members require you to be a member in their faction before they will follow you. There are 1084 Factions. All of them are listed here:
  177. http://skyrim.mmo-game.eu/lists-npcs-and-factions/#faction
  178. A few useful one's are:
  179. 0005C84D #Potential Follower
  180. 00019809 #Potential Marriage
  181. 0003692E #Dungeon Creatures
  182. 0005A1A4 #Player Ally
  183. 000E0CD9 #Bandit Ally
  184. 000E0CDA #Warlock Ally
  185. 000E0CDB #Draugr Ally
  186.  
  187. If you want to make a copy of someone and have that clone follow you, you would type:
  188. Player.PlaceAtMe <npc id>
  189. To get the NPC id, search for the character on the webpage I linked above. There are 5118 of them. You can not make animals or creatures follow you.
  190.  
  191. You can also use faction codes on yourself. You could type:
  192. Player.AddToFaction 3692E 3
  193. to add yourself to the Dungeon Creatures faction and they would no longer attack you.
  194. To remove a faction you use a -1 instead of the 3 at the end. 0 is the lowest rank. 3 is the highest in most cases.
  195. Player.AddToFaction 3692E -1
  196.  
  197.  
  198. Base Id and Reference Id
  199. This applies to NPC's, Objects, Items, and all other physical objects in the world. It has nothing to do with spells and effects. Imagine this. You have a folder on your desktop that is full of text files. Each text file contains all of the information about a single physical object that can be created. The names of those text files are like Base Id's. When you create one of those in the world (i.e. you drag the file to the desktop) it makes a copy of it (like a Shortcut in Windows). The shortcut on your desktop would be the Reference Id. Confused yet? All you need to know is that when you want to alter something that already exists in the world you will be using the Reference Id. And when you want to make something new, you need to use the Base Id.
  200. Example:
  201. When you're on a character page like http://www.uesp.net/wiki/SkyrimDerkeethus you will see both Id numbers listed.
  202. If you want to alter the guy named Derkeethus as he was created by the game, you would use the reference id 1B08D. To give him an apple you would type:
  203. 1B08D.AddItem 64B2F 1
  204. But if you want to make a new copy of him you would use his Base Id 1403E.
  205. Player.PlaceAtMe 1403E
  206. Then you would click him to get his new Reference Id.
  207. Each new copy has it's own reference Id.
  208. Id's of Objects that you create will always start with "ff".
  209.  
  210.  
  211. How To Console-Enchant Items
  212. It's very simple. Type:
  213. PlayerEnchantObject <objectid> <enchantment1> <enchantment2>
  214. Notice there is no . after Player in this command.
  215. Items that you make this way will be added to your inventory.
  216. The object id's can be found at:
  217. http://www.uesp.net/wiki/Skyrim:Items
  218. The enchantment id's can be found at:
  219. http://www.uesp.net/wiki/Skyrim:Enchanting_Effects
  220. You don't have to type anything for enchantment2 if you don't want it.
  221. Items made this way can not be disenchanted to learn their effects.
  222. You can also look through this list:
  223. http://skyrim.mmo-game.eu/lists-all-spells-enchants-magic-effects/
  224. of Magic and Spell Effects. Some of them work, some don't. Most with "FFSelf" in the title can be used on clothing, and most with "FFContact" in the title can be used on weapons.
  225. You can not add an enchantment on an object that already has an enchantment.
  226. You can not name items you create this way. They will have the original item name.
  227. Some of the effects don't have text with them so it may appear that the item is not enchanted when you look at it in the inventory.
  228. Some of the effects will say they have a 0 duration but they will last as long as you have the ring on.
  229. The effectiveness/power of the items you enchant with the console depends on your Enchanting skill level. If you want to make a powerful item for someone you will need to increase their Enchanting stat, make the item, then reset their Enchanting stat.
  230.  
  231.  
  232. Increase/Decrease Stats
  233. To see what value you already have, type:
  234. Player.GetAv <attribute>
  235. Attribute codes can be found at:
  236. http://www.uesp.net/wiki/Tes5Mod:Actor_Value_Indices
  237. To set it to a new value you would type:
  238. Player.SetAv <attribute> <value>
  239. examples:
  240. Player.SetAv CarryWeight 800
  241. Player.SetAv Health 500
  242. Player.SetAv Enchanting 9001
  243. Player.SetAv DragonSouls 100
  244.  
  245. The codes listed on that page that have a Type of "AI" or "Status" can not be changed. A Type of "unk" means Unknown, or rather the people who contribute to that site have not fully tested those yet.
  246.  
  247.  
  248. Non-360 Items
  249. These things can not be obtained in the game without the console, or they can not be kept after a quest, or they are very very rare. When you create them with these codes they are not marked as quest items and can not be used for quests. The weapons and armor can be used/worn. I did not include items that can not be equipped by the player. There are things like the Greybeard clothing that I think can be forcefully added to a player with [Player.EquipItem <itemid>] but I have not tested those so I didn't list them.
  250.  
  251. 0003a3d2 #Blank Lexicon
  252. 000ae087 #Briarheart Geis
  253. 00028ad7 #Broken Azura's Star
  254. 0010cfef #Brown Robes
  255. 00019954 #Bust of the Gray Fox
  256. 0010d6a5 #College Robes
  257. 00044e12 #Curious Silver Mold
  258. 00073f38 #Deadly Lingering Poison
  259. 00073f94 #Deadly Recovery Poison
  260. 000df202 #Dragonstone
  261. 0005598c #Dwemer Puzzle Cube
  262. 000ffa01 #Elixir of Enhanced Stamina
  263. 000ff9fd #Elixir of Extra Magicka
  264. 000ff9fc #Elixir of Health
  265. 00039e55 #Elixir of Resist Magic
  266. 000e84c4 #Embellished Robes
  267. 000ead49 #Embroidered Garment
  268. 00060cc2 #Empire Shipping Map
  269. 00073f3d #Enduring Magicka Poison
  270. 00073f45 #Enduring Stamina Poison
  271. 0003ec95 #Firebrand Wine Case
  272. 0009f7a6 #Focusing Crystal
  273. 000cdec9 #Giant Club
  274. 000461da #Giant Club
  275. 000c334f #Giant Club
  276. 0010cff0 #Green Robes
  277. 0010cff1 #Grey Robes
  278. 000be25e #Headsman's Axe
  279. 0010710a #Hooded Blue Robes
  280. 0010cfe4 #Hooded Brown Robes
  281. 0010cfec #Hooded Green Robes
  282. 0010cfea #Hooded Grey Robes
  283. 0010cfeb #Hooded Red Robes
  284. 0007c932 #Hoodless Archmage's Robes
  285. 000dc530 #Imperial Documents
  286. 0004bce0 #Jarrin Root
  287. 00035073 #Jeweled Amulet
  288. 00044e67 #Jeweled Flagon
  289. 00044e6c #Jeweled Goblet
  290. 00044e6e #Jeweled Pitcher
  291. 000deed8 #Karliah's Bow
  292. 0001be15 #Kothyr's Head
  293. 00073f3e #Lasting Magicka Poison
  294. 00073f46 #Lasting Stamina Poison
  295. 0003a3e4 #Lexicon
  296. 00073f91 #Magicka Recovery Poison
  297. 00073f37 #Malign Lingering Poison
  298. 00073f93 #Malign Recovery Poison
  299. 00073f8e #Malign Vigor Poison
  300. 000d3de9 #Mantled College Robes
  301. 0010d691 #Mantled College Robes
  302. 0010d6a4 #Mantled College Robes
  303. 00041f95 #Mark of Dibella
  304. 000240d6 #Mehrunes' Razor Scabbard
  305. 00037ce9 #Mercer's Plans
  306. 0004e4e6 #Meridia's Beacon
  307. 0006f266 #Model Ship
  308. 0004de5b #Nahkriin's Dragon Priest Staff
  309. 0010cee5 #Novice Robes
  310. 000c4f2e #Nurelion's Mixture
  311. 0003e6bb #Opaque Vessel
  312. 0003e6bc #Opaque Vessel
  313. 0008d770 #Opaque Vessel
  314. 00044e65 #Ornate Drinking Horn
  315. 0004286c #Pelagius' Hip Bone
  316. 00073f3f #Persisting Magicka Poison
  317. 00073f47 #Persisting Stamina Poison
  318. 0002baab #Pest Poison
  319. 0003eaff #Philter of Enhanced Stamina
  320. 0009e01f #Potema's Skull
  321. 00073f92 #Potent Recovery Poison
  322. 00073f8d #Potent Vigor Poison
  323. 0010e039 #Prisoner's Cuffs
  324. 00065b9b #Psiijic Boots
  325. 00065b9d #Psiijic Gloves
  326. 00065B99 #Psiijic Hood
  327. 00065B94 #Psiijic Robes
  328. 00019958 #Queen Bee Statue
  329. 000c04bb #Quill of Gemination
  330. 0010cff2 #Red Robes
  331. 000e0dd0 #Redguard Clothes
  332. 000e84c6 #Refined Tunic
  333. 0003a3dd #Runed Lexicon
  334. 000457ab #Sealed Scroll
  335. 000c7cbd #Sheogorath Boots
  336. 000c7cbb #Sheogorath Outfit
  337. 000f1491 #Silver Hand Stratagem
  338. 0002ac62 #Sinding's Skin
  339. 000dc52e #StormCloak Documents
  340. 00026c31 #Tolfdir's Alembic
  341. 000a34f8 #Torc of Labyrinthian
  342. 00094e40 #Treated Soul Gem
  343. 0005bf19 #Tsun's Battle Axe
  344. 0005bf16 #Tsun's Battle Axe
  345. 0005bf1a #Tsun's Battle Axe
  346. 0005bf18 #Tsun's Battle Axe
  347. 00073f40 #Unceasing Magicka Poison
  348. 00073f48 #Unceasing Stamina Poison
  349. 0005661f #Unknown Potion
  350. 0002c25c #Unmelting Snow
  351. 0009dfbb #Unusual Gem
  352. 000fe6a9 #Werewolf Pelt
  353. 000e3146 #Werewolf Totem
  354. 000e3147 #Werewolf Totem
  355. 000e3148 #Werewolf Totem
  356.  
  357.  
  358. Load Screen Item Codes
  359. These objects will stay exactly wherever you place them when you use the SetPos/SetAngle commands. Even if you place them in the air. They don't move by normal player interaction. The Dragon Skull is the only one I've noticed that does have collision detection, but it is also unmovable without SetPos/SetAngle. You would use these versions of the objects for decoration only.
  360.  
  361. For instance Potema's Skull as a usable item is 9E01F. You can grab and move that with your normal player abilities. But if you want a larger version of her skull to mount on a wall, then you would use 10D181. The LoadScreen shields, armor, stones, altars, etc. do not function in any way.
  362.  
  363. 00000DE9 #Ritual
  364. 00000DE8 #Mage
  365. 00000DE7 #Lover
  366. 00000DE6 #Lord
  367. 00000DE5 #Lady
  368. 00000DE4 #Boethiah
  369. 00000DE3 #Atronach
  370. 00000DE2 #Apprentice
  371. 00000DE1 #Warrior
  372. 00000DE0 #Tower
  373. 00000DDF #Theif
  374. 00000DDE #Steed
  375. 00000DDD #Shadow
  376. 00000DDC #Serpent
  377. 0010FCD6 #Helmet Studded
  378. 0010FCD5 #Helmet Steel
  379. 0010FCD4 #Helmet NordPlate
  380. 0010FCD3 #Helmet Glass
  381. 0010FCD2 #Helmet Elven
  382. 0010FCD1 #Helmet Elbony
  383. 0010FCD0 #Helmet Draugr
  384. 0010FCCF #Helmet Dragonscale
  385. 0010FCCE #Helmet Daedric
  386. 0010DDCC #Metal Cage
  387. 0010F18C #Nord
  388. 0010F130 #Imperial Shield
  389. 0010F12F #Iron Shield Heavy
  390. 0010F12E #Steel Shield
  391. 0010F12D #Orcish Shield
  392. 0010EB01 #Dark Elf
  393. 0010E861 #Town
  394. 0010E860 #Market
  395. 0010E85F #Smith
  396. 0010E85E #Adventure
  397. 0010E85D #War
  398. 0010E85C #Reagent
  399. 0010E85B #Money
  400. 0010E85A #Thief
  401. 0010E859 #Sinister
  402. 0010E858 #Shops Magic
  403. 0010E70C #Female Imperial
  404. 0010E70B #Troll Clean
  405. 0010E43A #Male High Elf
  406. 0010DEA5 #Book Skyrim
  407. 0010DE98 #Khajiit Thief
  408. 0010DE97 #Falmer
  409. 0010D9B1 #Thalmor Boots
  410. 0010D9B0 #Argonian Barkeep
  411. 0010D3BC #Female Wood Elf
  412. 0010D18B #Soul Gem Grand
  413. 0010D18A #Dark Brotherhood Door
  414. 0010D189 #Spell Tome Alteration
  415. 0010D188 #Spell Tome Conjuration
  416. 0010D187 #Spell Tome Destruction
  417. 0010D186 #Spell Tome Illusion
  418. 0010D185 #Spell Tome Restoration
  419. 0010D183 #Stormcloak Helmet
  420. 0010D182 #Imperial Helmet
  421. 0010D181 #Potemas Skull
  422. 0010D180 #Gray Fox Bust
  423. 0010CDD3 #Redguard Male
  424. 0010CDC0 #Male Orc
  425. 0010CC50 #Glass Shield
  426. 0010CC42 #Helmet Blades
  427. 0010CC3F #Horker
  428. 0010CC3D #Companions Helm
  429. 0010CC3C #Dragon Skull
  430. 0010CC39 #Whiterun Shield
  431. 0010CC38 #Windhelm Shield
  432. 0010CC37 #Winterhold Shield
  433. 0010CC36 #Dawn Star Shield
  434. 0010CC35 #Falkreath Shield
  435. 0010CC34 #Hjaalmarch Shield
  436. 0010CC33 #Markarth Shield
  437. 0010CC32 #Solitude Shield
  438. 0010CC31 #Spellbreaker
  439. 0010CC2E #Riften Shield
  440. 0010CC2D #Breton Mage
  441. 0010C6DD #Skeleton
  442. 0010C6DC #Odahviing (dragon)
  443. 0010C6D9 #Bone Crown
  444. 0010C6CE #Dragonscale Cuirass
  445. 0010C6CD #Elven Shield
  446. 0010C6CC #Daedric Shield
  447. 0010C6CA #Dragonscale Shield
  448. 0010C629 #Statue of Ysgramor
  449. 0010C623 #Runed Stand
  450. 0010C622 #Mask Altar
  451. 0010C620 #Dwarven Armor
  452. 0010C61D #Frost Dragon
  453. 0010C61C #Swamp Dragon
  454. 0010C618 #Wind Caller Tomb
  455. 0010BFC3 #Spriggan
  456. 0010BFC2 #Draugr Female
  457. 0010BFBC #Argonian
  458. 0010BFBB #Black Briar Meadery Sign
  459. 0010BFB8 #Grey Beard Static
  460. 0010BFB7 #Instruments
  461. 0010BFB6 #Coffin
  462. 0010BEA6 #Greybeard
  463. 0010B2CE #Nocturnal Statue
  464. 0010B177 #Nord Plate Cuirass
  465. 0010B174 #Coffin
  466. 0010B16A #Thief Stone
  467. 0010AB3D #Hagraven
  468. 0010AB3A #Troll Cave
  469. 0010A965 #Cow
  470. 0010A963 #Alduin (dragon)
  471. 0010A17C #Werewolf
  472. 0010A17B #Statue of Namira
  473. 0010A17A #Statue of Meridia
  474. 0010A177 #Malacath Statue
  475. 0010A170 #Churus
  476. 0010A16F #Mudcrab
  477. 0010A169 #Bronze Dragon
  478. 0010A166 #Horses
  479. 0010A165 #Sabre Cat
  480. 0010A164 #Slaughter Fish
  481. 0010A163 #Frostbite Spider
  482. 0010A162 #Dwarven Spider
  483. 0010A161 #Dragon Priest
  484. 0010A160 #Wolves
  485. 0010A15F #Dog
  486. 0010A15E #Horse and Rider
  487. 0010952C #Hagraven
  488. 0010952B #Draugr Male
  489. 00109529 #Bear Brown
  490. 00109528 #Falmer
  491. 00109522 #Mammoth
  492. 0010951F #Deer
  493. 0010951E #Troll
  494. 0010951D #Steam
  495. 0010951C #Sphere
  496. 0010951B #Skeever
  497. 00109518 #Clavicus Vile Mask
  498. 00109515 #Logo
  499. 00109512 #Shrine of Azura
  500. 0010950F #Potions
  501. 001091DF #Shrine of Talos
  502. 001091DE #Shrine of Stendarr
  503. 001091DD #Shrine of Mara
  504. 001091DC #Shrine of Kynareth
  505. 001091DB #Shrine of Julianos
  506. 001091DA #Shrine of Dibella
  507. 001091D9 #Shrine of Arkay
  508. 00108D6D #Alchemy Workbench
  509. 00108D6C #Shrine of Akatosh
  510. 00108D6A #Enchanting Workbench
  511. 00108D69 #Whiterun Temple Tree
  512. 00108D67 #Giant
  513.  
  514.  
  515. Persuade, Intimidate and Bribe
  516. Persuade chance depends only on the Speech level. Intimidate chance depends on your Speech level and your character level. Bribe either works or doesn't and it depends on the character you're talking to. To make Persuade work every time you would increase Speech to anything over 100 and you should be okay. You could also grant the 13 Speech Perks for extra bonuses. If your Speech is 200 and you have all Speech Perks then I would guess that Intimidate would always work no matter what character level you are at. I can't imagine Intimidate not working if you set your Speech to 900.
  517.  
  518.  
  519. Changing the TimeScale
  520. Set TimeScale To 20 #default
  521. Set TimeScale To 1 #exact
  522.  
  523. Changing the time scale does not effect movement speed. The timescale is set to 20 by default and it can be lowered to 1 at which the game clock is exactly like the real world clock. Do not set the TimeScale to a value less than 1. Personally I think 20 is very rushed - you do one thing then it's night already. I played at 10 for a few weeks and enjoyed it then I changed it to 5 and I feel that's perfect (that's 1 hour real time = 2.5 hours game time). At that point there is enough time in the day to make it feel real.
  524.  
  525. If you increase it too much it can possibly hinder some quests that depend on you being somewhere at a specific time, like getting married. At a time scale of 1000 the hours will fly by but the sky is okay. I wouldn't recommend going above 2000. Around 3000 is enough to cause a seizure. Plus it has to be killing the processor. At a time scale of 10,000 when the sun sets your eyes don't have enough time to adjust to the darkness before the sun rises again, making the game almost unplayable.
  526.  
  527.  
  528. Sex/Race/Name Change
  529. Simply type: ShowRaceMenu
  530. to open the menu that you use at the be beginning of the game to create your character. You can change anything about how your character looks. You can also change the name without changing your appearance.
  531.  
  532.  
  533. Powers and Blessings
  534. To add one you will type:
  535. Player.AddSpell <spellid>
  536. You can find Power Spell Ids at
  537. http://www.uesp.net/wiki/Skyrim:Powers
  538. and Blessing Spell Ids:
  539. http://www.uesp.net/wiki/Skyrim:Blessings
  540. You can have any of them. For instance you don't have to be an Argonian to have the Waterbreathing Power and you don't have to be a Nord to have Battle Cry.
  541.  
  542.  
  543. Batch Files
  544. You can type almost any command into a Notepad file and run that in the Console. It will execute each command. Simply type:
  545. Bat filename
  546. The script file must be in the directory where TESV.exe is located. I have Windows 7 and my copy of Skyrim is from Steam: [C:\Program Files (x86)\Steam\SteamApps\common\skyrim\].
  547. You can name the file whatever you want. The extension of the filename does not matter. (I don't use a file extension for the scripts I make.) If the filename includes spaces you will need to encapsulate it with quotes like:
  548. Bat "Skyrim Script - Add All Skills.txt"
  549.  
  550.  
  551. Interesting Object Codes
  552. BAD0C #Alchemy Table
  553. BAD0D #Enchanting Table
  554. D54FF #Alchemy Top
  555. D5501 #Enchanting Top
  556. D932F #Workbench
  557. 1A2AD #Anvil
  558. BBCF1 #Skyforge
  559. 6E9C2 #Grindstone
  560. 727A1 #Tanning Rack
  561. 9C6CE #Smelting Oven
  562. 7022E #Wood Chopping Block
  563. DB358 #Standard Chest
  564. 800E0 #Safe
  565. AF6AC #Apothecary’s Satchel
  566. 10E882 #Barrel
  567. 75CE6 #Festus Krex (Dead Body/Container)
  568. B7879 #Knapsack
  569. c0305 #Suspicious Cabinet
  570. c0306 #False Back Panel
  571. 107354 #Throne Dawnstar
  572. 107352 #Throne Falkreath
  573. 107351 #Throne Hjaalmarch
  574. 1075FE #Throne Markarth
  575. 107355 #Throne Riften
  576. 7FBC2 #Throne Solitude
  577. 107353 #Throne Winterhold
  578. 10F636 #Throne Windhelm
  579. B244B #Throne Whiterun
  580. 267D3 #Throne Shadow
  581. 5E511 #Throne Shor
  582. 985C2 #Throne Ship Katariah
  583. B11A7 #Pumpkin (Friendly Fox)
  584. C2CD6 #Chest of All Standard Armor
  585. C2CD7 #Chest of All Enchanted Armor
  586. C2CD8 #Chest of All Clothing and Jewelry
  587. C2CE0 #Chest of All Standard Weapons
  588. C2CDF #Chest of All Enchanted Weapons
  589. C2CDE #Chest of All Staffs
  590. C2CD4 #Chest of All Ammo
  591. C2D3B #Chest of All Books
  592. 10D9FF #Chest of All Skill Books
  593. C2CD9 #Chest of All Spell Tomes
  594. C2CE2 #Chest of All Potions
  595. C2CE1 #Chest of All Scrolls
  596. C2CDA #Chest of All Ingredients
  597. C2CDD #Chest of All Soul Gems
  598. C2CDB #Chest of All Keys
  599. C2CDC #Chest of All Misc Items
  600. DBB2B #Create Dragonflies
  601. 6B45C #Create Dragonflies
  602. C9AF7 #Create Dragonflies and Fireflies
  603. DDF4C #Create Fireflies
  604. A914E #Create Bees
  605. D96C2 #Create One Nocturnal Insect
  606. D96C3 #Create Many Nocturnal Insects
  607. C5208 #Create One Daytime Insect
  608. C51FF #Create Few Daytime Insects
  609. C5209 #Create Many Daytime Insects
  610. 6B2FF #Create Shallow Pond Insects and Fish
  611. 6B45B #Create Small Pond Insects and Fish
  612. 6B44D #Create Deep Pond Insects and Fish
  613. DE190 #Eye Of Magnus Orb
  614. F147E #Eye Of Magnus Dias
  615. 106AD9 #Eye Of Magnus Light Effects
  616. 100754 #Dragon Word Wall Broken
  617. 3171C #Dragon Word Wall Normal
  618. 70BB9 #Pre Civial War Skyrim Map
  619. 70BC2 #Civial War Skyrim Map
  620. A59B0 #Dark Brotherhood Stained Glass
  621. B8248 #Dark Brotherhood Tenets
  622. 62311 #Ulfric Stormcloak’s Boots
  623. 6230B #Ulfric Stormcloak’s Bracers
  624. 62303 #Ulfric Stormcloak’s Clothes
  625. F9670 #Ulfric Stormcloak’s Gag (can only be equipped with EquipItem. can be used on NPC's)
  626. A59B0 #Dark Brotherhood Stained Glass
  627. 1092A3 #Winterhold College Symbol
  628. 1006F0 #Labyrinthian Maze Tablet Destruction
  629. 1006F1 #Labyrinthian Maze Tablet Restoration
  630. 1006F9 #Labyrinthian Maze Tablet Alteration
  631. 1006F8 #Labyrinthian Maze Tablet Illusion
  632. 10EA43 #Markarth Banner
  633. C5891 #Large Disaply Case
  634. 7D67B #Summerset Banner
  635. C275B #Light Ritual Evil
  636. C1E2C #Light Soft Blue No Shadow
  637. 88C9A #Light Dwarven Warm No Shadow
  638. 88CF3 #Light Dwarven Warm With Shadow
  639. 88245 #Light Default White With Shadow
  640. FFF4E #Nocturnal Statue
  641. FFF4F #Nocturnal Basin
  642. D068D #Mage Statue
  643. 54E16 #Dwarven Repository Exterior
  644. 101CFD #Dwarven Repository Interior
  645. DB9D6 #Blackreach Sun
  646. D927F #Wall Mounted Bear 1
  647. D9281 #Wall Mounted Bear 2
  648. D9282 #Wall Mounted Bear 3
  649. D9276 #Wall Mounted Goat
  650. D927D #Wall Mounted Horker
  651. D9285 #Wall Mounted Mudcrab
  652. D9287 #Wall Mounted Skeever
  653. D9288 #Wall Mounted Wolf 1
  654. D9289 #Wall Mounted Wolf 2
  655. D928D #Wall Mounted Sabre Cat 1
  656. D928F #Wall Mounted Sabre Cat 2
  657.  
  658. #Full Building Exteriors
  659. 8E2CE #Blue Palace
  660. B9582 #Black-Briar Meadery
  661. F03D2 #Black-Briar Lodge
  662. 108CF2 #Destroyed Farm
  663. 100D99 #Vittoria Vici House
  664. 917D6 #House Grey Mane
  665. F2402 #Rifton Warehouse
  666. F2403 #Rifton Fishery
  667. F2404 #Rifton Meadery
  668. F2405 #Rifton Orphanage
  669. F2406 #Rifton Blacksmith
  670. F2408 #Rifton Player House
  671. F03D5 #Rifton Meadery
  672. F1D04 #Farm Longhouse
  673. C0C2D #Haretino's House
  674. C0C2E #Viola Giordano's House
  675. C0C2F #Clan Cruel Sea
  676. 7AC6B #Shipwreck
  677. E76E7 #Dwarven Farm 1
  678. E7417 #Dwarven Farm 2
  679. 8E2D8 #Vittoria Vici's House
  680. 8E2D7 #The Winking Skeever
  681. 8E2D6 #Styrrs's House
  682. 8E2D5 #Raidiant Raiments
  683. 8E2D4 #Museleum
  684. 8E2D3 #House For Sale
  685. 8E2D2 #Apothecary
  686. 8E2D1 #Evette San's House
  687. 8E2D0 #Erikur's House
  688. 8E2CF #Bryling's House
  689. 8E2CD #Bits and Pieces
  690. 8E2CC #Bards College
  691.  
  692. #Animated Spell FX objects seen in menus
  693. A6459 #Summon
  694. A59AE #Illusion Dark
  695. A59AD #Illusion Light
  696. A59AC #Unrelent Spell
  697. A0E7F #Light Spell
  698. A0E7E #Ward Spell
  699. A0E7D #Heal Spell
  700. 9FA64 #Shock Spell
  701. 9DB72 #Ice Spell
  702. 10FEF4 #Absorb
  703. 10F0FF #Shout Kynes
  704. 10F0FE #Shout Ice
  705. 10F0FD #Shout Slow Time
  706. 10F0FC #Shout Frost
  707. 10F0FB #Shout Blue Magic
  708. 10F0FA #Shout Purple
  709. 10EA49 #Shout Etherial
  710. 10EA48 #Shout Self White
  711. 10EA47 #Shout Pink Magic
  712. 10EA46 #ShoutFire
  713. 10AB43 #Bound Weapon
  714. 10A046 #Paralyze
  715. 109AC3 #Invisibility
  716. 109AC2 #Alteration
  717. 1097CD #Banish
  718. 1097CC #Reanimate
  719. 1097CB #Telekinesis
  720. 1097CA #Turn Undead
  721. 104F70 #Detect Life
  722.  
  723.  
  724. The Vivid Rings
  725. These are custom rings that I make. They are not found anywhere in the game. I've spent a lot of time making and testing rings and these are my favorites. You can give any of these rings to a follower. They will all be named Gold Ring. The Vampire ring will turn you into a vampire. The Permanent Werewolf ring is Permanent! The Skeever ring is permanent too, and it turns you into a Skeever. When you use the Weather rings: put them on then take them off - you don't want to wear them constantly because the weather activation code would be running in the background over and over. The same goes for the Poison and Disease ring. Put it on, exit inventory, then take the ring off. The Bodyguards ring gives you a Dragon Priest and Dremora Lord. Waterhop lets you jump on top of the water. The effect will say "Waterwalk" but they didn't make that work properly before releasing the game. You slowly sink if you don't jump.
  726.  
  727. PlayerEnchantObject 1CF2B 10DDED 10FC12 #Ring of Bodyguards
  728. PlayerEnchantObject 1CF2B 81182 81181 #Ring of Boethiah's Shadow Embrace
  729. PlayerEnchantObject 1CF2B 1EA6C #Ring of Candlelight
  730. PlayerEnchantObject 1CF2B 109ADD AE722 #Ring of Cure Diseases and Poisons
  731. PlayerEnchantObject 1CF2B 64D68 #Ring of Ethereal
  732. PlayerEnchantObject 1CF2B 640B4 #Ring of Familiar
  733. PlayerEnchantObject 1CF2B 1EA6A #Ring of Invisibility
  734. PlayerEnchantObject 1CF2B 1EA6A 1EA6C #Ring of Invisibility and Candlelight
  735. PlayerEnchantObject 1CF2B 1EA6A 6B10C #Ring of Invisibility and Nighteye
  736. PlayerEnchantObject 1CF2B 6B10C #Ring of Night Eye
  737. PlayerEnchantObject 1CF2B E3CBB 7B6BA #Ring of Party Time
  738. PlayerEnchantObject 1CF2B E3CBB BF742 #Ring of Party Time 2
  739. PlayerEnchantObject 1CF2B 92C45 #Ring of Permanent Werewolf Form
  740. PlayerEnchantObject 1CF2B 6E205 #Ring of Permanent Skeever Form
  741. PlayerEnchantObject 1CF2B 4E945 CDECF #Ring of Double Flame Thralls
  742. PlayerEnchantObject 1CF2B CDED0 CDED1 #Ring of Frost Storm Thralls
  743. #use Ring of Vampire 2. it's much better.
  744. #PlayerEnchantObject 1CF2B C4DDE #Ring of Vampire
  745. PlayerEnchantObject 1CF2B 10DE17 FD80B #Ring of Vampire 2
  746. PlayerEnchantObject 1CF2B 8CAC9 #Ring of Waterhop
  747. PlayerEnchantObject 1CF2B 78B9D #Ring of Clear Weather
  748. PlayerEnchantObject 1CF2B E3F0A #Ring of Stormy Weather
  749. PlayerEnchantObject 1CF2B 104D4A 7F423 #Ring of Frost and Storm Effects
  750. PlayerEnchantObject 1CF2B EBEA8 EB86E #Ring of Necro Effects
  751. PlayerEnchantObject 1CF2B 106E1D 9B2B3 #Ring of Suicide
  752. PlayerEnchantObject 1CF2B 103647 #Ring of Ghostveil
  753. PlayerEnchantObject 1CF2B F71D2 #Ring of Draugr Eyes
  754. PlayerEnchantObject 1CF2B E3CBA #Ring of Slow Walk
  755. PlayerEnchantObject 1CF2B 9AA37 #Ring of Spriggan Swarm
  756. PlayerEnchantObject 1CF2B 10D96B 10D96C # Ring of Well Rested Lover’s Comfort
  757.  
  758. #You will still look like a ghost after removing the Ghost rings listed below.
  759. #Use [Player.SetActorAlpha 100] to set your transparency to normal.
  760. #360 players can not undo the effects of these rings.
  761. PlayerEnchantObject 1CF2B 1034CB #Permanent Purple Ghost
  762. PlayerEnchantObject 1CF2B 5030E #Permanent Blue Ghost
  763. PlayerEnchantObject 1CF2B D339A #Permanent White Ghost
  764. PlayerEnchantObject 1CF2B ED5FF #Permanent Fire Ghost
  765. PlayerEnchantObject 1CF2B D339E #Permanent Storm Ghost
  766. PlayerEnchantObject 1CF2B ED600 #Permanent Frost Ghost
  767.  
  768.  
  769. What are those #'s for?
  770. One very basic thing I should have mentioned somewhere above is all of the # symbols. In a batch script file we can use the # to make a comment to ourselves. Example:
  771.  
  772. # i'm testing this script file bat thing people are talking about on gamefaqs
  773. Player.SetAv Health 9999 #make me invincible
  774. #give myself Unnliimiiited Powwwwer!
  775. Player.SetAv Magicka 9999
  776. Player.SetAv Desctruction 9999
  777. Player.SetAv Stamina 9999 #i'll never walk anywhere again
  778.  
  779. Nothing after the #'s will be executed as code. Only the SetAv commands will run. I help xbox 360 gamers with their save files on another site and I like to have my reusable scripts formatted for easy viewing, so I use the Tab key to align my comments after commands in a column on the right. If you do that you must have a space before the #. All Tab characters are ignored when a script file is executed by the Bat command.
  780.  
  781.  
  782. Renaming Items
  783. You can not rename items with the Console. You can not name items when you create them with PlayerEnchantObject.
  784.  
  785. I have tried:
  786. PlayerEnchantObject itemcode enchant1 enchant2 test
  787. PlayerEnchantObject itemcode enchant1 enchant2 "test"
  788. PlayerEnchantObject itemcode enchant1 enchant2 1 test
  789. PlayerEnchantObject itemcode enchant1 enchant2 1 "test"
  790. PlayerEnchantObject itemcode enchant1 enchant2 0 test
  791. PlayerEnchantObject itemcode enchant1 enchant2 0 "test"
  792. PlayerEnchantObject itemcode enchant1 test enchant2
  793. PlayerEnchantObject itemcode test enchant1 enchant2
  794. PlayerEnchantObject test itemcode enchant1 enchant2
  795. PlayerEnchantObject itemcode enchant1 "test" enchant2
  796. PlayerEnchantObject itemcode "test" enchant1 enchant2
  797. PlayerEnchantObject "test" itemcode enchant1 enchant2
  798. PlayerEnchantObject itemcode enchant1 enchant2 0 0 test
  799. PlayerEnchantObject itemcode enchant1 enchant2 0 1 test
  800. PlayerEnchantObject itemcode enchant1 enchant2 1 0 test
  801. PlayerEnchantObject itemcode enchant1 enchant2 1 1 test
  802. PlayerEnchantObject itemcode enchant1 enchant2 0 0 "test"
  803. PlayerEnchantObject itemcode enchant1 enchant2 0 1 "test"
  804. PlayerEnchantObject itemcode enchant1 enchant2 1 0 "test"
  805. PlayerEnchantObject itemcode enchant1 enchant2 1 1 "test"
  806.  
  807. None of those worked so I believe the PlayerEnchantObject command does not accept a string value. The Enchanting Table must use a command (or internal code) that does accept a string (i.e. text to use for a name). If we could somehow force or call the table to create an item, maybe we could pass it a string. I've researched this as much as I can and I've found a lot of topic where people couldn't rename items with the Console in Skyrim, Oblivion, Morrowind, Fallout 3, and Fallout New Vegas. If there is a way to rename items in the Console, no one has found it yet.
  808.  
  809.  
  810. Custom Commands
  811. I wrote before about batch files but there's another way to use them that is very useful. You can create your own commands.
  812. Copy these 3 lines of code and paste them into a Notepad file.
  813. SetRelationshipRank 14 3
  814. AddToFaction 5c84d 3
  815. AddToFaction 5a1a4 3
  816. Save that text file wherever your TESV.exe is. Mine is at C:\Program Files (x86)\Steam\SteamApps\common\skyrim\ . Rename the text file to remove the .txt at the end. Name it something simple like "Follower". From now on in the Console you can click on anyone and type: bat follower. And they will become your follower. You can do this with any code that you use often. And you can have your batch files call other batch files.
  817.  
  818. I have a funny one called: slave
  819. bat follower
  820. RemoveAllItems
  821. EquipItem F9670 #Ulfric’s Gag
  822. EquipItem 10E039 #Prisoner's Cuffs
  823. EquipItem 3CA00 #Footwraps
  824.  
  825. Another funny one I made was: RazCheese
  826. #idea by RazgrizInferno
  827. PlaceAtMe 64B31 100 #add goat cheese wedges to clicked object
  828.  
  829.  
  830. Player Movement Speed
  831. To see what your current movement speed is:
  832. Player.GetAv SpeedMult
  833. It will be 100 by default.
  834. I play at 60. It feels realistic and I can still gracefully dodge arrows and most projectile magic.
  835. You can enchant a clothing/armor/jewelry item with E3CBA (dunSleepingTreeSlowAlch) to give yourself a way to toggle your max speed. To set the power of the item, see the notes in this topic about Console-Enchanting.
  836.  
  837.  
  838. Change Race (Play as a Dragon or chicken or whatever)
  839. Thanks to Rhyme for posting how to do this (in a previous topic).
  840. Player.SetRace racename
  841. will change your race or you can open the Console, click on a person and type:
  842. SetRace racename
  843.  
  844. The camera does not work well with many of them when you change your own race. I changed M'aig into a mudcrab then set his scale to 2. He still talks like M'aig but he also will burrow into the ground like a mudcrab to rest. I tried to change him and other people into a fox but they become invisible. I set myself as a dragon and the camera was okay. You can't fly or jump and your weapons and armor are hanging below you. It's worth seeing at least once but I'm not sure you would want to play through the game like that. The camera was bad when I was a giant, a mammoth, a chicken and a cow.
  845.  
  846. Valid Race Codes:
  847. alduinrace
  848. argonianrace
  849. argonianracevampire
  850. atronachflamerace
  851. atronachfrostrace
  852. atronachstormrace
  853. bearblackrace
  854. bearbrownrace
  855. bearsnowrace
  856. bretonrace
  857. bretonracechild
  858. bretonracechildvampire
  859. bretonracevampire
  860. C00giantoutsidewhiterunrace
  861. C06wolfspiritrace
  862. carthorserace
  863. chaurusrace
  864. chaurusreaperrace
  865. chickenrace
  866. cowrace
  867. DA03barbasdograce
  868. DA13afflictedrace
  869. darkelfrace
  870. darkelfracevampire
  871. deerrace
  872. defaultrace
  873. dogcompanionrace
  874. dograce
  875. dragonpriestrace
  876. dragonrace
  877. draugrmagicrace
  878. draugrrace
  879. dremorarace
  880. dunmiddenemptyrace
  881. dwarvencenturionrace
  882. dwarvensphererace
  883. dwarvenspiderrace
  884. elderrace
  885. elderracevampire
  886. elkrace
  887. falmerrace
  888. foxrace
  889. frostbitespiderrace
  890. frostbitespiderracegiant
  891. frostbitespiderracelarge
  892. giantrace
  893. goatdomesticsrace
  894. goatrace
  895. hagravenrace
  896. harerace
  897. highelfrace
  898. highelfracevampire
  899. horkerrace
  900. horserace
  901. icewraithrace
  902. imperialrace
  903. imperialracechild
  904. imperialracevampire
  905. invisiblerace
  906. khajiitrace
  907. khajiitracevampire
  908. magicanomalyrace
  909. mammothrace
  910. manakinrace
  911. MG07dograce
  912. mudcrabrace
  913. nordrace
  914. nordraceastrid
  915. nordracechild
  916. nordracevampire
  917. orcrace
  918. orcracevampire
  919. redguardrace
  920. redguardracechild
  921. rigidskeletonrace
  922. sabrecatrace
  923. sabrecatsnowyrace
  924. skeeverrace
  925. skeeverwhiterace
  926. skeletonnecropriestrace
  927. skeletonnecrorace
  928. skeletonrace
  929. slaughterfishrace
  930. sprigganmatronrace
  931. sprigganrace
  932. sprigganswarmrace
  933. swarmrace
  934. trollfrostrace
  935. trollrace
  936. undeaddragonrace
  937. werewolfbeastrace
  938. whitestagrace
  939. wisprace
  940. wispshaderace
  941. witchlightrace
  942. wolfrace
  943. woodelfrace
  944. woodelfracevampire
  945.  
  946.  
  947. Resurrection
  948. If you want to bring someone back to life, you can. First you need to find their body. Everyone that you kill in this game is transported to a place called WIDeadBodyCleanupCell. To get there you can type:
  949. COC WIDeadBodyCleanupCell
  950. It looks like this at the beginning of the game: http://image.bayimg.com/oamkiaadh.jpg
  951. Do not alter the guy there named Malborn.
  952. It's it's someone that you did not kill you can type:
  953. TCL
  954. MoveTo NPCid
  955. You can get NPC id's at http://www.uesp.net/ . Search for the person and you will find their RefId on that page. Don't use the BaseId.
  956. Once you have located the person, open the Console and click them. Their Id will be locked into the top center of the Console panel. Type:
  957. Resurrect
  958. That's it. They are alive again. If they are in the Cleanup Cell simply use the MoveTo command and they will be placed onto the Skyrim map wherever they belong and will resume their normal activities.
  959. To get yourself out of the Cleanup Cell you can COC to any location like: COC Whiterun
  960.  
  961.  
  962. QA Smoke
  963. I think everyone knows about this, but in case someone doesn't. Type
  964. COC QASmoke
  965. into the Console and you will be transported to the developer testing area. It contains Dwarven chests that contain every item in the game, even items they didn't put into the game. You can easily create any of these chests with codes I listed in my first post. Search for "Chest of All" in that post and you will find them.
  966.  
  967.  
  968. More Interesting Object Codes
  969. 42521 #Flames
  970. 10B161 #Farmhouse Wind Mill Grain Wheel
  971. 22F0B #Dwemer Torture Device
  972. 34CBF #Dwemer Telescope
  973. 7144D #Bear Trap
  974. 166D2 #Grave 1
  975. 166D3 #Grave 2
  976. 166D4 #Grave 3
  977. 52781 #Stone Mural Fox
  978. 52780 #Stone Mural Hawk
  979. 5277F #Stone Mural Wolf
  980. 5277E #Stone Mural Bear
  981. 5277D #Stone Mural Moth
  982. 5277C #Stone Mural Whale
  983. 5277B #Stone Mural Owl
  984. 5277A #Stone Mural Snake
  985. DB895 #Combat Dummy 3
  986. DB894 #Combat Dummy 1
  987. 72E9F #Combat Dummy 2
  988. 5A5FE #Working Catapult !!!!!!!!!!!!!!!!!!!!!!!!
  989. 3A3CB #Dwemer Lexicon Stand
  990. 7F828 #Pedestal
  991. 7F82A #Pedestal Empty
  992. 74A05 #Skull Pedestal
  993. 74A06 #Skull Pedestal Empty
  994. D2331 #Doomstone Apprentice
  995. D2334 #Doomstone Atronach
  996. D2330 #Doomstone Lady
  997. D2336 #Doomstone Lord
  998. D2332 #Doomstone Lover
  999. D232E #Doomstone Mage
  1000. D2337 #Doomstone Ritual
  1001. D2339 #Doomstone Serpent
  1002. D2335 #Doomstone Shadow
  1003. D2333 #Doomstone Steed
  1004. D232F #Doomstone Thief
  1005. D2338 #Doomstone Tower
  1006. D232D #Doomstone Warrior
  1007. C4F00 #Kilkreath Crystal
  1008. C4DE5 #Kilkreath Crystal Pedestal
  1009. 4056F #Volskygge Puzzle Holder
  1010. 2C0E2 #Volskygge Puzzle Piece
  1011. 56712 #Dwemer Astrolabe Armillary
  1012. 56625 #Dwemer Astrolabe Hub
  1013. 566D9 #Dwemer Astrolabe Lens
  1014. 7F818 #Dwemer Observatory Dome Armillary
  1015. 7F822 #Dwemer Observatory Dome 1
  1016. 7F824 #Dwemer Observatory Dome 2
  1017. 7F825 #Dwemer Observatory Dome 3
  1018. 5B7F5 #FX Ancient Time Wound
  1019. BA556 #Mounted Bird
  1020. 10581F #Flying Bird With Nest
  1021. 105824 #Flying Bird No Nest
  1022.  
  1023. EBEB5 #FX Necro Tendril Ring
  1024. F456E #FX Shadowmere Emerge
  1025. E2D45 #FX Sovngarde Portal
  1026. 1096D6 #FX Winterhold Light Spell
  1027. C25D0 #FX Spark Fountain Heavy
  1028. C25D1 #FX Spark Fountain Itermittant Random
  1029. C25D2 #FX Spark Fountain Itermittant Regular
  1030. C25D3 #FX Spark Fountain Random
  1031. BBDF1 #FX Spark Fountain Light
  1032. 430A4 #FX Time Wound
  1033.  
  1034. Burning Dragon Words
  1035. 960A4 #FX Greybeard Shout DAH
  1036. B7670 #FX Greybeard Shout DUN
  1037. B7671 #FX Greybeard Shout FAAS
  1038. B7672 #FX Greybeard Shout FEIM
  1039. F5BE0 #FX Greybeard Shout FUS
  1040. B7673 #FX Greybeard Shout GRAH
  1041. B7674 #FX Greybeard Shout GRON
  1042. B7675 #FX Greybeard Shout KEST
  1043. C0C33 #FX Greybeard Shout KOOR
  1044. C0C31 #FX Greybeard Shout LOK
  1045. B7676 #FX Greybeard Shout MAAR
  1046. B766B #FX Greybeard Shout NAH
  1047. B604C #FX Greybeard Shout RO
  1048. B766C #FX Greybeard Shout RU
  1049. C0C39 #FX Greybeard Shout SHUL
  1050. B766D #FX Greybeard Shout SU
  1051. C0C37 #FX Greybeard Shout TOOR
  1052. C0C32 #FX Greybeard Shout VAH
  1053. B766E #FX Greybeard Shout WULD
  1054. C0C3B #FX Greybeard Shout YOL
  1055. B766F #FX Greybeard Shout ZII
  1056.  
  1057. EC3DE #Spider Web Destructible
  1058. 5157A #Horse Trough With Water
  1059. AA041 #Metal Cage
  1060. AA043 #Metal Cage Door
  1061. AA045 #TortureRack
  1062. 9151F #Removable Torch
  1063. 9151E #Removable Torch Sconce
  1064. A3446 #Sarcophagus Dead Bolt
  1065. 517A9 #Rope Ladder
  1066. EA693 #Sign Alchemy Shop
  1067. EA694 #Sign Blacksmith
  1068. EA69F #Sign Candlehearth Inn
  1069. EA695 #Sign General Goods
  1070. EA696 #Sign Stables
  1071. 6AEED #Sky Haven Blood Bowl
  1072. 6AEF4 #Sky Haven Blood Ring
  1073. 6AEF5 #Sky Haven Blood Ring
  1074. 6AEF3 #Sky Haven Blood Ring
  1075. 6D359 #Sky Haven Blood Ring
  1076. 6D38A #Sky Haven Puzzle Pillar
  1077. E6C65 #Sovngarde Portal Seal
  1078. E6C67 #Sovngarde Portal Seal Dias
  1079. 105D01 #Sovngarde Watcher Statue
  1080. 3B973 #Black Pool
  1081. 7F8DF #Barenziah Crown With Stand
  1082. E1FB2 #Nirnroot Green
  1083. B6FB9 #Nirnroot Red
  1084. EC19E #Underforge Werewolf Totem 1
  1085. EC1A1 #Underforge Werewolf Totem 2
  1086. EC1A2 #Underforge Werewolf Totem 3
  1087. 950CB #Wind Caller Horn
  1088. 950C9 #Wind Caller Tomb
  1089. 10963B #Cistern Basin Blood
  1090. D9883 #Shrine of Akatosh
  1091. 71854 #Shrine of Arkay
  1092. D9881 #Shrine of Dibella
  1093. D9885 #Shrine of Julianos
  1094. D987F #Shrine of Kynareth
  1095. D9887 #Shrine of Mara
  1096. D987D #Shrine of Stendarr
  1097. 100780 #Shrine of Talos
  1098. D987B #Shrine of Zenithar
  1099.  
  1100.  
  1101. How to Fix A Negative Gold Amount
  1102. If you have a negative gold amount and can not purchase anything, open the Console and type:
  1103. Player.GetItemCount F
  1104. It will tell you how much gold you have. Let's say it was 2054580699.
  1105. You need to Add the Negative of that number:
  1106. Player.AddItem F -2054580699
  1107. And let's see what it says now:
  1108. Player.GetItemCount F
  1109. It will return a new number, something like 1353830387.
  1110. We need to Remove this amount.
  1111. Player.RemoveItem F 1353830387
  1112. GetItemCount it again and it should say you have 0 gold.
  1113.  
  1114.  
  1115. Player Miscellaneous Stats
  1116. #Skyrim
  1117. #Script Name: PlayerMiscStats
  1118. #by PikNik, VividAxis, Team ZRO
  1119. #
  1120. # GetPCMiscStat "stat name"
  1121. # to view current value
  1122. # ModPCMiscStat "stat name" number
  1123. # to modify current value
  1124. #
  1125. # Example:
  1126. # if Locations Discovered is 20 then
  1127. # ModPCMiscStat "Bribes" -20
  1128. # will set it to zero.
  1129. # ModPCMiscStat "Bribes" -50
  1130. # will set it to -30.
  1131. # ModPCMiscStat "Bribes" 50
  1132. # will set it to 70.
  1133. # ModPCMiscStat "Bribes" 0
  1134. # will not change it.
  1135. #
  1136. # ModPCMiscStat does not accept a string for the second parameter.
  1137. # Changing the values for:
  1138. # Favorite Weapon, Favorite Spell, Favorite School, Favorite Shout
  1139. # seems to do nothing. They are set to 0 (zero) by default.
  1140. #
  1141. # GENERAL
  1142. ModPCMiscStat "Locations Discovered" 0
  1143. ModPCMiscStat "Dungeons Cleared" 0
  1144. ModPCMiscStat "Days Passed" 0
  1145. ModPCMiscStat "Hours Slept" 0
  1146. ModPCMiscStat "Hours Waiting" 0
  1147. ModPCMiscStat "Standing Stones Found" 0
  1148. ModPCMiscStat "Gold Found" 0
  1149. ModPCMiscStat "Most Gold Carried" 0
  1150. ModPCMiscStat "Chests Looted" 0
  1151. ModPCMiscStat "Skill Increases" 0
  1152. ModPCMiscStat "Skill Books Read" 0
  1153. ModPCMiscStat "Food Eaten" 0
  1154. ModPCMiscStat "Training Sessions" 0
  1155. ModPCMiscStat "Books Read" 0
  1156. ModPCMiscStat "Horses Owned" 0
  1157. ModPCMiscStat "Houses Owned" 0
  1158. ModPCMiscStat "Stores Invested In" 0
  1159. ModPCMiscStat Barters 0
  1160. ModPCMiscStat "Persuasions" 0
  1161. ModPCMiscStat Bribes 0
  1162. ModPCMiscStat Intimidations 0
  1163. ModPCMiscStat "Diseases Contracted" 0
  1164. # QUEST
  1165. ModPCMiscStat "Quests Completed" 0
  1166. ModPCMiscStat "Misc Objectives Completed" 0
  1167. ModPCMiscStat "Main Quests Completed" 0
  1168. ModPCMiscStat "Side Quests Completed" 0
  1169. ModPCMiscStat "The Companions Quests Completed" 0
  1170. ModPCMiscStat "College of Winterhold Quests Completed" 0
  1171. ModPCMiscStat "Thieves' Guild Quests Completed" 0
  1172. ModPCMiscStat "The Dark Brotherhood Quests Completed" 0
  1173. ModPCMiscStat "Civil War Quests Completed" 0
  1174. ModPCMiscStat "Daedric Quests Completed" 0
  1175. ModPCMiscStat "Questlines Completed" 0
  1176. # COMBAT
  1177. ModPCMiscStat "People Killed" 0
  1178. ModPCMiscStat "Animals Killed" 0
  1179. ModPCMiscStat "Creatures Killed" 0
  1180. ModPCMiscStat "Undead Killed" 0
  1181. ModPCMiscStat "Daedra Killed" 0
  1182. ModPCMiscStat "Automatons Killed" 0
  1183. #ModPCMiscStat "Favorite Weapon" 0
  1184. ModPCMiscStat "Critical Strikes" 0
  1185. ModPCMiscStat "Sneak Attacks" 0
  1186. ModPCMiscStat "Backstabs" 0
  1187. ModPCMiscStat "Weapons Disarmed" 0
  1188. ModPCMiscStat "Brawls Won" 0
  1189. ModPCMiscStat "Bunnies Slaughtered" 0
  1190. # MAGIC
  1191. ModPCMiscStat "Spells Learned" 0
  1192. #ModPCMiscStat "Favorite Spell" 0
  1193. #ModPCMiscStat "Favorite School" 0
  1194. ModPCMiscStat "Dragon Souls Collected" 0
  1195. ModPCMiscStat "Words of Power Learned" 0
  1196. ModPCMiscStat "Words of Power Unlocked" 0
  1197. ModPCMiscStat "Shouts Learned" 0
  1198. ModPCMiscStat "Shouts Unlocked" 0
  1199. ModPCMiscStat "Shouts Mastered" 0
  1200. ModPCMiscStat "Times Shouted" 0
  1201. #ModPCMiscStat "Favorite Shout" 0
  1202. # CRAFTING
  1203. ModPCMiscStat "Soul Gems Used" 0
  1204. ModPCMiscStat "Souls Trapped" 0
  1205. ModPCMiscStat "Magic Items Made" 0
  1206. ModPCMiscStat "Weapons Improved" 0
  1207. ModPCMiscStat "Weapons Made" 0
  1208. ModPCMiscStat "Armor Improved" 0
  1209. ModPCMiscStat "Armor Made" 0
  1210. ModPCMiscStat "Potions Mixed" 0
  1211. ModPCMiscStat "Potions Used" 0
  1212. ModPCMiscStat "Poisons Mixed" 0
  1213. ModPCMiscStat "Poisons Used" 0
  1214. ModPCMiscStat "Ingredients Harvested" 0
  1215. ModPCMiscStat "Ingredients Eaten" 0
  1216. ModPCMiscStat "Nirnroots Found" 0
  1217. ModPCMiscStat "Wings Plucked" 0
  1218. # CRIME
  1219. ModPCMiscStat "Total Lifetime Bounty" 0
  1220. ModPCMiscStat "Largest Bounty" 0
  1221. ModPCMiscStat "Locks Picked" 0
  1222. ModPCMiscStat "Pockets Picked" 0
  1223. ModPCMiscStat "Items Pickpocketed" 0
  1224. ModPCMiscStat "Times Jailed" 0
  1225. ModPCMiscStat "Days Jailed" 0
  1226. ModPCMiscStat "Jail Escapes" 0
  1227. ModPCMiscStat "Items Stolen" 0
  1228. ModPCMiscStat Assaults 0
  1229. ModPCMiscStat Murders 0
  1230. ModPCMiscStat "Horses Stolen" 0
  1231. ModPCMiscStat Tresspasses 0
  1232.  
  1233.  
  1234. Easy Rotate Objects
  1235. I've played since Morrowind and did the Fallouts too. Skyrim is undoubtedly the worse in the all of these when it comes to moving and placing objects. i.e. decorating your house. I've done a lot of this over the last few months while creating and expanding houses and I've developed a system that will help you if you're playing on the PC. Sorry 360 gamers, I don't have a solution for you.
  1236.  
  1237. I made a series of scripts that help me rotate objects on every axis (X Y Z) in increments of 5 degrees. There are 217 scripts. The SetScale is used to force the redraw because a lot of objects don't refresh when you change their angle. Extract the scripts to the directory where TESV.exe is located. ("C:\Program Files (x86)\Steam\SteamApps\common\skyrim") To use them you open the Console, click an object, and type:
  1238. bat xyz
  1239. bat y0
  1240. bat z350
  1241.  
  1242. Download: http://www.mediafire.com/?gfcjq3y7q4a1i5o
  1243.  
  1244. Script Samples:
  1245.  
  1246. #Script Name: XYZ
  1247. SetAngle X 0
  1248. SetAngle Y 0
  1249. SetAngle Z 0
  1250. SetScale 1
  1251.  
  1252. #Script Name: Y275
  1253. SetAngle Y 275
  1254. SetScale 1
  1255.  
  1256. #Script Name: X290
  1257. SetAngle X 290
  1258. SetScale 1
  1259.  
  1260. #Script Name: Z280
  1261. SetAngle Z 280
  1262. SetScale 1
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement