Jump to content

Dyaxler

Player
  • Content count

    60
  • Joined

  • Last visited

Everything posted by Dyaxler

  1. God that CODE quote feature is UGLY! Here are some screen shots... the Small one is the default size. Hopefully this gives you an idea on scale.
  2. I've pushed a new version of Questie (3.6) that will allow you to resize the QuestTracker which includes the text making it easier to read. NOTE: this is ONLY for the Questie QuestTracker. This option will not resize the default clients QuestTracker. /questie qtscale large /questie qtscale medium /questie qtscale small https://github.com/AeroScripts/QuestieDev/releases/latest Other bug fixes/code check-in's since the last release have also been bundled.
  3. Dyaxler

    SpartanUI for Vanilla WoW

    SpartanUI doesn't fiddle with the in game Fonts. It does however use the 'SetScale' function to keep the art work centered properly. There are different scale settings if you're using or are not using the "Use UI Scale" setting. All these settings are different depending how you have your Video Options setup initially (code posted below). You can turn off the autores feature by using the slash commands: /sui autores on or /sui autores off There are other options you can fiddle with... I'm on an Ultrawide monitor and am running: 2560 x 1080. I've built in several resolutions that SpartanUI auto detects and adjusts settings to match. To give you an idea... here is the function that controls that. function Sui_ResDetect() local resolution = ({GetScreenResolutions()})[GetCurrentResolution()] local _, _, x, y = string.find(resolution, "(%d+)x(%d+)") local ratio = tonumber(x) / tonumber(y) -- For Standard 16:9 Widescreen (1920 x 1080 etc.) if ratio < 1.8 and GetCVar("useUiScale") == "1" then SetCVar("uiScale", "0.75") suiData.scale = .80 elseif ratio < 1.8 and GetCVar("useUiScale") == "0" then SetCVar("uiScale", "0.75") suiData.scale = .64 -- for Ultra 21:9 Widescreen (2560 x 1080 etc.) elseif ratio > 2.3 and GetCVar("useUiScale") == "1" then SetCVar("uiScale", "0.75") suiData.scale = .95 elseif ratio > 2.3 and GetCVar("useUiScale") == "0" then SetCVar("uiScale", "0.75") suiData.scale = .80 end SpartanUI:SetScale(suiData.scale) end
  4. Dyaxler

    Vanilla Addons A-Z

    Shared on the old nost fourms: http://addons.us.to/addons
  5. Dyaxler

    Which version of Healbot?

    Here... I finally found it. This is the site I primary used for finding trusted vanilla mods. http://addons.us.to/addons Healbot is there and I'm pretty sure it's the same version I'm using.
  6. Dyaxler

    Tooltip Bug

    There is a fix for this on GitHub: https://github.com/AeroScripts/QuestieDev/releases/latest
  7. Dyaxler

    Which version of Healbot?

    I haven't tried this guys yet but he modified a version I'm using that I got from the old Nost Addon thread: https://forum.elysium-project.org/index.php?showtopic=27566
  8. Dyaxler

    SpartanUI for Vanilla WoW

    Added the old post with screenshots for those not familiar with SpartanUI...
  9. It looks like the person in the bottom screen shot has his minimap zoomed all the way out and has quests off radar where as the person on top has it zoomed in and has quests near by. The minimap code was modified in v2.5 (https://github.com/AeroScripts/QuestieDev/releases/tag/v2.5) to only show quests near the player and in the same zone to keep Questie from showing too many markers on the minimap. It was too cluttered otherwise. Most folks use the world map to plan their quest excursions within a given zone anyways so it made sense to limit the number of icons on the minimap. Quest markers that aren't being tracked are also removed from the Minimap / Worldmap to further reduce the clutter.
×