gitextract_9zwc60cb/ ├── .github/ │ ├── ISSUE_TEMPLATE/ │ │ ├── bug_report.md │ │ └── feature_request.md │ └── workflows/ │ ├── build-only.yml │ ├── build-site.yml │ └── build.yml ├── .gitignore ├── .gitmodules ├── CODE_OF_CONDUCT.md ├── CONTRIBUTING.md ├── Crypt/ │ ├── Crypt.cpp │ ├── Crypt.def │ ├── Crypt.h │ ├── Crypt.rc │ ├── Crypt.vcxproj │ ├── Crypt.vcxproj.filters │ ├── LoginEncryption.cpp │ ├── LoginEncryption.h │ ├── MemFinder.cpp │ ├── MemFinder.h │ ├── OSIEncryption.cpp │ ├── OSIEncryption.h │ ├── OldStatusBar.cpp │ ├── PacketInfo.cpp │ ├── PacketInfo.h │ ├── UOArt.cpp │ ├── debug.h │ ├── platform.h │ ├── resource.h │ ├── stdafx.cpp │ ├── stdafx.h │ ├── table.h │ ├── trees.cpp │ ├── twofish.c │ ├── twofish.h │ ├── uo_huffman.cpp │ └── uo_huffman.h ├── FastColoredTextBox/ │ ├── AutocompleteItem.cs │ ├── AutocompleteMenu.cs │ ├── Bookmarks.cs │ ├── Char.cs │ ├── CommandManager.cs │ ├── Commands.cs │ ├── DocumentMap.cs │ ├── EncodingDetector.cs │ ├── ExportToHTML.cs │ ├── ExportToRTF.cs │ ├── FCTB_key.snk │ ├── FastColoredTextBox.cs │ ├── FastColoredTextBox.csproj │ ├── FastColoredTextBox.resx │ ├── FastColoredTextBox.xml │ ├── FileTextSource.cs │ ├── FindForm.Designer.cs │ ├── FindForm.cs │ ├── FindForm.resx │ ├── GoToForm.Designer.cs │ ├── GoToForm.cs │ ├── GoToForm.resx │ ├── Hints.cs │ ├── Hotkeys.cs │ ├── HotkeysEditorForm.Designer.cs │ ├── HotkeysEditorForm.cs │ ├── HotkeysEditorForm.resx │ ├── LimitedStack.cs │ ├── Line.cs │ ├── LinesAccessor.cs │ ├── MacrosManager.cs │ ├── NativeMethods.cs │ ├── Place.cs │ ├── PlatformType.cs │ ├── Properties/ │ │ └── AssemblyInfo.cs │ ├── Range.cs │ ├── ReplaceForm.Designer.cs │ ├── ReplaceForm.cs │ ├── ReplaceForm.resx │ ├── Ruler.Designer.cs │ ├── Ruler.cs │ ├── Style.cs │ ├── SyntaxDescriptor.cs │ ├── SyntaxHighlighter.cs │ ├── TextSource.cs │ ├── TypeDescriptor.cs │ ├── UnfocusablePanel.cs │ └── VisualMarker.cs ├── INSTALL.md ├── LICENSE.md ├── Loader/ │ ├── Loader.cpp │ ├── Loader.def │ ├── Loader.h │ ├── Loader.rc │ ├── Loader.vcxproj │ ├── Loader.vcxproj.filters │ ├── resource.h │ ├── stdafx.cpp │ └── stdafx.h ├── Notepad++UDL.xml ├── Platform/ │ ├── Platform.cpp │ ├── Platform.def │ ├── Platform.h │ ├── Platform.vcxproj │ └── Platform.vcxproj.filters ├── README.md ├── Razor/ │ ├── Agents/ │ │ ├── Agents.cs │ │ ├── BuyAgent.cs │ │ ├── IgnoreAgent.cs │ │ ├── OrganizerAgent.cs │ │ ├── RestockAgent.cs │ │ ├── ScavengerAgent.cs │ │ ├── SearchExemptionAgent.cs │ │ ├── SellAgent.cs │ │ └── UseOnceAgent.cs │ ├── Boat/ │ │ ├── BoatWindow.Designer.cs │ │ ├── BoatWindow.cs │ │ └── BoatWindow.resx │ ├── Client/ │ │ ├── ClassicUO.cs │ │ ├── Client.cs │ │ ├── OSI.cs │ │ └── UOAssist.cs │ ├── Core/ │ │ ├── ActionQueue.cs │ │ ├── BandageTimer.cs │ │ ├── BodCapture.cs │ │ ├── BuffDebuffManager.cs │ │ ├── ClassicUOManager.cs │ │ ├── Commands.cs │ │ ├── ContainerLabels.cs │ │ ├── CooldownManager.cs │ │ ├── Counters.cs │ │ ├── DamageTracker.cs │ │ ├── Dress.cs │ │ ├── DressList.cs │ │ ├── EncodedSpeech.cs │ │ ├── FriendsManager.cs │ │ ├── GateTimer.cs │ │ ├── Geometry.cs │ │ ├── GoldPerHourTimer.cs │ │ ├── Item.cs │ │ ├── ItemID.cs │ │ ├── Main.cs │ │ ├── Map.cs │ │ ├── MemHelper.cs │ │ ├── MessageInBottleCapture.cs │ │ ├── MessageManager.cs │ │ ├── Mobile.cs │ │ ├── MsgQueue.cs │ │ ├── ObjectPropertyList.cs │ │ ├── OverheadManager.cs │ │ ├── Overrides.cs │ │ ├── PasswordMemory.cs │ │ ├── Ping.cs │ │ ├── Player.cs │ │ ├── ScreenCapture.cs │ │ ├── Serial.cs │ │ ├── SkillTimer.cs │ │ ├── Spells.cs │ │ ├── StaffToolsManager.cs │ │ ├── StealthSteps.cs │ │ ├── SystemMessages.cs │ │ ├── Targeting.cs │ │ ├── TargetingClosest.cs │ │ ├── TargetingNextPrevious.cs │ │ ├── TargetingRandom.cs │ │ ├── TextFilterManager.cs │ │ ├── Timer.cs │ │ ├── UOEntity.cs │ │ ├── Utility.cs │ │ ├── WaypointManager.cs │ │ ├── World.cs │ │ └── ZLib.cs │ ├── Filters/ │ │ ├── Death.cs │ │ ├── Filter.cs │ │ ├── Light.cs │ │ ├── MessageFilter.cs │ │ ├── MobileFilter.cs │ │ ├── SoundFilters.cs │ │ ├── SoundMusicManager.cs │ │ ├── StaffItems.cs │ │ ├── TargetFilterManager.cs │ │ ├── VetRewardGump.cs │ │ ├── WallStaticFilter.cs │ │ └── Weather.cs │ ├── Gumps/ │ │ ├── Gump.cs │ │ ├── GumpButtonType.cs │ │ ├── GumpCollection.cs │ │ ├── GumpElement.cs │ │ ├── GumpPage.cs │ │ ├── GumpType.cs │ │ └── Internal/ │ │ ├── AgentsGump.cs │ │ ├── BoatControlGump.cs │ │ ├── BuffGump.cs │ │ ├── CooldownGump.cs │ │ ├── DamageTrackerGump.cs │ │ ├── DamageTrackerListGump.cs │ │ ├── HotKeyGump.cs │ │ ├── InputDialogGump.cs │ │ ├── ItemInfoGump.cs │ │ ├── MobileInfoGump.cs │ │ ├── SystemMessagesGump.cs │ │ └── TestMessageGump.cs │ ├── HotKeys/ │ │ ├── Counters.cs │ │ ├── HotKeys.cs │ │ ├── Misc.cs │ │ ├── SkillHotKeys.cs │ │ ├── SpecialMoves.cs │ │ └── Undress.cs │ ├── Macros/ │ │ ├── Actions.cs │ │ ├── Actions.resx │ │ ├── Macro.cs │ │ ├── MacroManager.cs │ │ └── MacroVariables.cs │ ├── Map/ │ │ ├── MapWindow.cs │ │ ├── MapWindow.resx │ │ ├── Region.cs │ │ ├── UOMapControl.cs │ │ ├── UOMapControl.resx │ │ └── UOMapRuneButton.cs │ ├── Network/ │ │ ├── Handlers.cs │ │ ├── Loader.cs │ │ ├── Packet.cs │ │ ├── PacketHandler.cs │ │ ├── PacketTable.cs │ │ ├── PacketWriter.cs │ │ └── Packets.cs │ ├── Platform.cs │ ├── Properties/ │ │ ├── AssemblyInfo.cs │ │ ├── Resources.Designer.cs │ │ └── Resources.resx │ ├── Razor.csproj │ ├── Razor.manifest │ ├── Scripts/ │ │ ├── AgentCommands.cs │ │ ├── Aliases.cs │ │ ├── Commands.cs │ │ ├── Engine/ │ │ │ ├── Interpreter.cs │ │ │ ├── Lexer.cs │ │ │ └── TextParser.cs │ │ ├── Expressions.cs │ │ ├── Helpers/ │ │ │ └── CommandHelper.cs │ │ ├── RazorScript.cs │ │ ├── ScriptManager.cs │ │ ├── ScriptVariables.cs │ │ ├── SpeechCommands.cs │ │ └── TargetCommands.cs │ ├── UI/ │ │ ├── AddCounter.cs │ │ ├── AddCounter.resx │ │ ├── ArtViewer.Designer.cs │ │ ├── ArtViewer.cs │ │ ├── BuffDebuffOptions.Designer.cs │ │ ├── BuffDebuffOptions.cs │ │ ├── BuffDebuffOptions.resx │ │ ├── Config.cs │ │ ├── ContainerLabels.Designer.cs │ │ ├── ContainerLabels.cs │ │ ├── ContainerLabels.resx │ │ ├── Ext.cs │ │ ├── HueEntry.cs │ │ ├── HueEntry.resx │ │ ├── InputBox.cs │ │ ├── InputBox.resx │ │ ├── InputDropdown.cs │ │ ├── InputDropdown.resx │ │ ├── Languages.cs │ │ ├── MacroInsertDoWhile.cs │ │ ├── MacroInsertDoWhile.resx │ │ ├── MacroInsertIf.cs │ │ ├── MacroInsertIf.resx │ │ ├── MacroInsertWait.cs │ │ ├── MacroInsertWait.resx │ │ ├── MacroInsertWhile.cs │ │ ├── MacroInsertWhile.resx │ │ ├── MessageDialog.cs │ │ ├── MessageDialog.resx │ │ ├── Razor.Designer.cs │ │ ├── Razor.cs │ │ ├── Razor.resx │ │ ├── SoundEntry.cs │ │ ├── SoundEntry.resx │ │ ├── SplashScreen.cs │ │ ├── SplashScreen.resx │ │ ├── WelcomeForm.cs │ │ └── WelcomeForm.resx │ ├── UltimaSDK/ │ │ ├── ASCIIFont.cs │ │ ├── AnimationEdit.cs │ │ ├── Animations.cs │ │ ├── Animdata.cs │ │ ├── Art.cs │ │ ├── BwtDecompress.cs │ │ ├── CalibrationInfo.cs │ │ ├── Client.cs │ │ ├── ClientHandles.cs │ │ ├── FileIndex.cs │ │ ├── Files.cs │ │ ├── Gumps.cs │ │ ├── Hues.cs │ │ ├── Light.cs │ │ ├── LocationPointer.cs │ │ ├── Map.cs │ │ ├── MultiMap.cs │ │ ├── Multis.cs │ │ ├── NativeMethods.cs │ │ ├── ProcessStream.cs │ │ ├── RadarCol.cs │ │ ├── SkillGroups.cs │ │ ├── Skills.cs │ │ ├── Sound.cs │ │ ├── SpeechList.cs │ │ ├── StackDataReader.cs │ │ ├── StringEntry.cs │ │ ├── StringHelper.cs │ │ ├── StringList.cs │ │ ├── Textures.cs │ │ ├── TileData.cs │ │ ├── TileList.cs │ │ ├── TileMatrix.cs │ │ ├── TileMatrixPatch.cs │ │ ├── UnicodeFont.cs │ │ ├── ValueStringBuilder.cs │ │ ├── Verdata.cs │ │ └── WindowProcessStream.cs │ ├── app.config │ └── packages.config ├── Razor.sln ├── etc/ │ ├── Language/ │ │ ├── Razor_lang.CHS │ │ ├── Razor_lang.PTB │ │ ├── Razor_lang.bg │ │ ├── Razor_lang.cht │ │ ├── Razor_lang.deu │ │ ├── Razor_lang.enu │ │ ├── Razor_lang.esp │ │ ├── Razor_lang.ita │ │ ├── Razor_lang.pl │ │ ├── Razor_lang.rus │ │ ├── Razor_lang.swe │ │ └── Razor_lang.tur │ ├── Razor.nsi │ ├── animdata.csv │ ├── counters.xml │ ├── doors.xml │ ├── dotNet.nsh │ ├── guardlines.def │ ├── items.xml │ ├── license.txt │ ├── overrides.def │ ├── spells.def │ └── uorguardlines.def └── help/ ├── docs/ │ ├── download.md │ ├── faq.md │ ├── guide/ │ │ ├── commands.md │ │ ├── comments.md │ │ ├── expressions.md │ │ ├── index.md │ │ ├── keywords.md │ │ ├── layers.md │ │ └── variables.md │ ├── help/ │ │ ├── advanced.md │ │ ├── agents.md │ │ ├── armdress.md │ │ ├── displaycounters.md │ │ ├── filters.md │ │ ├── friends.md │ │ ├── general.md │ │ ├── hotkeys.md │ │ ├── index.md │ │ ├── macros.md │ │ ├── options.md │ │ ├── screenshots.md │ │ ├── scripts.md │ │ └── skills.md │ ├── history.md │ ├── index.md │ ├── install/ │ │ ├── linux.md │ │ └── windows.md │ ├── releasenotes.md │ ├── stylesheets/ │ │ └── extra.css │ └── uoaapi.md ├── mkdocs.yml ├── overrides/ │ └── main.html ├── pygments.lexers.razor ├── pygments.mapping.razor └── pygments.styles.razor