Preview

Skyrim Codes : P

Satisfactory Essays
Open Document
Open Document
1594 Words
Grammar
Grammar
Plagiarism
Plagiarism
Writing
Writing
Score
Score
Skyrim Codes : P
Using Console Commands
Hit Tilde [`] to bring down the developer console. Then just enter the codes listed below to activate.
Some cheats can cause bugs, crashes, or problems with the game code. Make sure to save your game before you experiment with cheats. Achievements are also disabled once cheats are activated.
Don’t forget to shut off the AUTOSAVE feature if you’re worried about overwriting a previous clean save.
Player Item Console Command
Player.additem ITEM “###”
Gives items depending on what Item Code is input. Type in the item name under “ITEM” and the amount of items you want under “###”.
Player.addperk “###”
The same as the command above, use this command to add perks in the code list below.
Item Codes
SEARCH WITH CTRL-F
Perks
000153CE ConjurationDualCasting
000153CF DestructionDualCasting
000153D0 IllusionDualCasting
000153D1 RestorationDualCasting
000153D2 Impact
0001711C DBWellFitted
0001711E TGWellFitted
00018E6A LightFingers20
00018E6B LightFingers40
00018E6C LightFingers60
00018E6D LightFingersSO
0001BAC9 doomSteedEncumberPerk
0002BA1D PlayerWerewolfFeed
0003AF81 SavageStrike
0003AF83 DeepWounds30
0003AF84 Skullcrusher30
0003AF9E Sweep
0003AFA6 Paralyzing Strike
0003AFA7 Warm aster
0003FFFA HackAndSlash30
00051B12 HuntersDiscipline
00051B17 MatchingSet
00051B1A RangeOf Movement
00051B1B CustomFit
00051B1C Unhindered
0005218E ArcaneBlacksmith
00052190 DragonArmor
00052D50 FightingStance
00052D51 ChampionsStance
00052D52 Devastating Blow
00053128 MagicResistance30
00053129 MagicResistance50
0005312A MagicResistance70
000581DD Necromancy
000581DE DarkSouls
000581E1 Animage
000581E2 KindredMage
000581E4 Necromage
000581E7 AugmentedFlames
000581E8 TestFireMage
000581E9 FireMastery
000581EA AugmentedFrost
000581EB TestFrostMage
000581EC FrostMastery
000581ED TestLightningMage
000581EE Storm Mastery
000581F4 Recovery30
000581F5 Recovery50
000581F7 atronach
000581F8 Regeneration
000581F9

You May Also Find These Documents Helpful

  • Good Essays

    C) Click the down arrow on the Debug list box, and then click on Release.…

    • 3668 Words
    • 15 Pages
    Good Essays
  • Powerful Essays

    Nt1330 Unit 5 Study Guide

    • 603 Words
    • 3 Pages

    Add the following attribute to Mikexxx & Suexxx (you need to find proper command parameters for the following attributes)…

    • 603 Words
    • 3 Pages
    Powerful Essays
  • Powerful Essays

    NT1210Uni5Lab5

    • 1370 Words
    • 4 Pages

    Every NIC has its own MAC address, so you will have a unique MAC address for each network adapter present on your computer. To determine the MAC address of a network interface on your Windows PC, follow these steps:…

    • 1370 Words
    • 4 Pages
    Powerful Essays
  • Good Essays

    basdasd

    • 683 Words
    • 3 Pages

    Read all background information and instructions in the “Question” column. It will also be helpful to read here…

    • 683 Words
    • 3 Pages
    Good Essays
  • Good Essays

    Net360 Instructions

    • 2615 Words
    • 11 Pages

    1. We now are ready to configure the simulation. Select the Configuration/Run [pic] tab from the tool bar.…

    • 2615 Words
    • 11 Pages
    Good Essays
  • Satisfactory Essays

    It 240 Appendix F

    • 301 Words
    • 2 Pages

    | |way or even be deleted. It is a permanent form of memory that’s generally used |…

    • 301 Words
    • 2 Pages
    Satisfactory Essays
  • Good Essays

    Skyrim Cheats

    • 377 Words
    • 2 Pages

    Note you must be at least level 20 and have finished Dragon Rising to receive this quest. After hearing a rumor at the The Bannered Mare, talk to Jarl Balgruuf in Dragonsreach (or if you sided with the Stormcloaks in the Civil War he is in the basement of the Blue Palace) reveals he is having problems with his youngest son Nelkir, who has been taking a sudden dark turn in his personality. Nelkir tells the Dragonborn how a Whispering Lady tells him secrets and he directs you to the locked room in the basement.…

    • 377 Words
    • 2 Pages
    Good Essays
  • Good Essays

    Have you ever heard the saying “spare the rod spoil the child” ? We all know children need punishment when they are bad in order to teach them what is right. In ancient Babylon around 1792 king Hammurabi created 282 laws and put them steles arounds the country to tell his people how to act. but, were these code just or unjust.…

    • 252 Words
    • 2 Pages
    Good Essays
  • Good Essays

    When counting objects, say the number names in the standard order, pairing each object with one and only one number name and each number name with one and only one object.…

    • 391 Words
    • 2 Pages
    Good Essays
  • Satisfactory Essays

    Mary Kay Objectives

    • 299 Words
    • 2 Pages

    | Item Selling ChallengeComplete selling $200 w/s and 25 items, 400 w/s and 50 items, 600 w/s and 75 items OR 800 w/s and 100 items to earn fabulous monthly prizes. Tracking form at www.unitnet.com/denisesowder…

    • 299 Words
    • 2 Pages
    Satisfactory Essays
  • Good Essays

    Code

    • 684 Words
    • 3 Pages

    Name: Zachary Quek Suan Chieh I.D.: 112051-06965-010 Course: BCS account.h using namespace std; class Account{ protected: double balance; public: Account(double x){ balance = x;} virtual double getBalance(); virtual double debit(double x); virtual double credit(double x);}; account.cpp #include<iostream> #include"account.h" using namespace std; double Account:: debit(double x){ if(x>balance){ cout << "Debit amount exceeded account balance." << endl;} else{balance = balance - x;} return balance;} double Account:: credit(double x){ balance = balance + x; return balance;} double Account::getBalance(){ return balance;}; savingaccount.h using namespace std; class SavingAccount : public Account { private: double interest; public: SavingAccount(double x,double y); double calculateInterenst(double x);}; Savingaccount.cpp #include<iostream> #include"account.h" #include"savingaccount.h" using namespace std; SavingAccount::SavingAccount(double x, double y): Account(x){ balance =x ; interest =y;} double SavingAccount::calculateInterenst(double x){ x = balance * interest; return x;} Checkingaccount.h using namespace std; class CheckingAccount : public Account{ private: double fee; public: CheckingAccount(double x, double y); virtual double debit(double x); virtual double credit(double x);}; Checkingaccount.cpp #include<iostream> #include"account.h" #include"checkingaccount.h" using namespace std; CheckingAccount :: CheckingAccount(double x, double y): Account(x){ balance =x ; fee = y;} double CheckingAccount :: debit(double x){ if(x>balance){cout << "Debit amount exceeded account balance." << endl;} else{ balance = balance - x; cout << "$" << fee << " transaction fee charged." << endl; balance = balance - fee; return balance;}} double CheckingAccount :: credit(double x){ balance = balance + x;…

    • 684 Words
    • 3 Pages
    Good Essays
  • Satisfactory Essays

    Enter these cheats while playing, don't press pause. It is not advised to save your game with cheats enabled. From the following list, pick the type of cheat you are looking for, or just browse through the list and see what catches your eye.…

    • 504 Words
    • 3 Pages
    Satisfactory Essays
  • Good Essays

    File Management Summary

    • 343 Words
    • 2 Pages

    The next and most important thing when managing files is to put the files where they belong. Use the save as dialogue box when you go to save a file to change where the file is stored. You can chose anywhere on your hard drive you want to put the file, like the folders you made before.…

    • 343 Words
    • 2 Pages
    Good Essays
  • Good Essays

    nokia secret codes

    • 1479 Words
    • 6 Pages

    Dial using the keypad: * # 0000 # – the version number displayed on the display.…

    • 1479 Words
    • 6 Pages
    Good Essays
  • Satisfactory Essays

    my vecation

    • 709 Words
    • 3 Pages

    Enter these cheats while playing, don't press pause. It is not advised to save your game with cheats enabled.…

    • 709 Words
    • 3 Pages
    Satisfactory Essays

Related Topics