Jump to content

Swagkhalifa

Player
  • Content count

    34
  • Joined

  • Last visited

Community Reputation

0 Neutral

About Swagkhalifa

  • Rank
    Advanced User

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

  1. Swagkhalifa

    DPSMate - A combat analyzation tool

    Hey @Shino After installing the lastest version of DPSmate I get a couple of errors upon logging in. It seems like the new version of DPSmate messes with the Informant addon which hasn't been the case before.
  2. I realized having Anti-Aliasing on in SweetFx caused all text on my UI (chat, macros, keybinds etc) to be blurry and it also resulted in FPS drops, especially during combat in PvP or raids. So what I did was simply disabling AA in SweetFx and instead I turned on multisampling in WoW video setting (I've set it to x2 but I might set it to x4 or higher), and slightly lowering terrian view distance. Regarding the errors I had before, I fixed that by installing SweetFx 2.0 instead.
  3. Swagkhalifa

    [Help] Moving the FPS display/meter *SOLVED*

    Found a solution.
  4. Swagkhalifa

    [Help] Moving the FPS display/meter *SOLVED*

    MoveAnything cannot move the FPS display afaik.
  5. Swagkhalifa

    [Help] Moving the FPS display/meter *SOLVED*

    After some research I think I've found what causes the issue but I still haven't found a solution for it. FramerateLabel is listed in UIPARENT_MANAGED_FRAME_POSITIONS in UIParent.lua, which means the default UI moves it around. I've tried to use the following API's: UIPARENT_MANAGED_FRAME_POSITIONS.FramerateLabel = nil FramerateLabel.ignoreFramePositionManager = true FramerateText.ignoreFramePositionManager = true it works somewhat; it still changes the y-variable but not as much as before. I've also tried UIPARENT_MANAGED_FRAME_POSITIONS.FramerateLabel["CONTAINER_OFFSET_Y"] = nil UIPARENT_ALTERNATE_FRAME_POSITIONS.FramerateLabel = nil The first one wasn't different to the API's above and the second one just gave me an error and I couldn't get it to work. My guess is that the API simply doesn't exsist in vanilla but not sure. I found this thread: https://forums.wowace.com/showthread.php?t=21092 where the OP had the exact same problem as I do and he seem to have fixed it, but and can't really tell what he did. Maybe someone with a bit more knowledge for scripting can tell me what he did? Thanks in advance
  6. Hello! So i'm trying to make an addon that will move the FPS display to the lower left corner of my screen. This is the core script for my addon: local x = -650 local y = -375 local FPSDisplay = CreateFrame("Frame") FPSDisplay:RegisterEvent("PLAYER_LOGIN") FPSDisplay:RegisterEvent("PLAYER_ENTERING_WORLD") FPSDisplay:RegisterEvent("ZONE_CHANGED") FPSDisplay:RegisterEvent("ZONE_CHANGED_INDOORS") FPSDisplay:RegisterEvent("ZONE_CHANGED_NEW_AREA") FPSDisplay:SetScript("OnEvent", function(...) FramerateLabel:ClearAllPoints() FramerateText:ClearAllPoints() FramerateLabel:SetPoint("RIGHT",UIParent,"CENTER",x,y) FramerateText:SetPoint("LEFT",FramerateLabel,"RIGHT") if not FramerateLabel:IsVisible() then ToggleFramerate() end end) It is almost working, but for some reason it won't stay there. Everytime I enter a different zone or simply go from Durotar in to Orgrimmar, the y-variable will automatically change to something around -270 and then it will just be stuck there. I don't know whats causing this. I've tried to disable every other addon I use but it still happens. As you can see in the script, I've also tried to apply trigger events for the addon such as ZONE_CHANGING etc. but that doesn't seem to work either. I hope someone can help me out. Cheers!
  7. This might have fixed the text issue. At least it's less blurry now. :) I'm still getting the other errors tho. :/
  8. bump. No one familiar with these errors? I've tried to search for a solution on google, but no luck so far :/
  9. I've installed this and I must say it sure looks pretty good! However whenever I launch WoW I get an error: Where my only option is to click "Ok" but then after that my game starts just fine and the SweetFx seems to be working somewhat as intended. When in-game everything looks enhanced except text such as text in chat, my friendlist, guild, macros, keybinds.. basically all text/letters looks kind of blurry and I wonder if it has something to do with the error i'm getting when starting the game. Like maybe something doesn't load up correctly? One last thing is, sometimes I get another error which will give me WoW Error as soon as I launch WoW, basically preventing me from starting the game until I restart my computer. However I might have found a solution for it just now, but in case it shows up again, I'll report it here. I don't remember exactly what it said but it was something about "The procedure entry point CreateDXGIFactory2 could not be located in..." I don't remember the last part. Anyway, is there a way to fix these things? Thanks in advance EDIT: The second error still occurs and it says:
  10. Swagkhalifa

    [ADDON] Customnameplates

    Aight, I'll try Mobinfo2 later at some point. But tbh it isn't that big of a deal, it is rather that white frame that is annoying me :)
  11. Swagkhalifa

    [ADDON] Customnameplates

    I use modui which has Mobhealth 3 implemented. I tried using Mobhealth3 as a standalone addon but it still shows the same weird percentages.
  12. Swagkhalifa

    [ADDON] Customnameplates

    Yep, getting these weird percentages too. Sounds good, I'll look forward to it :) Keep up the good work!
  13. Swagkhalifa

    [ADDON] Customnameplates

    @laytya Here you can see the white frame i'm talking about. It appears whenever i mouseover nameplate or right click nameplate.
  14. Swagkhalifa

    [ADDON] Customnameplates

    Will post screenshot when I get home, but I think it has something to do with rightclick look function.
  15. Swagkhalifa

    [ADDON] Customnameplates

    Hey! Would really like to use this addon, however it doesn't seem to work correctly for me. Whenever my mouse cursor hover over the nameplate there is some white border that appears under the actual nameplate for like 0.5 sec, then it disappears again. And it doesn't seem like i'm able to change any options using the in-game options menu. I tried using this addon with every other addon disabled but the problem is still there.
×