├── .gitattributes ├── .gitignore ├── DSR-Gadget.sln ├── DSR-Gadget ├── App.config ├── DSR-Gadget.csproj ├── DSRAssembly.cs ├── DSRHook.cs ├── DSROffsets.cs ├── FodyWeavers.xml ├── FormMain Tabs │ ├── Cheats.cs │ ├── Graphics.cs │ ├── Hotkeys.cs │ ├── Items.cs │ ├── Misc.cs │ ├── Player.cs │ └── Stats.cs ├── FormMain.Designer.cs ├── FormMain.cs ├── FormMain.resx ├── GadgetHotkey.cs ├── List Items │ ├── DSRBonfire.cs │ ├── DSRClass.cs │ ├── DSRInfusion.cs │ ├── DSRItem.cs │ └── DSRItemCategory.cs ├── Program.cs ├── Properties │ ├── AssemblyInfo.cs │ ├── Resources.Designer.cs │ ├── Resources.resx │ ├── Settings.Designer.cs │ └── Settings.settings ├── Resources │ ├── Assembly │ │ ├── BonfireWarp.txt │ │ ├── GetItem.txt │ │ └── LevelUp.txt │ ├── Bonfires.txt │ ├── Classes.txt │ └── Items │ │ ├── Armor.txt │ │ ├── Consumables.txt │ │ ├── KeyItems.txt │ │ ├── MeleeWeapons.txt │ │ ├── MysteryArmor.txt │ │ ├── MysteryGoods.txt │ │ ├── MysteryWeapons.txt │ │ ├── RangedWeapons.txt │ │ ├── Rings.txt │ │ ├── Shields.txt │ │ ├── SpellTools.txt │ │ ├── Spells.txt │ │ ├── UpgradeMaterials.txt │ │ └── UsableItems.txt ├── User32.cs ├── icon.ico └── packages.config ├── LICENSE ├── README.md └── readme.txt /.gitattributes: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/.gitattributes -------------------------------------------------------------------------------- /.gitignore: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/.gitignore -------------------------------------------------------------------------------- /DSR-Gadget.sln: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget.sln -------------------------------------------------------------------------------- /DSR-Gadget/App.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/App.config -------------------------------------------------------------------------------- /DSR-Gadget/DSR-Gadget.csproj: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/DSR-Gadget.csproj -------------------------------------------------------------------------------- /DSR-Gadget/DSRAssembly.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/DSRAssembly.cs -------------------------------------------------------------------------------- /DSR-Gadget/DSRHook.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/DSRHook.cs -------------------------------------------------------------------------------- /DSR-Gadget/DSROffsets.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/DSROffsets.cs -------------------------------------------------------------------------------- /DSR-Gadget/FodyWeavers.xml: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/FodyWeavers.xml -------------------------------------------------------------------------------- /DSR-Gadget/FormMain Tabs/Cheats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/FormMain Tabs/Cheats.cs -------------------------------------------------------------------------------- /DSR-Gadget/FormMain Tabs/Graphics.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/FormMain Tabs/Graphics.cs -------------------------------------------------------------------------------- /DSR-Gadget/FormMain Tabs/Hotkeys.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/FormMain Tabs/Hotkeys.cs -------------------------------------------------------------------------------- /DSR-Gadget/FormMain Tabs/Items.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/FormMain Tabs/Items.cs -------------------------------------------------------------------------------- /DSR-Gadget/FormMain Tabs/Misc.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/FormMain Tabs/Misc.cs -------------------------------------------------------------------------------- /DSR-Gadget/FormMain Tabs/Player.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/FormMain Tabs/Player.cs -------------------------------------------------------------------------------- /DSR-Gadget/FormMain Tabs/Stats.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/FormMain Tabs/Stats.cs -------------------------------------------------------------------------------- /DSR-Gadget/FormMain.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/FormMain.Designer.cs -------------------------------------------------------------------------------- /DSR-Gadget/FormMain.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/FormMain.cs -------------------------------------------------------------------------------- /DSR-Gadget/FormMain.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/FormMain.resx -------------------------------------------------------------------------------- /DSR-Gadget/GadgetHotkey.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/GadgetHotkey.cs -------------------------------------------------------------------------------- /DSR-Gadget/List Items/DSRBonfire.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/List Items/DSRBonfire.cs -------------------------------------------------------------------------------- /DSR-Gadget/List Items/DSRClass.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/List Items/DSRClass.cs -------------------------------------------------------------------------------- /DSR-Gadget/List Items/DSRInfusion.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/List Items/DSRInfusion.cs -------------------------------------------------------------------------------- /DSR-Gadget/List Items/DSRItem.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/List Items/DSRItem.cs -------------------------------------------------------------------------------- /DSR-Gadget/List Items/DSRItemCategory.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/List Items/DSRItemCategory.cs -------------------------------------------------------------------------------- /DSR-Gadget/Program.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Program.cs -------------------------------------------------------------------------------- /DSR-Gadget/Properties/AssemblyInfo.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Properties/AssemblyInfo.cs -------------------------------------------------------------------------------- /DSR-Gadget/Properties/Resources.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Properties/Resources.Designer.cs -------------------------------------------------------------------------------- /DSR-Gadget/Properties/Resources.resx: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Properties/Resources.resx -------------------------------------------------------------------------------- /DSR-Gadget/Properties/Settings.Designer.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Properties/Settings.Designer.cs -------------------------------------------------------------------------------- /DSR-Gadget/Properties/Settings.settings: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Properties/Settings.settings -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Assembly/BonfireWarp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Assembly/BonfireWarp.txt -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Assembly/GetItem.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Assembly/GetItem.txt -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Assembly/LevelUp.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Assembly/LevelUp.txt -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Bonfires.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Bonfires.txt -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Classes.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Classes.txt -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Items/Armor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Items/Armor.txt -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Items/Consumables.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Items/Consumables.txt -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Items/KeyItems.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Items/KeyItems.txt -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Items/MeleeWeapons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Items/MeleeWeapons.txt -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Items/MysteryArmor.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Items/MysteryArmor.txt -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Items/MysteryGoods.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Items/MysteryGoods.txt -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Items/MysteryWeapons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Items/MysteryWeapons.txt -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Items/RangedWeapons.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Items/RangedWeapons.txt -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Items/Rings.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Items/Rings.txt -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Items/Shields.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Items/Shields.txt -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Items/SpellTools.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Items/SpellTools.txt -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Items/Spells.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Items/Spells.txt -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Items/UpgradeMaterials.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Items/UpgradeMaterials.txt -------------------------------------------------------------------------------- /DSR-Gadget/Resources/Items/UsableItems.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/Resources/Items/UsableItems.txt -------------------------------------------------------------------------------- /DSR-Gadget/User32.cs: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/User32.cs -------------------------------------------------------------------------------- /DSR-Gadget/icon.ico: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/icon.ico -------------------------------------------------------------------------------- /DSR-Gadget/packages.config: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/DSR-Gadget/packages.config -------------------------------------------------------------------------------- /LICENSE: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/LICENSE -------------------------------------------------------------------------------- /README.md: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/README.md -------------------------------------------------------------------------------- /readme.txt: -------------------------------------------------------------------------------- https://raw.githubusercontent.com/JKAnderson/DSR-Gadget/HEAD/readme.txt --------------------------------------------------------------------------------