diff --git a/build.gradle.kts b/build.gradle.kts index 13ee80b..6524d37 100644 --- a/build.gradle.kts +++ b/build.gradle.kts @@ -7,7 +7,7 @@ plugins { } group = "com.chromascape" -version = "0.4.0" +version = "0.5.0" java { toolchain { diff --git a/src/main/java/com/chromascape/base/BaseScript.java b/src/main/java/com/chromascape/base/BaseScript.java index a7c26b5..b2b3378 100644 --- a/src/main/java/com/chromascape/base/BaseScript.java +++ b/src/main/java/com/chromascape/base/BaseScript.java @@ -23,6 +23,7 @@ public abstract class BaseScript { private static final Logger logger = LogManager.getLogger(BaseScript.class); private volatile boolean running = true; private Thread scriptThread; + private boolean initialised = false; /** Constructs a BaseScript. */ public BaseScript() { @@ -51,6 +52,10 @@ public final void run() { break; } try { + if (!initialised) { + onFirstCycle(); + initialised = true; + } cycle(); } catch (ScriptStoppedException e) { logger.error("Cycle interrupted: {}", e.getMessage()); @@ -68,6 +73,14 @@ public final void run() { logger.info("Finished running script."); } + /** + * Will run operations on the first cycle and then never again. Useful for initialising data such + * as custom zones, or for setup actions. + */ + protected void onFirstCycle() { + // override this + } + /** * Stops the script execution by interrupting the script thread. * diff --git a/src/main/java/com/chromascape/scripts/DemoMiningScript.java b/src/main/java/com/chromascape/scripts/DemoMiningScript.java index e6acdbb..aa8844a 100644 --- a/src/main/java/com/chromascape/scripts/DemoMiningScript.java +++ b/src/main/java/com/chromascape/scripts/DemoMiningScript.java @@ -4,6 +4,7 @@ import com.chromascape.utils.actions.Idler; import com.chromascape.utils.actions.ItemDropper; import com.chromascape.utils.actions.PointSelector; +import com.chromascape.utils.core.screen.topology.MatchResult; import com.chromascape.utils.core.screen.topology.TemplateMatching; import com.chromascape.utils.core.screen.window.ScreenManager; import java.awt.Point; @@ -71,9 +72,13 @@ private void clickOre() { * @return {@code true} if the inventory is full, otherwise {@code false} */ private boolean isInventoryFull() { + // Get the zone Rectangle invSlot = controller().zones().getInventorySlots().get(27); + // Create a snapshot of the zone BufferedImage invSlotImg = ScreenManager.captureZone(invSlot); - Rectangle match = TemplateMatching.match(ironOre, invSlotImg, 0.05).bounds(); - return match != null; + // Run template matching + MatchResult match = TemplateMatching.match(ironOre, invSlotImg, 0.05); + // Return the result + return match.success(); } } diff --git a/src/main/java/com/chromascape/scripts/Screenshotter.java b/src/main/java/com/chromascape/scripts/Screenshotter.java index 3617923..a8b28ef 100644 --- a/src/main/java/com/chromascape/scripts/Screenshotter.java +++ b/src/main/java/com/chromascape/scripts/Screenshotter.java @@ -25,11 +25,6 @@ public class Screenshotter extends BaseScript { public static final String ORIGINAL_IMAGE_PATH = "output/original.png"; - /** Same constructor as super (BaseScript). */ - public Screenshotter() { - super(); - } - /** * Takes a screenshot and saves it in the "/output" directory on the same level as /src. Although * in the BaseScript - this function is repeated until the specified time duration is met - Here, diff --git a/src/main/java/com/chromascape/utils/actions/PointSelector.java b/src/main/java/com/chromascape/utils/actions/PointSelector.java index e9d3cf8..0f9aa96 100644 --- a/src/main/java/com/chromascape/utils/actions/PointSelector.java +++ b/src/main/java/com/chromascape/utils/actions/PointSelector.java @@ -26,8 +26,8 @@ *
These utilities are commonly reused across scripts. The class does not perform any input @@ -39,7 +39,7 @@ * // Default heuristic distribution * Point imgPoint = PointSelector.getRandomPointInImage(templatePath, gameView, 0.15); * // Custom tightness (maybe clicking a ground item) - * Point colorPoint = PointSelector.getRandomPointInColour(gameView, "Purple", 5, 15.0); + * Point colorPoint = PointSelector.getRandomPointInColour(gameView, "Purple", 0.05, 15.0); * * *
All methods are static and thread-safe. @@ -58,7 +58,7 @@ public class PointSelector { * * @param templatePath the BufferedImage template to locate within the larger image * @param image the larger image to search inside (e.g. game view) - * @param threshold the match confidence threshold (0.0 to 1.0) required to consider a detection + * @param threshold the match confidence threshold (0.01 to 0.15) required to consider a detection * valid * @return a valid {@link Point} within the detected region, or {@code null} if no match is found */ @@ -78,7 +78,7 @@ public static Point getRandomPointInImage( * * @param templatePath the BufferedImage template to search for within the larger image view * @param image the larger image to search inside (e.g. game view) - * @param threshold the match confidence threshold (0.0 to 1.0) required to consider a detection + * @param threshold the match confidence threshold (0.01 to 0.15) required to consider a detection * valid * @param tightness the distribution divisor. Higher values (e.g., 15.0) result in a tighter * cluster around the center diff --git a/src/main/java/com/chromascape/utils/core/runtime/profile/ProfileManager.java b/src/main/java/com/chromascape/utils/core/runtime/profile/ProfileManager.java index b094d0f..7cd8eef 100644 --- a/src/main/java/com/chromascape/utils/core/runtime/profile/ProfileManager.java +++ b/src/main/java/com/chromascape/utils/core/runtime/profile/ProfileManager.java @@ -68,8 +68,9 @@ private Path resolveProfileDir() { String home = System.getProperty("user.home"); String os = System.getProperty("os.name").toLowerCase(); + Path windowsPath = Path.of(home, ".runelite/profiles2"); if (os.contains("win")) { - return Path.of(home, "AppData", "Local", "RuneLite", "profiles2"); + return windowsPath; } if (os.contains("linux")) { @@ -85,8 +86,8 @@ private Path resolveProfileDir() { return Path.of(home, "Library/Application Support/RuneLite/profiles2"); } - // Fallback (Linux standard or unknown OS) - return Path.of(home, ".runelite/profiles2"); + // Fallback + return windowsPath; } /** diff --git a/src/main/java/com/chromascape/utils/domain/zones/ZoneManager.java b/src/main/java/com/chromascape/utils/domain/zones/ZoneManager.java index f2c6538..d9fffd7 100644 --- a/src/main/java/com/chromascape/utils/domain/zones/ZoneManager.java +++ b/src/main/java/com/chromascape/utils/domain/zones/ZoneManager.java @@ -7,8 +7,6 @@ import java.awt.image.BufferedImage; import java.util.List; import java.util.Map; -import org.apache.logging.log4j.LogManager; -import org.apache.logging.log4j.Logger; /** * Manages the detection and mapping of key UI zones within the RuneLite client window, including @@ -56,8 +54,6 @@ public class ZoneManager { "/images/ui/minimap_fixed.png" }; - private static final Logger logger = LogManager.getLogger(ZoneManager.class.getName()); - /** Constructs a new ZoneManager configured for either fixed or resizable mode. */ public ZoneManager() { this.isFixed = checkIfFixed(); @@ -70,7 +66,6 @@ public ZoneManager() { *
Any exceptions during mapping are caught and logged to standard error. */ public void mapper() { - // Cache the bounds first chatBounds = locateUiElement(zoneTemplates[2]); ctrlPanelBounds = locateUiElement(zoneTemplates[1]); @@ -80,14 +75,15 @@ public void mapper() { mouseOver = new Rectangle(0, 0, 407, 26); + Rectangle windowBounds = ScreenManager.getWindowBounds(); + gridInfo = SubZoneMapper.mapGridInfo(new Rectangle(5, windowBounds.height - 226, 129, 56)); + if (isFixed) { minimapBounds = locateUiElement(zoneTemplates[3]); minimap = SubZoneMapper.mapFixedMinimap(minimapBounds); - gridInfo = SubZoneMapper.mapGridInfo(new Rectangle(9, 24, 129, 56)); } else { minimapBounds = locateUiElement(zoneTemplates[0]); minimap = SubZoneMapper.mapMinimap(minimapBounds); - gridInfo = SubZoneMapper.mapGridInfo(new Rectangle(5, 20, 129, 56)); } } diff --git a/src/main/resources/profiles/ChromaScape.properties b/src/main/resources/profiles/ChromaScape.properties index 2520f27..6d01e76 100644 --- a/src/main/resources/profiles/ChromaScape.properties +++ b/src/main/resources/profiles/ChromaScape.properties @@ -1,18 +1,22 @@ #RuneLite configuration -#Thu Sep 25 00:29:49 BST 2025 +#Fri Jul 10 17:34:56 BST 2026 statusbars.rightBarMode=PRAYER +zulrahhelper.rangeColor=-15089148 chatfilter.filterGameChat=false runelite.crowdsourcingplugin=false groundMarker.markerColor=-16711936 grandexchange.quickLookup=true chatcommands.bh=true +pinggraph.warnGraphBorderColor=1683624209 pets.togglePetOwnerColor=WHITE BetterNpcHighlight.swTrueTileColor=-16711681 chatcommands.ca=true runelite.hiscoreplugin=false idlenotifier.specNotification={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} +guardiansOfTheRiftHelper.potentialUnbalanceColor=-65536 inventorysetups.highlightColor=-65536 BetterNpcHighlight.respawnFillColor=335609855 +guardiansOfTheRiftHelper.colorGuardiansWithInsufficientRunecraftingLevelColor=-20561 statusbars.hideAfterCombatDelay=0 grandexchange.enableNotifications=true agility.markHighlight=-65536 @@ -23,7 +27,9 @@ unpottedreminder.notifyCooldown=5 timers.showTzhaarTimers=true fpscontrol.limitFpsUnfocused=false party.sounds=true +inventorysetups.groundItemMenuHighlightColor=-7876870 wintertodt.notifyCold=INTERRUPT +shortestpath.unreachableTargetDistanceThreshold=2 raids.layoutMessage=false driftnet.showNetStatus=true nightmareZone.absorptionnotification=true @@ -31,15 +37,17 @@ idlenotifier.sixHourLogout={"enabled"\:true,"initialized"\:false,"override"\:fal corp.leftClickCore=true screenshot.ccKick=false xpdrop.meleePrayerColor=-15368019 +worldmap.mooringLocationShortcutIcon=true coxlightcolors.specifyAncestralRobeTop=false BetterNpcHighlight.swTrueTileHighlight=false runelite.instancemapplugin=false +pinggraph.fontName=Runescape Small ultimatenmz.recurrentDamageEffectType=FADE_IN_OUT -runelite.statusbarsplugin=true +runelite.statusbarsplugin=false interfaceStyles.newCursors=false -hd.vsyncMode=ADAPTIVE -idlenotifier.highEnergyNotification={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} itemCharge.showBraceletOfSlaughterCharges=true +idlenotifier.highEnergyNotification={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} +hd.vsyncMode=ADAPTIVE runelite.opponentinfoplugin=true screenshot.includeFrame=true music.granularSliders=true @@ -49,15 +57,17 @@ BetterNpcHighlight.swTileHighlight=false teamCapes.minimumCapeCount=1 ultimatenmz.powerSurgeAlertColor=-8960 hd.fogDepth=5 +coxscoutingqol.lastUpdateMessageVer=0 implings.magpieColor=-7434733 runecraft.showNature=true menuentryswapper.swapQuick=true +inventorysetups.showWornItemsFilter=All shortestpath.postTransports=false runecraft.hightlightDarkMage=true tearsofguthix.blueTearsColor=1677787135 tileindicators.destinationTileBorderWidth=2.0 -grounditems.defaultColor=-1 worldmap.fairyRingTooltips=true +grounditems.defaultColor=-1 hd.enableShadowTransparency=true shortestpath.useSeasonalTransports=false tictac7x-rooftops.obstacle_unavailable=1358935040 @@ -87,12 +97,12 @@ screenshot.valuableDrop=false statusbars.barWidth=20 itemstat.absolute=true hd.fogDepthMode=DYNAMIC +shortestpath.usePohObelisk=false ultimatenmz.minimumHPNotification=true runelite.bosstimersplugin=false menuentryswapper.swapGEItemCollect=DEFAULT zoom.rightClickMovesCamera=false menuentryswapper.swapBait=false -banktags.tagtabs=rune drags skillstabprogressbars.showOnlyOnHover=false attackIndicator.warnForStrength=false runelite.smeltingplugin=false @@ -115,14 +125,18 @@ chatnotification.notifyOnPM=false itemidentification.showPlanks=false attackIndicator.warnForMagic=false BetterNpcHighlight.swTrueTileLines=REG +zulrahhelper.displayPrayer=false Gauntlet.overlayTornadoes=true fishing.flyingFishNotification=false BetterNpcHighlight.clickboxRaveSpeed=6000 Gauntlet.overlayBossPrayer=false +WildernessPlayerAlarm.flashControl=NORMAL radiusmarkers.includeInteractionRange=false +inventorysetups.enableDisplayColor=false ultimatenmz.overloadRunOutEffectType=FADE_IN_OUT xpTracker.wiseOldManOpenOption=true party.recolorNames=true +shortestpath.costBoats=0 agility.highlightPortals=false gpu.expandedMapLoadingChunks=3 shortestpath.useMagicCarpets=true @@ -135,11 +149,14 @@ menuentryswapper.swapJewelleryBox=false npcUnaggroArea.npcUnaggroAreaColor=-256 unpottedreminder.timeout=10 ultimatenmz.showMinimumHPIcon=true +inventorysetups.addDuplicatesInLayouts=true prayer.prayerFlickColor=-16711681 +coxscoutingqol.showUpdateMessage=true dpscounter.showDamage=false runelite.barbarianassaultplugin=false worldlocation.tileLocation=false BetterNpcHighlight.respawnTimerColor=-1 +shortestpath.costMinecarts=0 gpu.fpsTarget=60 idlenotifier.spec=1 menuentryswapper.swapFill=true @@ -148,8 +165,10 @@ Gauntlet.countPlayerAttacks=true BetterNpcHighlight.tagLegend=\#\#\# Valid Style Format\:\n\nTile \= "t", "tile" \nTrue Tile \= "tt", "truetile" \nSW Tile \= "sw", "swt", "swtile", "southwesttile", "southwest", "southwestt" \nSW True Tile \= "swtt", "swtruetile", "southwesttruetile", "southwesttt" \nHull \= "h", "hull" \nArea \= "a", "area" \nOutline \= "o", "outline" \nClickbox \= "c", "clickbox", "box" \nTurbo \= "tu", "turbo" \n slayer.points=-1 runelite.musicplugin=false +banktaglayouts.convertAll=false timers.showCannon=true EventsAPI.Base\ Endpoint=http\://localhost\:8081/api/ +guardiansOfTheRiftHelper.mindSpawn={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} prayer.showPrayerDoseIndicator=true bank.blockJagexAccountAd=false grounditems.notifyTier=OFF @@ -168,7 +187,9 @@ runelite.ammoplugin=false runelite.menuentryswapperplugin=true screenshot.displayDate=true textrecolor.transparentPublicChatHighlight=-1 +banktaglayouts.whichPlugin=BOTH roofremoval.overridePOH=false +pinggraph.warnOverlayBorderToggle=false grounditems.dontHideUntradeables=true hunterplugin.hexColorOpenTrap=-256 questhelper.showOverlayPanel=true @@ -181,12 +202,14 @@ interacthighlight.npcAttackHoverHighlightColor=-1862271232 gpu.brightTextures=false stretchedmode.integerScaling=false BetterNpcHighlight.outlineRave=false +hd.shadowFiltering=SMOOTH mining.statTimeout=5 chatcommands.price=true specialcounter.bulwarkThreshold=0 keyremapping.f10=48\:0 textrecolor.transparentPrivateMessageReceivedHighlight=-1 keyremapping.f12=61\:0 +guardiansOfTheRiftHelper.essencePileColor=-16711936 inventorysetups.highlightStackDifference=false keyremapping.f11=45\:0 hd.fSaturation=100 @@ -195,6 +218,7 @@ objectindicators.markerColor=-16711681 shortestPath.drawMinimap=true tileindicators.destinationTileFillColor=838860800 shortestpath.drawTiles=true +pinggraph.warnPingVal=100 worldmap.arceuusSpellbookIcon=true fishing.overlayColor=-15732752 specialcounter.infobox=true @@ -202,6 +226,8 @@ hd.fpsTarget=60 worldlocation.tileLines=false playerindicators.nonClanMemberColor=-65536 hd.seasonalHemisphere=NORTHERN +shortestpath.costSeasonalTransports=0 +hd.infernalCape=HD screenshot.rewards=true hd.macosIntelWorkaround=false xpTracker.skillTabOverlayMenuOptions=true @@ -211,10 +237,13 @@ bankxpvalue.itemXpTooltips=true inventorytags.tagUnderline=false motherlode.showMiningState=true hd.textureResolution=RES_256 +pinggraph.rightLabel=PINGMAX hd.colorBlindnessIntensity=100 inventorysetups.hideHelpButton=false +zulrahhelper.displayAttack=false blastmine.hexTimerColor=-2542080 menuentryswapper.npcShiftClickWalkHere=true +guardiansOfTheRiftHelper.guardianShowRuneIcons=true npcindicators.ignorePets=true woodcutting.highlightGlowingRoots=true shortestpath.calculationCutoff=5 @@ -248,8 +277,11 @@ playerindicators.highlightFriendsChat=ENABLED bankxpvalue.keepFixed=false ultimatenmz.showAbsorptionIcon=true hd.saturation=DEFAULT +hd.pohThemeEnvironments=true BetterNpcHighlight.debugNPC=false +shortestpath.costGrappleShortcuts=0 slayer.targetColor=-65536 +interacthighlight.itemHoverHighlightColor=-1878982657 chatfilter.filterClanChat=false hd.projectileLights=true unpottedreminder.flashColor2=-1775095246 @@ -258,6 +290,7 @@ timers.showHealGroup=true recentlyKilledHighlight.outlineFeather=0 inventorysetups.bankFilter=false ultimatenmz.minimumHPEffectSpeed=DEFAULT +hd.powerSaving=false worldlocation.regionLineColour=-16711936 roofremoval.removeBetween=true vanguards.wanderRange=false @@ -273,16 +306,19 @@ banktags.tab= inventorysetups.autoEquip=true implings.showbaby=NONE hd.sceneScalingMode=LINEAR +guardiansOfTheRiftHelper.hidePlaceCell=false runelite.cannonplugin=false grandexchange.enableGELimitReset=true party.statusOverlayStamina=false runelite.npcindicatorsplugin=true skillstabprogressbars.darkenType=XP200m radiusmarkers.defaultRadiusInteraction=1 +guardiansOfTheRiftHelper.airSpawn={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} Gauntlet.displayTimerWidget=true questhelper.stewBoostsPanel=false motherlode.showVeins=true BetterNpcHighlight.highlightMenuNames=false +guardiansOfTheRiftHelper.colorGuardiansWithInsufficientRunecraftingLevel=false driftnet.highlightUntaggedFish=true MahoganyHomes.highlightHotspots=true timers.showDivine=true @@ -292,15 +328,20 @@ prayer.prayerIndicatorOverheads=false tileindicators.highlightHoveredTile=false ultimatenmz.overloadRunOutColor=-10658981 ultimatenmz.ultimateForceEffectType=FADE_IN_OUT +zulrahhelper.pointSize=6 nightmareZone.recurrentdamagenotification=false npcindicators.borderWidth=3.0 +pinggraph.warningOverlayBorderColor=1683624209 questhelper.boostColour=-14336 +inventorysetups.sectionSorting=false chatcommands.clue=true +hd.cpuUsageLimit=MAX skillstabprogressbars.goalBarEndColor=-65408 tileindicators.hoveredTileBorderWidth=2.0 hd.groundTextures=true worldmap.questStartTooltips=true nightmareZone.overloadearlywarningseconds=10 +inventorysetups.sectionModeHotkey=0\:0 radiusmarkers.defaultColourHunt=-33024 screenshot.valuableDropThreshold=0 attackIndicator.warnForAttack=false @@ -318,7 +359,9 @@ runelite.infoplugin=false shortestpath.useQuetzals=true hd.pluginUpdateMessage=0 worldlocation.gridInfoType=UNIQUE_ID +inventorysetups.migratedV2=True EventsAPI.Bearer\ Token=Credit To llamaXc and OSRSEvents +inventorysetups.migratedV3=True playerindicators.colorPlayerMenu=true grandexchange.geSearchMode=DEFAULT xpglobes.Progress\ orb\ outline\ color=-16777216 @@ -327,33 +370,45 @@ bosshealthindicator.showPanel=true timetracking.defaultTimerMinutes=5 specialcounter.specDropColor=-1 textrecolor.opaqueGameMessageHighlight=-1109984 +guardiansOfTheRiftHelper.startTimerOverlayLocation=Info_Box runelite.automaticResizeType=KEEP_GAME_SIZE itemprices.hideInventory=true hd.fillGapsInTerrain=true tictac7x-rooftops.mark_of_grace=-65536 itemstat.showStatsInBank=true itemCharge.showExpeditiousBraceletCharges=true +pinggraph.toggleBehind=false pets.menu=BOTH coxlightcolors.twistedKit=-16711936 interacthighlight.borderWidth=4 +pinggraph.graphLineColor=-256 Gauntlet.iconSize=20 +guardiansOfTheRiftHelper.cosmicSpawn={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} cengineercompleted.selectAnySoundToTestPlayIt=LEVEL_UP hunterplugin.maniacalMonkeyNotify=false +guardiansOfTheRiftHelper.mediumGuardianColor=-16776961 banktaglayouts.autoLayoutStyle=ZIGZAG +guardiansOfTheRiftHelper.outlineCellTileLocation=Closest gpu.anisotropicFilteringLevel=0 mta.telekinetic=true runelite.screenshotplugin=false +BetterNpcHighlight.drawBeneathPerformanceMode=false BetterNpcHighlight.entityHiderCommands=true +shortestpath.costTeleportationSpells=0 inventorysetups.requireActivePanelFilter=false +suppliestracker.fireTomeUsesSearing=false itemCharge.showExplorerRingCharges=true tileindicators.hoveredTileFillColor=838860800 specialcounter.dragonWarhammerThreshold=0 zoom.rightClickMenuBlocksCamera=true +inventorysetups.disableBankTabBarDeprecated=false woodcutting.highlightLeprechaunRainbow=true +guardiansOfTheRiftHelper.outlineDepositPool=true itemCharge.ringOfForgingNotification=true pets.showOther=NAME_ONLY menuentryswapper.item_11190=3 unpottedreminder.enableMelee=true +shortestpath.useTeleportationSpellsHome=true hd.fContrast=100 runelite.tooltipFontType=SMALL npcindicators.ignoreDeadNpcs=true @@ -362,6 +417,7 @@ coxtimers.showOlmPhaseTimers=true timers.showRejuvTimer=true cannon.showInfobox=false openosrs.externalRepos= +runelite.clientMaximized=true interfaceStyles.oldschoolCritFont=DEFAULT hd.underwaterCaustics=true worldhopper.showMessage=true @@ -388,12 +444,13 @@ chatcommands.killcount=true implings.showyoung=NONE raids.scoutOverlayAtBank=true questhelper.debugColor=-65281 +shortestpath.costConsumableTeleportationItems=0 fpscontrol.maxFps=50 runelite.tooltipPosition=UNDER_CURSOR inventoryViewer.hiddenDefault=false itemstat.alwaysShowBaseStats=false questhelper.showSymbolOverlay=true -grounditems.hiddenItems=Vial, Ashes, Coins, Bones, Bucket, Jug, Seaweed +grounditems.hiddenItems= statussocket.endpoint=http\://localhost\:5000 fishing.onlyCurrent=false gpu.vsyncMode=ADAPTIVE @@ -415,12 +472,14 @@ runelite.kourendlibraryplugin=false woodcutting.highlightPheasantNest=true cannon.showCannonSpots=true menuentryswapper.swapHomePortal=HOME +pinggraph.warningFontToggle=false entityhider.hideClanChatMembers=true agility.agilityArenaTimer=false randomevents.notifyMaze={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} barrows.brotherLocColor=-16711681 playerindicators.teamMemberColor=-15503625 BetterNpcHighlight.taskFillColor=350239793 +zulrahhelper.nextPhaseHotkey=0\:0 agility.highlightSepulchreSkilling=false worldmap.kourendTaskTooltips=true party.statusOverlaySpec=false @@ -442,6 +501,8 @@ xpTracker.saveState=true playerindicators.highlightOthers=DISABLED runelite.blastmineplugin=false chatcommands.bhRogue=true +BetterNpcHighlight.tagStyleModeSet=["TILE"] +cengineercompleted.delayCoXCollectionLogAnnouncements=true banktaglayouts.showAutoLayoutButton=true specialcounter.defenceDrainInfobox=true worldhopper.regionFilter=[] @@ -451,6 +512,7 @@ worldmap.fishingSpotTooltips=true tictac7x-rooftops.mark_of_grace_stop=true cengineercompleted.announceGrubbyKeyDrop=true zoom.outerLimit=-130 +interacthighlight.playerHoverHighlightColor=-1878982657 inventorygrid.showHighlight=true itemCharge.showBloodEssenceCharges=true motherlode.showLootIcons=false @@ -460,6 +522,7 @@ animationSmoothing.smoothObjectAnimations=true runelite.playerindicatorsplugin=false questhelper.devShowOverlayOnLaunch=false BetterNpcHighlight.trueTileHighlight=false +gpu.colorBlindIntensity=100 runelite.flashNotification=DISABLED banktaglayouts.tutorialMessage=true agility.trapOverlay=false @@ -467,6 +530,9 @@ runelite.cookingplugin=false nightmareZone.absorptioncolorbelowthreshold=-65536 timers.showLiquidAdrenaline=true ultimatenmz.overloadRunoutTime=20 +shortestpath.usePohMountedItems=true +guardiansOfTheRiftHelper.showPointsOverlay=true +interacthighlight.itemShowInteract=true optimal-quest-guide.requirementMetColor=-9510546 chatcommands.pets=true shortestpath.useTeleportationBoxes=true @@ -477,9 +543,14 @@ menuentryswapper.shopBuy=BUY_50 menuentryswapper.swapDepositItems=false bank.rightClickPlaceholders=false runelite.dailytasksplugin=false +interacthighlight.playerShowHover=true +inventorysetups.Deprecated=false +shortestpath.includeBankPath=false BetterNpcHighlight.drawBeneathLimit=10 +guardiansOfTheRiftHelper.potentialPoints=true discord.showDungeonActivity=true radiusmarkers.includeHuntRange=false +cengineercompleted.announceGridTiles=true groundMarker.region_12850=[{"regionId"\:12850,"regionX"\:8,"regionY"\:20,"z"\:2,"color"\:"\#FFFFFF00"}] itemCharge.showWateringCanCharges=true entityhider.hideNPCs=false @@ -490,13 +561,17 @@ grounditems.insaneValuePrice=0 ultimatenmz.drawpowersurgelocation=true coxlightcolors.specifyAncestralRobeBottom=false runelite.screenmarkerplugin=false +shortestpath.colourPathUnreachable=-3659536 grandexchange.showTotal=true +shortestpath.costTeleportationPortals=0 +pinggraph.toggleMaxMin=false hd.experimentalShadingMode=DEFAULT ultimatenmz.minimumHPEffectType=FADE_IN_OUT shortestpath.recalculateDistance=10 bank.rightClickBankEquip=false recentlyKilledHighlight.highlightOutline=false menuentryswapper.swapArdougneCloak=WEAR +easyempty.swapStam=true questhelper.showTextHighlight=true slayer.superiornotification=true grounditems.highlightedItems= @@ -522,29 +597,39 @@ improvedtileindicators.overlaysBelowNPCs=true vanguards.mageColor=-16711681 idlenotifier.prayerNotification={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} bosshpreorder.tobBarOffset=25 -runelite.clientBounds=1\:0\:919\:1000\:g -screenshot.friendDeath=false +runelite.clientBounds=960\:249\:765\:800\:g +zulrahhelper.mageColor=-16763905 +zulrahhelper.rangePointColor=-1 playerindicators.drawNonClanMemberNames=false +screenshot.friendDeath=false +pinggraph.simpleLabels=false runelite.notificationTray=false entityhider.hideThralls=false BetterNpcHighlight.tileHighlight=false -dpscounter.autopause=false +shortestpath.usePohFairyRing=false loginscreen.pasteenabled=false -specialcounter.specDrops=true -menuentryswapper.swapTan=false +dpscounter.autopause=false discord.showRegionsActivity=true +menuentryswapper.swapTan=false +specialcounter.specDrops=true boosts.displayBoosts=BOTH -timers.showStamina=true +puzzlesolver.dotColor=-256 nightmareZone.zappernotification=false +timers.showStamina=true pets.skipConvexHull=false grounditems.highValueColor=-27136 +inventorysetups.groundItemMenuHighlight=false implings.showearth=NONE +guardiansOfTheRiftHelper.lawSpawn={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} +inventorysetups.persistHotKeysDuringChatInput=false cengineercompleted.announceBrimstoneKeyDrop=true unpottedreminder.meleeAlertStyle=ATTACK_AND_STRENGTH worldmap.ancientSpellbookIcon=true +hd.experimentalZoneStreaming=true BetterNpcHighlight.trueTileColor=-16711681 xpdrop.rangePrayerColor=-15368019 radiusmarkers.defaultColourAttack=-8454144 +pinggraph.bottomLeftLabel=NONE cengineercompleted.easterEggs=true cengineercompleted.needToRemindAboutDisablingLeaguesTasks=true grounditems.lowValueColor=-5635841 @@ -554,6 +639,7 @@ clanchat.joinLeaveTimeout=20 hd.tzhaarHD=true antiDrag.disableOnCtrl=true shortestpath.colourCollisionMap=-2147450625 +guardiansOfTheRiftHelper.muteApprentices=true EventsAPI.emitLoginState=true menuentryswapper.swapStairsShiftClick=CLIMB randomevents.notifyTwin={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} @@ -566,6 +652,7 @@ agility.highlightStick=false woodcutting.highlightBeeHive=true kourendLibrary.hideDuplicateBook=true playerindicators.clanchatMenuIcons=true +guardiansOfTheRiftHelper.natureSpawn={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} implings.eclecticColor=-7234747 questhelper.showFullRequirements=false hd.brightness2=20 @@ -577,6 +664,7 @@ menuentryswapper.swapTrade=true coxlightcolors.specifyDragonHunterCrossbow=false zoom.ignoreExamine=false idlenotifier.prayer=1 +pinggraph.warningBGColor=1090461214 clanchat.clanChatShowJoinLeave=false Gauntlet.uniqueAttackVisual=false xpTracker.pauseSkillAfter=0 @@ -599,17 +687,21 @@ devtools.inspectorAlwaysOnTop=false coxlightcolors.specifyAncestralHat=false textrecolor.opaquePrivateMessageSentHighlight=-16767101 barrows.showChestValue=true +guardiansOfTheRiftHelper.weakGuardianColor=-1 minimap.hideMinimap=false coxlightcolors.specifyDinhsBulwark=false hd.flatShading=false BetterNpcHighlight.hullRaveSpeed=6000 +guardiansOfTheRiftHelper.portalSpawn={"enabled"\:true,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} interfaceStyles.alwaysStack=false ultimatenmz.absorptionAlertColor=-16731137 woodcutting.showRespawnTimers=false loginscreen.loginScreen=OFF chatcommands.clog=true pyramidplunder.highlightDoorsColor=-16711936 +pinggraph.OverlayBorderColor=1175523601 idlenotifier.highEnergy=100 +hd.legacyRenderer2=false opponentinfo.showOpponentsInMenu=false zoom.invertPitch=false timers.showStaffOfTheDead=true @@ -624,6 +716,7 @@ bank.showTP=true attackIndicator.removeWarnedStyles=false tileindicators.highlightDestinationTile=true fishing.showTiles=true +WildernessPlayerAlarm.ignoreFriendsChat=false ultimatenmz.overloadExpiredEffectSpeed=DEFAULT improvedtileindicators.destinationTileBorderWitdh=2.0 objectindicators.region_8253=[{"id"\:16700,"name"\:"Bank booth","regionId"\:8253,"regionX"\:51,"regionY"\:16,"z"\:0,"color"\:"\#FFFFFF00","fillColor"\:"\#15FFFF00"}] @@ -637,6 +730,8 @@ BetterNpcHighlight.respawnTileWidth=2 itemCharge.recoilNotification=false optimal-quest-guide.inProgressColor=-995461 groundMarker.region_6223=[{"regionId"\:6223,"regionX"\:49,"regionY"\:20,"z"\:0,"color"\:"\#FFFF0000"}] +zulrahhelper.rangePointShape=X +BetterNpcHighlight.highlightMenuNamesLevel=true BetterNpcHighlight.areaHighlight=false itemprices.showHAValue=true virtuallevels.virtualTotalLevel=true @@ -646,15 +741,20 @@ tictac7x-rooftops.version=v0.6.2 bank.seedVaultValue=true menuentryswapper.swapPreviousTeleport=false BetterNpcHighlight.outlineFeather=2 +pinggraph.warnMaxToggle=false motherlode.showGemsFound=true +pinggraph.leftLabel=LATENCY raids.scoutOverlay=true runelite.uiWindowOpacity=100 runelite.entityhiderplugin=true hunterplugin.hexColorTransTrap=-14336 +guardiansOfTheRiftHelper.catalyticGuardianColor=-65536 shortestpath.useGnomeGliders=true discord.elapsedTime=ACTIVITY radiusmarkers.borderWidth=3 attackIndicator.hideAutoRetaliate=false +inventorysetups.setupsOrderV3_=[] +hd.experimentalIndirectDraw=DEFAULT shortestpath.tileCounterStep=1 menuentryswapper.swapPay=true inventorytags.groupColor1=-65536 @@ -668,6 +768,7 @@ unpottedreminder.alertWhenNotInteracting=false BetterNpcHighlight.swTrueTileFillColor=335609855 pyramidplunder.hideTimer=true grounditems.mediumValueColor=-6684775 +guardiansOfTheRiftHelper.earthSpawn={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} inventorytags.groupColor5=-256 barbarianAssault.waveTimes=true inventorytags.groupColor6=-16711681 @@ -675,6 +776,8 @@ runelite.inventorytagsplugin=false coxlightcolors.specifyDexPrayerScroll=false coxlightcolors.specifyElderMaul=true vanguards.showDmgToReset=true +guardiansOfTheRiftHelper.inactivePortalOverlayLocation=Info_Box +inventorysetups.defaultLayout=PRESET thieving.gumdropFactor=0 screenshot.baHighGamble=false grounditems.showMenuItemQuantities=false @@ -682,21 +785,28 @@ runecraft.showRifts=true shortestpath.drawTransports=false chatcommands.clearEntireChatBox=8\:128 playerindicators.drawPlayerTiles=false +shortestpath.costAgilityShortcuts=0 runelite.friendnotesplugin=false recentlyKilledHighlight.highlightTile=false shortestpath.showTileCounter=DISABLED +inventorysetups.removeBankTabSeparatorDeprecated=false radiusmarkers.includeWanderRange=true screenshot.duels=false +pinggraph.warningOverlayToggle=false questhelper.showWorldLines=true discord.showMinigameActivity=true BetterNpcHighlight.slayerRaveSpeed=6000 +itemidentification.showCoralFrags=false +guardiansOfTheRiftHelper.guardianOutline=true itemstat.colorBetterSomecapped=-6492621 gpu.hideUnrelatedMaps=true +WildernessPlayerAlarm.ignoreClan=true idlenotifier.movementidle={"enabled"\:false,"initialized"\:true,"override"\:true,"tray"\:false,"requestFocus"\:"OFF","sound"\:"OFF","volume"\:100,"timeout"\:10000,"gameMessage"\:true,"flash"\:"DISABLED","flashColor"\:"\#46FF0000","sendWhenFocused"\:true} woodcutting.forestryFloweringTreeNotification={"enabled"\:true,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} chatfilter.stripAccents=false BetterNpcHighlight.swTrueTileRaveSpeed=6000 ultimatenmz.absorptionnotification=true +inventorysetups.manualBankFilter=false teamCapes.friendsChatMemberCounter=false discord.showBossActivity=true runelite.gameSize=800x800 @@ -704,12 +814,17 @@ questhelper.showRuneliteObjects=true friendlist.showWorldOnLogin=false hiscore.bountylookup=false raids.scoutOverlayInRaid=false +shortestpath.costWildernessObelisks=0 +shortestpath.usePoh=false specialcounter.emberlightThreshold=0 timers.showBoosterTimers=true +coxscoutingqol.configVer=0 worldmap.farmingpatchTooltips=true kourendLibrary.alwaysShowVarlamoreEnvoy=false +guardiansOfTheRiftHelper.notifyBeforeGame={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} fishing.showFishingStats=false randomevents.notifyDunce=false +inventorysetups.groundItemMenuSwapPriority=OUT worldhopper.displayPing=false banktaglayouts.showCoreRuneliteLayoutOptions=false unpottedreminder.useWhitelist=false @@ -743,11 +858,13 @@ runelite.miningplugin=false questhelper.highlightStyleObjects=OUTLINE defaultworld.lastWorld=382 timers.showArceuus=true -xpTracker.logoutPausing=false +xpTracker.logoutPausing=true loottracker.syncPanel=true raids.enableLayoutWhitelist=false zoom.middleClickMenu=false +inventorysetups.persistHotKeysOutsideBank=false agility.showClickboxes=false +guardiansOfTheRiftHelper.guardianBorderWidth=2 worldhopper.menuOption=true BetterNpcHighlight.drawBeneath=false chatnotification.notifyOnHighlight=false @@ -757,6 +874,8 @@ npcaccessibilitytagger.colorSwatch=-1 antiDrag.dragDelay=20 questhelper.targetOverlayColor=-16711681 menuentryswapper.swapCrush=false +inventorysetups.migratedCoreBTL=true +pinggraph.fontStyle=REGULAR minimap.zoom=true tempoross.vulnerableNotification=false ultimatenmz.absorptionthreshold=50 @@ -770,16 +889,20 @@ timers.showCurseOfTheMoons=true playerindicators.partyMemberNameColor=-1410213 statusbars.enableRestorationBars=false itemidentification.showWines=false +guardiansOfTheRiftHelper.outlineCellType=Weak implings.gourmetColor=-5667998 runelite.rememberScreenBounds=true chatnotification.notifyOnDuel=false radiusmarkers.includeAggressionRange=true xpTracker.progressBarLabel=PERCENTAGE +shortestpath.costMagicCarpets=0 npcaccessibilitytagger.fontStyle=RUNESCAPE +zulrahhelper.resetPhasesHotkey=0\:0 itemprices.showAlchProfit=false blastfurnace.showCofferTime=true worldlocation.tileLineWidth=1 prayer.prayerBarHideIfNonCombat=false +WildernessPlayerAlarm.flashColor=1191182080 runelite.corpplugin=false optimal-quest-guide.completedColor=-9510546 hd.experimentalTiledLightingImageStore=true @@ -787,14 +910,20 @@ textrecolor.opaqueClanChatInfoHighlight=-65536 questhelper.showWorldMapPoint=true keyremapping.cameraRemap=true fpscontrol.drawFps=true +pinggraph.graphTextColor=-232 randomevents.notifyAll=false +inventorysetups.panelView=STANDARD runelite.panelToggleKey=123\:128 improvedtileindicators.maxNPCsDrawn=10 shortestpath.useCanoes=false +pinggraph.graphTicks=false +pinggraph.warningLineToggle=false +inventorysetups.useLayouts=true chatnotification.highlightOwnName=true agility.highlightMarks=false runelite.warningOnExit=LOGGED_IN npcindicators.highlightcolor_1526=-15732752 +WildernessPlayerAlarm.ignoreIgnored=false wiki.leftClickSearch=false grounditems.insaneValueColor=-39246 tictac7x-rooftops.debug=false @@ -810,26 +939,33 @@ pyramidplunder.highlightContainersColor=-256 minimap.player=-1 runelite.worldlocationplugin=true shortestpath.useAgilityShortcuts=true +easyempty.emptyPouches=true fishing.showNames=false menuentryswapper.swapBones=false BetterNpcHighlight.swTileFillColor=335609855 runelite.coxlightcolorsplugin=false skillCalculator.automaticUpdating=false textrecolor.transparentClanGuestInfoHighlight=-65536 +BetterNpcHighlight.globalFillColor=335609855 screenshot.kingdom=true +pinggraph.hideGraph=false +pinggraph.warningBGToggle=false metronome.tockVolume=0 itemidentification.identificationType=SHORT entityhider.hidePlayers2D=true objectindicators.highlightClickbox=true skillstabprogressbars.showOnlyGoals=false +zulrahhelper.autoHide=true skillstabprogressbars.barHeight=2 cengineercompleted.announceLeaguesTasks=true randomevents.notifyMime={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} +shortestpath.costGnomeGliders=0 ultimatenmz.zappernotification=true +guardiansOfTheRiftHelper.notifyGuardianFragments={"enabled"\:true,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} herbiboar.showObject=true -banktags.item_2552=rune drags boosts.displayNextBuffChange=BOOSTED radiusmarkers.defaultRadiusHunt=1 +shortestpath.costFairyRings=0 itemidentification.showButterflyMothJars=false runelite.mousehighlightplugin=false runepouch.runePouchOverlayMode=BOTH @@ -870,9 +1006,13 @@ skillstabprogressbars.showGoals=false statusbars.leftBarMode=HITPOINTS runelite.itemchargeplugin=false dpscounter.bossDamage=false +puzzlesolver.dotEndColor=-65536 itemidentification.showTeleportScrolls=false fightcavewaves.waveDisplay=BOTH +guardiansOfTheRiftHelper.pointBalanceHelper=false idlenotifier.hitpoints=1 +hd.experimentalRoofShadows=false +shortestpath.pohJewelleryBoxTier=ORNATE objectindicators.outlineFeather=0 poh.showAltar=true runelite.objectindicatorsplugin=true @@ -883,6 +1023,7 @@ runelite.loginscreenplugin=false npcUnaggroArea.npcAggroAreaColor=1694498560 randomevents.notifyGenie=false unpottedreminder.enableMagic=false +banktaglayouts.removeRowKeybind=0\:0 hd.seasonalTheme=AUTOMATIC MahoganyHomes.displayHintArrows=true runelite.itemstatplugin=false @@ -894,6 +1035,7 @@ radiusmarkers.defaultRadiusWander=5 runelite.containInScreen2=RESIZING textrecolor.opaquePublicChatHighlight=-16777216 cengineercompleted.announceLevelUpIncludesVirtual=false +zulrahhelper.phaseSelection1Hotkey=0\:0 interacthighlight.objectShowHover=true grandexchange.showExact=false BetterNpcHighlight.hullWidth=2.0 @@ -909,6 +1051,7 @@ grandexchange.showActivelyTradedPrice=true customcursor.cursorStyle=RS3_GOLD worldhopper.ping=true questhelper.outlineFeathering=4 +cengineercompleted.needToInformAboutDelayedCoxColLogs=false BetterNpcHighlight.taskColor=-2081743 randomevents.notifyPrison={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} questhelper.autoOpenSidebar=true @@ -922,6 +1065,9 @@ poh.showJewelleryBox=true shortestPath.drawCollisionMap=false optimal-quest-guide.searchCompletedQuests=false barbarianAssault.showHealerBars=true +zulrahhelper.phaseSelection3Hotkey=0\:0 +pinggraph.graphBackgroundColor=2014384401 +pinggraph.warningGraphBGColor=1090461214 textrecolor.transparentClanChatMessageHighlight=-1 wintertodt.notifyEmptyInv=true ultimatenmz.drawrecurrentdamagelocation=true @@ -934,6 +1080,7 @@ tearsofguthix.greenTearsColor=1677786880 party.pingHotkey=0\:0 suppliestracker.vorkathsHead=false xpdrop.showdamagedrops=NONE +pinggraph.warningGraphBGToggle=false menuentryswapper.swapEssenceMineTeleport=false minimap.friend=-16711936 tempoross.fireNotification=false @@ -941,13 +1088,17 @@ playerindicators.clanChatMemberColor=-14413909 vanguards.rangeColor=-16711936 itemidentification.showImplingJars=false ultimatenmz.minimumHPAlertColor=-2273535 +zulrahhelper.phaseSelection2Hotkey=0\:0 timers.showFreezes=true pyramidplunder.timerLowWarning=30 worldhopper.worldTypeFilter=[] runelite.timestampplugin=true +pinggraph.warningGraphBorderToggle=false grounditems.textOutline=true implings.showmagpie=NONE shortestpath.colourTransports=-2147418368 +shortestpath.costTeleportationMinigames=0 +inventorysetups.groundItemMenuSwap=false interacthighlight.objectHoverHighlightColor=-1878982657 fishing.statTimeout=1 worldmap.minigameTooltip=true @@ -963,6 +1114,7 @@ itemCharge.explorerRing=-1 boosts.compactDisplay=false BetterNpcHighlight.presetColorAmount=ZERO hunterplugin.hexColorEmptyTrap=-65536 +guardiansOfTheRiftHelper.outlineGreatGuardian=true banktaglayouts.useWithInventorySetups=false screenshot.notifyWhenTaken=true groundMarker.drawOnMinimap=false @@ -973,12 +1125,15 @@ runelite.statussocketplugin=true morghttpclient.MaxObjectDistance=1200 MahoganyHomes.worldMapIcon=true xpglobes.Progress\ arc\ width=2 +guardiansOfTheRiftHelper.bloodSpawn={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} hd.colorFilter=NONE +WildernessPlayerAlarm.flashLayer=ABOVE_SCENE runecraft.showAir=true cengineercompleted.announceAchievementDiary=true questhelper.showFan=false objectindicators.fillColor=-256 -banktaglayouts.version=1.4.33 +banktaglayouts.version=1.5.2 +itemidentification.showRepairKits=false raids.uploadScreenshot=CLIPBOARD itemCharge.showAmuletOfChemistryCharges=true objectindicators.rememberObjectColors=true @@ -990,19 +1145,24 @@ shortestpath.drawCollisionMap=false hd.objectTextures=true screenshot.playerDeath=false entityhider.hideProjectiles=true +WildernessPlayerAlarm.ignoreFriends=true runelite.itempricesplugin=false runelite.questlistplugin=false skillstabprogressbars.indent=true +puzzlesolver.movesToShow=4 chatfilter.collapseGameChat=false randomevents.notifyMoM=false hd.sceneResolutionScale=100 +guardiansOfTheRiftHelper.bodySpawn={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} tempoross.doubleSpotNotification=false hd.experimentalFlatShading=false playerindicators.drawClanMemberNames=true runelite.notificationRequestFocus=OFF screenshot.combatAchievements=true +BetterNpcHighlight.globalTileColor=-16711681 idlenotifier.oxygen=1 boosts.notifyOnBoost=true +pinggraph.graphBorderColor=1175523601 objectindicators.highlightTile=false party.statusOverlayPrayer=false entityhider.hideClanMates=true @@ -1027,6 +1187,7 @@ chatfilter.filterClan=false skillstabprogressbars.hideProgressBarWhenDarkened=false gpu.uiScalingMode=LINEAR grounditems.hotkey=0\:512 +banktaglayouts.addRowBelowKeybind=0\:0 hd.modelCacheSizeMiB=2048 bankedexperience.grabFromLootingBag=false runelite.grounditemsplugin=true @@ -1037,10 +1198,13 @@ entityhider.hideNPCs2D=false questhelper.lastversionchecked=Quest Helper has been updated to 4.7.0\! This adds the new Varlamore quests\! This also adds an integration with the Shortest Path plugin, which can be enabled in the config settings. cannon.showEmptyCannonNotification=true itemidentification.showAllotmentSeeds=false +zulrahhelper.displayVenom=false +shortestpath.costHotAirBalloons=0 timers.showBlessedCrystalScarab=true zoom.invertYaw=false discord.showSkillActivity=true worldmap.miningSiteTooltips=true +pinggraph.hideMargin=false menuentryswapper.swapHerbs=false itemstat.colorBetterUncapped=-13373901 screenshot.collectionLogEntries=true @@ -1097,6 +1261,7 @@ screenshot.hotkey=0\:0 poh.showXericsTalisman=true runelite.barrowsplugin=false vanguards.wanderColor=-3976348 +guardiansOfTheRiftHelper.overchargedGuardianColor=-65536 worldhopper.showSidebar=true ultimatenmz.removeNMZOverlay=true worldlocation.regionLines=false @@ -1107,6 +1272,7 @@ blastfurnace.showConveyorBelt=false unpottedreminder.shouldFlash=false herbiboar.showTrail=true menuentryswapper.bankWithdrawShiftClick=WITHDRAW_ALL +WildernessPlayerAlarm.timeoutToIgnore=0 runelite.raidsplugin=false timers.showPickpocketStun=true itemEditor.itemId=-1 @@ -1114,6 +1280,7 @@ timetracking.activeTab=CLOCK itemstat.colorNoChange=-1118482 menuentryswapper.swapMorytaniaLegs=WEAR wintertodt.notifyBrazierOut=true +hd.asyncModelProcessing=true blastmine.showTimerOverlay=true music.muteOtherAreaEnvironmentSounds=false regionlocker.unlockUnderground=true @@ -1144,17 +1311,22 @@ hd.groundFog=true woodcutting.forestryEnchantmentRitualNotification={"enabled"\:true,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} runelite.fontType=SMALL kourendLibrary.showTargetHintArrow=true +itemidentification.showYarn=false hd.dynamicLights=SOME runelite.menuswapperplugin=false +guardiansOfTheRiftHelper.outlineGuardiansByTier=false menuentryswapper.swapBanker=true chatfilter.filterBroad=false skillstabprogressbars.stillShowAt200m=false worldhopper.quickhopOutOfDanger=true +guardiansOfTheRiftHelper.waterSpawn={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} chatcommands.lvl=true +questhelper.regionFilterVisibility=AUTO worldhopper.quickHopRegionFilter=[] timers.showVengeance=true timers.showMenaphiteRemedy=true corp.showDamage=true +zulrahhelper.resetOnLeave=true runelite.hdplugin=false boosts.relativeBoost=false ultimatenmz.zapperAlertColor=-6225665 @@ -1174,7 +1346,6 @@ xpglobes.enableCustomArcColor=false runelite.friendlistplugin=false radiusmarkers.defaultColourWander=-256 worldlocation.instanceInfoType=TEMPLATE -banktags.icon_rune\ drags=23273 hd.shadowMode=DETAILED dailytaskindicators.showEssence=false itemidentification.showGems=false @@ -1187,11 +1358,11 @@ npcindicators.highlightSouthWestTrueTile=false wintertodt.notifySnowfall=INTERRUPT timetracking.sortOrder=NONE slayer.highlightTargets=false -banktags.item_11957=rune drags coxlightcolors.specifyDragonClaws=false fishing.harpoonfishOverlayColor=-16711936 BetterNpcHighlight.swTileColor=-16711681 coxscoutingqol.notifyRaid=true +guardiansOfTheRiftHelper.strongGuardianColor=-16711936 randomevents.notifyTurpentine={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} vanguards.showDatabox=false regionlocker.blockWalk=false @@ -1208,9 +1379,11 @@ recentlyKilledHighlight.maxNpcs=10 timers.showImbuedHeart=true openosrs.askMode=true itemprices.showGEPrice=true +zulrahhelper.displayMovementPaths=true gpu.fogDepth=0 hd.tiledLighting=true pyramidplunder.showExactTimer=true +WildernessPlayerAlarm.alarmRadius=15 clanchat.showJoinLeave=false agility.highlightSepulchreNpcs=false regenmeter.showSpecial=true @@ -1218,7 +1391,9 @@ itemCharge.showDodgyCount=true mousehighlight.chatboxTooltip=true optimal-quest-guide.requirementBoostableColor=-13459206 worldmap.fairyRingIcon=true +WildernessPlayerAlarm.pvpWorldAlerts=false keyremapping.esc=27\:0 +shortestpath.costNonConsumableTeleportationItems=0 shortestpath.useTeleportationMinigames=true BetterNpcHighlight.hullRave=false runelite.devtoolsplugin=false @@ -1235,7 +1410,7 @@ grounditems.hideUnderValue=0 BetterNpcHighlight.clickboxAA=true runepouch.runeicons=true BetterNpcHighlight.clickboxHighlight=false -runelite.xptrackerplugin=true +runelite.xptrackerplugin=false reportButton.time=LOGIN_TIME menuentryswapper.swapPick=false ultimatenmz.showOverloadIcon=true @@ -1254,13 +1429,14 @@ skillstabprogressbars.progressBarStartColor=-65536 runelite.temporossplugin=false poh.showPools=true cengineercompleted.muteSnowballsIfCEngineerIsNear=true +minimap.zoomLevel=2.25 +easyempty.swapNeck=true tempoross.waveNotification=false itemprices.showEA=true runecraft.degradingNotification=true +zulrahhelper.darkMode=true implings.showninja=NONE woodcutting.forestryPheasantControlNotification={"enabled"\:true,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} -objectindicators.region_12598=[{"id"\:1278,"name"\:"Tree","regionId"\:12598,"regionX"\:24,"regionY"\:3,"z"\:0,"color"\:"\#FFFFFF00","fillColor"\:"\#FFFFFF00"}] -objectindicators.region_12597=[{"id"\:1278,"name"\:"Tree","regionId"\:12597,"regionX"\:22,"regionY"\:63,"z"\:0,"color"\:"\#FFFFFF00","fillColor"\:"\#FFFFFF00"}] hd.modelCacheSizeMiBv2=512 BetterNpcHighlight.hullAA=true runelite.gameAlwaysOnTop=false @@ -1273,6 +1449,7 @@ tempoross.waveTimerColor=-16711681 slayer.itemoverlay=true kingdomofmiscellania.sendNotifications=false woodcutting.forestryStrugglingSaplingNotification={"enabled"\:true,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} +inventorysetups.sectionMode=false roofremoval.removeHovered=true worldmap.jewelleryIcon=true BetterNpcHighlight.tileAA=true @@ -1282,6 +1459,8 @@ coxscoutingqol.preferredCrabs=ANY feed.includeTweets=true dailytaskindicators.showDynamite=false npcaccessibilitytagger.heightAboveNPC=40 +pinggraph.toggleLineOnly=false +pinggraph.warnTickVal=800 BetterNpcHighlight.slayerRave=false dailytaskindicators.showBonemeal=false itemCharge.dodgyNotification=true @@ -1296,6 +1475,7 @@ BetterNpcHighlight.tileRave=false runelite.notificationVolume=100 BetterNpcHighlight.swTileRave=false shortestpath.useGrappleShortcuts=false +shortestpath.unreachableText=Destination could not be reached suppliestracker.chargesBox=false probability_calculator.decimalPlaces=2 BetterNpcHighlight.swTileRaveSpeed=6000 @@ -1310,8 +1490,10 @@ animationSmoothing.smoothNpcAnimations=true agility.lapsToLevel=true ultimatenmz.overloadRunOutEffectSpeed=DEFAULT interfaceStyles.tenXHitpoints=false +coxscoutingqol.layoutMode=INCLUSIVE logouttimer.idleTimeout=25 itemCharge.amuletOfChemistry=-1 +hd.hideVanillaWaterEffects=true timers.showScurriusFoodPile=true lowmemory.lowDetail=true opponentinfo.hitpointsDisplayStyle=HITPOINTS @@ -1337,11 +1519,15 @@ hd.shadowResolution=RES_4096 itemCharge.dodgyNecklace=-1 ultimatenmz.ultimateForceAlertColor=-1 MahoganyHomes.showRequiredMaterials=true +guardiansOfTheRiftHelper.hideGreatGuardianPowerUp=false grounditems.lootbeamStyle=MODERN +hd.asyncModelCacheSizeMiB=32 BetterNpcHighlight.tileRaveSpeed=6000 +pinggraph.bottomRightLabel=NONE bankedexperience.includeRngActivities=false -banktags.item_2434=rune drags xpTracker.onScreenDisplayModeBottom=XP_HOUR +easyempty.bankFill=true +inventorysetups.displayColor=-65536 chatfilter.filterFriends=false shortestPath.drawTransports=false gpu.colorBlindMode=NONE @@ -1354,15 +1540,21 @@ runelite.tithefarmplugin=false inventorysetups.fuzzy=false textrecolor.opaqueClanInfoHighlight=-65536 BetterNpcHighlight.outlineColor=-16711681 +hd.experimentalStorageBuffers=DEFAULT implings.natureColor=-10712481 +shortestpath.costTeleportationBoxes=0 playerindicators.drawMinimapNames=false worldlocation.tileColour=2130706432 +shortestpath.costMagicMushtrees=0 runelite.shortestpathplugin=false woodcutting.showLeprechaunLuck=true interfaceStyles.gameframe=AROUND_2005 mta.graveyard=true randomevents.notifyForester=false gpu.removeVertexSnapping=true +runelite.OpponentInfoOverlay_preferredPosition=ABOVE_CHATBOX_RIGHT +itemidentification.showCloth=false +interacthighlight.itemShowHover=true EventsAPI.emitQuestInfo=true runelite.pestcontrolplugin=false hd.legacyTobEnvironment=false @@ -1401,6 +1593,7 @@ timers.showGodTimer=true inventorysetups.filterBankHotkey=0\:0 menuentryswapper.swapAbyssTeleport=true menuentryswapper.swapPickpocket=true +banktaglayouts.showRowMenuEntries=true ultimatenmz.maximumHPThreshold=2 corp.markDarkCore=true ultimatenmz.absorptionEffectType=FADE_IN_OUT @@ -1409,13 +1602,14 @@ colorpicker.recentColors=-7656147,-16773121,-65305,-10603917,-5635841,352386874, shortestPath.recalculateDistance=10 banktaglayouts.showLayoutPlaceholders=true runelite.discordplugin=false -banktags.item_11194=rune drags friendNotes.showIcons=true +pinggraph.textMargin=10 regenmeter.showWhenNoChange=false questhelper.highlightNeededMiniquestItems=true music.mutePrayerSounds=false playerindicators.clanMemberColor=-5635841 npcindicators.highlightTile=false +shortestpath.clearPathHotkey=0\:0 questhelper.filterListBy=SHOW_ALL BetterNpcHighlight.trueTileRaveSpeed=6000 hd.experimentalFasterModelHashing=true @@ -1433,6 +1627,7 @@ tempoross.doubleSpotColor=-16711681 keyremapping.control=0\:128 playerindicators.ownNameColor=-16729900 questhelper.highlightStyleNpcs=OUTLINE +inventorysetups.enableLayoutWarning=true BetterNpcHighlight.presetInstructions=\#\#\# Preset Tag Format\:\n\n\!tag[style] [npc name]\:[preset \#]\n\!tag[style] [npc id]\:[preset \#]\n\!untag[style] [npc name]\:[preset \#]\n\!untag[style] [npc id]\:[preset \#]\n---------------------\n\#\#\# Example\:\n\n"\!tagswt cow\:2" -> This would add "cow" to the SW True Tile names list with preset color 2\n\# Tagging an NPC that already has a preset changes the preset to the new one\n\nUntagging is the same, regardless of preset\n timers.showVengeanceActive=true inventorysetups.highlightVarianceDifference=false @@ -1454,6 +1649,7 @@ EventsAPI.emitPlayerState=true shortestpath.drawMinimap=true timers.showTeleblock=true randomevents.notifyCerters={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} +pinggraph.noResponseLimit=3 itemCharge.lowWarningColor=-256 raids.copyToClipboard=true barrows.showBrotherLoc=true @@ -1463,6 +1659,7 @@ boosts.displayIndicators=false slayer.amount=-1 ultimatenmz.showPointsPerHour=true slayer.streak=-1 +zulrahhelper.strategy=RANGE_MAGE npcUnaggroArea.notifyExpire=false objectindicators.highlightOutline=false menuentryswapper.swapAssignment=true @@ -1470,8 +1667,11 @@ implings.dragonColor=-2992821 menuentryswapper.objectShiftClickWalkHere=true ultimatenmz.recurrentDamageEffectSpeed=DEFAULT shortestpath.useWildernessObelisks=true +pinggraph.enablePingSpikes=false gpu.unlockFps=false +interacthighlight.playerInteractHighlightColor=-1862336512 tempoross.fishIndicator=true +shortestpath.costTeleportationLevers=0 zoom.cameraSpeed=1.0 npcUnaggroArea.hideIfOutOfCombat=false tempoross.damageIndicator=true @@ -1483,7 +1683,11 @@ itemCharge.expeditiousNotification=true loottracker.showRaidsLootValue=true grounditems.highlightTiles=true agility.lapTimeout=1 +zulrahhelper.meleeColor=-327673 +guardiansOfTheRiftHelper.deathSpawn={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} worldmap.dungeonTooltips=true +guardiansOfTheRiftHelper.fireSpawn={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} +shortestpath.usePohSpiritTree=false coxlightcolors.noUnique=-1 runelite.blastfurnaceplugin=false runelite.pohplugin=false @@ -1496,6 +1700,7 @@ runelite.slayerplugin=false keyremapping.f9=57\:0 keyremapping.f8=56\:0 reportButton.switchTimeFormat=TIME_12H +inventorysetups.showSectionSubmenusWornItems=true menuentryswapper.swapFairyRing=LAST_DESTINATION keyremapping.f5=53\:0 keyremapping.f4=52\:0 @@ -1505,6 +1710,7 @@ inventorysetups.sortingMode=DEFAULT keyremapping.f6=54\:0 coxscoutingqol.incPuzzleCombat=false runenergy.replaceOrbText=true +guardiansOfTheRiftHelper.elementalGuardianColor=-16711936 loottracker.pvpKillChatMessage=false dpscounter.autoreset=false mousehighlight.disableSpellbooktooltip=false @@ -1513,21 +1719,25 @@ timers.showColosseumDoom=true wintertodt.notifyFullInv=true ultimatenmz.powerSurgeEffectSpeed=DEFAULT pets.showNpcId=false +shortestpath.costCanoes=0 zoom.controlFunction=NONE xpdrop.magePrayerColor=-15368019 blastmine.showWarningOverlay=true shortestpath.useMinecarts=true wiki.showWikiMinimapButton=true implings.shownature=NONE +hd.detailDistance=70 hd.unlockFps=false shortestpath.colourPath=-65536 specialcounter.ayakThreshold=0 +inventorysetups.zigZagType=TOP_TO_BOTTOM idlenotifier.logoutidle={"enabled"\:true,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} runelite.runepouchplugin=false improvedtileindicators.customDestinationTile=false npcindicators.showRespawnTimer=false xpglobes.showTimeTilGoal=true BetterNpcHighlight.trueTileFillColor=335609855 +shortestpath.costQuetzalWhistle=15 itemCharge.veryLowWarning=1 timers.showTormentedDemonBuffs=true hiscore.playerOption=true @@ -1538,6 +1748,7 @@ npcindicators.npcColor=-16711681 itemidentification.showTablets=false clanchat.clanChatShowOnlineMemberCount=false itemidentification.showSpecialSeeds=false +guardiansOfTheRiftHelper.notifyBeforeFirstAltar={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} driftnet.timeoutDelay=60 runelite.regenmeterplugin=false coxscoutingqol.layoutType=[] @@ -1550,6 +1761,7 @@ specialcounter.bandosGodswordThreshold=0 BetterNpcHighlight.swTileAA=true worldmap.transportationTooltips=true screenshot.boss=false +pinggraph.warningLineColor=-61167 dailytaskindicators.showSand=false gpu.antiAliasingMode=DISABLED interfaceStyles.disableAnims=false @@ -1570,7 +1782,8 @@ teamCapes.clanChatMemberCounter=false itemidentification.textColor=-1 woodcutting.statTimeout=1 grounditems.highlightedColor=-5635841 -runelite.pinnedPlugins=Anti Drag,Bank,Camera,Chat Timestamps,Entity Hider,Ground Items,Ground Markers,Idle Notifier,Logout Timer,Menu Entry Swapper,Minimap,NPC Indicators,Object Markers,Opponent Information,Rooftop Agility Improved,Runecraft,Status Bars,World Location,XP Tracker +worldmap.mooringLocationTooltips=true +runelite.pinnedPlugins=Anti Drag,Bank,Camera,Chat Timestamps,Entity Hider,Ground Items,Ground Markers,Idle Notifier,Logout Timer,Menu Entry Swapper,NPC Indicators,Object Markers,Opponent Information,Rooftop Agility Improved,RuneLite,Runecraft,World Location runelite.usernameInTitle=false chatnotification.notifyOnTrade=false skillstabprogressbars.darkenCustomLevel=99 @@ -1605,12 +1818,16 @@ skillstabprogressbars.grayOutOpacity=127 cengineercompleted.announceNonTrouverInfernal=true xpglobes.Progress\ arc\ color=-14336 timers.showDeathTimer=true +shortestpath.costQuetzals=0 poh.showMagicTravel=true +zulrahhelper.meleePointColor=-327673 discord.showCityActivity=true implings.essenceColor=-14657190 +interacthighlight.itemInteractHighlightColor=-1862336512 timers.showArceuusCooldown=false itemidentification.showBars=false xpglobes.hideMaxed=false +zulrahhelper.displaySnakelings=false runelite.bankxpvalueplugin=false banktaglayouts.autoLayoutDuplicateLimit=4 danceparty.disableInPvp=false @@ -1641,6 +1858,7 @@ shortestpath.useShips=true shortestpath.colourText=-1 herbiboar.colorTrail=-1 screenshot.wildernessLootChest=true +guardiansOfTheRiftHelper.chaosSpawn={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} questhelper.partialSuccessColour=-1 raids.ccDisplay=false tearsofguthix.showGreenTearsTimer=true @@ -1648,6 +1866,7 @@ ultimatenmz.overloadExpiredNotification=true party.statusOverlayRenderSelf=true npcindicators.highlightMenuStyle=NONE runecraft.showEarth=true +guardiansOfTheRiftHelper.outlineCellTable=true pets.toyColor=-7636923 recentlyKilledHighlight.fillColor=335609855 entityhider.hideAttackers=false @@ -1657,6 +1876,7 @@ BetterNpcHighlight.hullHighlight=false WikiSync.enableLocalWebSocketServer=true regionlocker.blacklistedBorderColor=-926416813 roofremoval.removeDestination=true +guardiansOfTheRiftHelper.guardianFragmentsAmount=0 textrecolor.opaqueClanChatMessageHighlight=-16777216 objectindicators.region_12850=[{"id"\:27291,"name"\:"Bank booth","regionId"\:12850,"regionX"\:9,"regionY"\:21,"z"\:2,"color"\:"\#FFFF0000","fillColor"\:"\#15FF0000"},{"id"\:37348,"name"\:"Banner","regionId"\:12850,"regionX"\:31,"regionY"\:35,"z"\:0,"color"\:"\#FFFFFF00","fillColor"\:"\#15FFFF00"}] opponentinfo.lookupOnInteraction=false @@ -1671,6 +1891,7 @@ menuentryswapper.swapExchange=true minimap.item=-65536 screenshot.copyToClipboard=false inventorysetups.filterBankAddItemstOnlyHotkey=0\:0 +shortestpath.costShips=0 pets.showToy=OFF worldhopper.previousKey=37\:192 specialcounter.elderMaulThreshold=0 @@ -1684,9 +1905,12 @@ motherlode.showDepositsLeft=true worldhopper.nextKey=39\:192 grounditems.priceDisplayMode=OFF BetterNpcHighlight.slayerHighlight=false +pinggraph.fontSize=16 danceparty.partyOnLevelup=false inventorytags.showTagOutline=true +WildernessPlayerAlarm.customizableNotification={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} clanchat.showIgnores=true +inventorysetups.useOldItemSearch=false menuentryswapper.swapRadasBlessing=EQUIP zoom.rightClickExamine=false worldlocation.chunkLines=false @@ -1694,7 +1918,7 @@ bankxpvalue.tutorial=false menuentryswapper.swapGEAbort=false npcindicators.outlineFeather=4 runelite.banktagsplugin=false -runelite.minimapplugin=true +runelite.minimapplugin=false worldlocation.minimapChunkLines=false Gauntlet.uniquePrayerVisual=true implings.showCrystal=NONE @@ -1710,10 +1934,13 @@ BetterNpcHighlight.taskHighlightStyle=[] textrecolor.transparentClanChatInfoHighlight=-65536 BetterNpcHighlight.entityHiderToggle=false questhelper.highlightStyleInventoryItems=FILLED_OUTLINE +shortestpath.costTeleportationSpellsHome=0 +shortestpath.costCharterShips=0 slayer.highlightHull=false runelite.fightcavewavesplugin=false menuentryswapper.item_2552=3 ultimatenmz.overloadRunoutNotification=true +guardiansOfTheRiftHelper.notifyGuardianCondition=Full_Inventory hd.environmentalLighting=true blastmine.showOreOverlay=true shortestpath.useSpiritTrees=true @@ -1728,6 +1955,7 @@ dailytaskindicators.showArrows=false BetterNpcHighlight.areaRaveSpeed=6000 timetracking.preferSoonest=false vanguards.meleeColor=-65536 +interacthighlight.playerShowInteract=true optimal-quest-guide.showCompletedQuests=false agility.showLapCount=true ultimatenmz.showTotalPoints=true @@ -1745,18 +1973,23 @@ hd.useLegacyBrightness=false chatcommands.sw=true timers.showPrayerRegeneration=true fishing.minnowsOverlayColor=-65536 +pinggraph.noResponseMsg=- motherlode.showSack=true runelite.grandexchangeplugin=false tempoross.highlightFires=true +inventorysetups.attackOption=false +largelogout.resizeWorldSwitcherLogout=false runelite.puzzlesolverplugin=false questhelper.highlightNeededAchievementDiaryItems=true runelite.chatchannelplugin=false +guardiansOfTheRiftHelper.highlightPotential=true worldmap.agilityCourseTooltips=true questhelper.useShortestPath=false raids.enableRotationWhitelist=false keyremapping.up=87\:0 gpu.useComputeShaders=false attackIndicator.showChatWarnings=true +pinggraph.OverlayBackgroundColor=1678840081 specialcounter.arclightThreshold=0 coxscoutingqol.blockedUnknownCombat=true itemprices.showWhileAlching=true @@ -1765,6 +1998,7 @@ wintertodt.roundNotification=5 unpottedreminder.showOverlay=true menuentryswapper.swapPortalNexus=false inventorysetups.highlightUnorderedDifference=false +BetterNpcHighlight.useGlobalTileColor=false menuentryswapper.swapPrivate=false textrecolor.transparentPrivateMessageSentHighlight=-1 inventorysetups.highlightStackDifferenceEnum=None @@ -1780,18 +2014,18 @@ randomevents.notifyCountCheck={"enabled"\:false,"initialized"\:false,"override"\ interacthighlight.npcHoverHighlightColor=-1862271232 stretchedmode.scalingFactor=50 runelite.infoBoxTextOutline=false -banktags.item_23691=rune drags shortestpath.useBoats=true agility.agilityArenaNotifier=false BetterNpcHighlight.areaColor=838926335 shortestpath.useHotAirBalloons=false -runelite.externalPlugins=morghttpclient,rsn-hider,world-location,statussocket,unpotted-reminder,tictac7x-rooftops,eventsapi +runelite.externalPlugins=morghttpclient,world-location,statussocket,tictac7x-rooftops,eventsapi itemCharge.showAbyssalBraceletCharges=true barrows.showPuzzleAnswer=true npcindicators.npcToHighlight=Rod Fishing spot hd.defaultSkyColor=DEFAULT radiusmarkers.includeMaxRange=true raids.raidsTimer=true +guardiansOfTheRiftHelper.hideRuneUse=Nowhere puzzlesolver.displaySolution=true groundMarker.borderWidth=3.9999999999999996 radiusmarkers.defaultColourInteraction=-16726016 @@ -1811,10 +2045,10 @@ grounditems.doubleTapDelay=250 prayer.prayerFlickLocation=NONE BetterNpcHighlight.presetColor2=-14301873 BetterNpcHighlight.presetColor1=-2081743 +shortestpath.costSpiritTrees=0 BetterNpcHighlight.presetColor4=-14221399 BetterNpcHighlight.presetColor3=-3175683 implings.luckyColor=-10090651 -banktags.item_385=rune drags runecraft.pouchDegrade=true itemCharge.showPotionDoseCount=false runelite.reportbuttonplugin=false @@ -1825,6 +2059,7 @@ timers.showMagicImbue=true playerindicators.highlightTeamMembers=ENABLED reorderprayers.unlockPrayerReordering=false hd.uiScalingMode=LINEAR +guardiansOfTheRiftHelper.beforeGameSeconds=0 radiusmarkers.defaultColourSpawn=-16711681 idlenotifier.migrated=1 npcindicators.highlightcolor_9244=-256 @@ -1850,6 +2085,7 @@ xpupdater.templeosrs=false timers.showPrayerEnhance=true runelite.notificationSound=NATIVE improvedtileindicators.highlightDestinationColor=-5001153 +guardiansOfTheRiftHelper.quickPassCooldown=true cengineercompleted.announceLevelUp=true grounditems.ownershipFilterMode=ALL slayer.infobox=true @@ -1858,13 +2094,14 @@ hd.wireframe=false tithefarmplugin.hexColorWatered=-16737793 tictac7x-rooftops.obstacle_next_unavailable=1355349760 metronome.tickCount=1 +suppliestracker.ayakUsesTears=true runelite.implingsplugin=false worldmap.rareTreeIcon=true timetracking.birdHouseNotification=false timers.showWellTimer=true combatlevel.showLevelsUntil=true music.areaSoundEffectVolume=0 -entityhider.hideDeadNpcs=false +entityhider.hideDeadNpcs=true bankedexperience.grabFromEimBank=false menuentryswapper.swapBirdhouseEmpty=true wintertodt.damageNotificationColor=-16711681 @@ -1877,7 +2114,9 @@ improvedtileindicators.highlightDestinationStyle=RS3 hd.overrideSky=false woodcutting.forestryBeeHiveNotification={"enabled"\:true,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} itemCharge.showTeleportCharges=true +shortestpath.useTeleportationPortalsPoh=false hd.parallaxOcclusionMappingToggle=true +entityhider.hideWorldEntities=false radiusmarkers.showMinimap=true questhelper.questDifficulty=ALL BetterNpcHighlight.respawnOutlineColor=-16711681 @@ -1887,17 +2126,22 @@ menuentryswapper.swapChase=true bankxpvalue.levelUps=true implings.showspawn=false nightmareZone.absorptioncoloroverthreshold=-65305 -entityhider.hideRandomEvents=false +cengineercompleted.announceGemstoneCrabMovement=true +entityhider.hideRandomEvents=true keyremapping.down=83\:0 itemCharge.showSackCharges=true timers.showGodWarsAltar=true menuentryswapper.swapStairsLeftClick=CLIMB +guardiansOfTheRiftHelper.potentialBalanceColor=-16711936 npcaccessibilitytagger.appendWordToNPC=true +pinggraph.warningFontColor=-61167 entityhider.hideIgnores=false runecraft.showChaos=true loginscreen.syncusername=true cengineercompleted.announceHunterRumours=true +hd.windowsHdrCorrection=false runelite.bankplugin=true +banktaglayouts.addItemKeybind=0\:0 radiusmarkers.hideNavButton=false npcUnaggroArea.npcUnaggroShowAreaLines=false party.statusOverlayHealth=false @@ -1922,6 +2166,7 @@ agility.stickHighlightColor=-65536 woodcutting.clueNestNotifyTier=HARD xpglobes.Progress\ orb\ background\ color=2139127936 BetterNpcHighlight.swTrueTileRave=false +guardiansOfTheRiftHelper.beforeFirstAltarSeconds=0 thieving.highlightBats=true discord.showRaidingActivity=true npcUnaggroArea.showOnSlayerTask=false @@ -1929,6 +2174,8 @@ reorderprayers.prayerOrder=THICK_SKIN,BURST_OF_STRENGTH,CLARITY_OF_THOUGHT,SHARP xpglobes.alignOrbsVertically=false itemCharge.slaughterNotification=true EventsAPI.enabledLevelChange=true +zulrahhelper.meleePointShape=X +shortestpath.showBankPickupInfo=false objectindicators.region_14243=[{"id"\:32113,"name"\:"Staircase","regionId"\:14243,"regionX"\:30,"regionY"\:39,"z"\:0,"color"\:"\#FF00FFFF","fillColor"\:"\#FF00FFFF"},{"id"\:32117,"name"\:"Broken Doors","regionId"\:14243,"regionX"\:30,"regionY"\:51,"z"\:0,"color"\:"\#FFFFFF00","fillColor"\:"\#FFFFFF00"}] menuentryswapper.npcLeftClickCustomization=true xpTracker.hideMaxed=false @@ -1946,9 +2193,11 @@ questhelper.showWidgetHints=true agility.highlightSepulchreObstacles=false stretchedmode.increasedPerformance=false hd.contrast=DEFAULT +banktaglayouts.showAddItemEntries=true keyremapping.right=68\:0 rsnhider.hideWidgets=false puzzlesolver.drawDots=false +guardiansOfTheRiftHelper.guardianOutlineFeather=0 npcindicators.highlightTrueTile=false randomevents.notifyDwarf={"enabled"\:false,"initialized"\:false,"override"\:false,"tray"\:false,"volume"\:0,"timeout"\:0,"gameMessage"\:false,"sendWhenFocused"\:false} cengineercompleted.announceFarmingContracts=true @@ -1963,6 +2212,7 @@ cannon.lowWarningThreshold=0 chatcommands.pb=true entityhider.hideFriends=true banktaglayouts.layoutEnabledByDefault=false +runelite.InfoOverlay_preferredPosition=BOTTOM_LEFT openosrs.enableOpacity=false herbiboar.colorStart=-16711681 textrecolor.opaqueExamineHighlight=-16776961 @@ -1974,6 +2224,7 @@ runelite.notesplugin=false objectindicators.highlightHull=false regionlocker.onlyShowBlacklist=false chatcommands.qp=true +zulrahhelper.imageOrientation=SOUTH kingdomofmiscellania.approvalThreshold=100 BetterNpcHighlight.swTrueTileAA=true ultimatenmz.overloadExpiredEffectType=FADE_IN_OUT diff --git a/src/main/resources/templates/index.html b/src/main/resources/templates/index.html index 1a16b2b..d4b06bd 100644 --- a/src/main/resources/templates/index.html +++ b/src/main/resources/templates/index.html @@ -49,7 +49,7 @@