MMorpher(.NET) + AMorph(WoW addon) menu

User Tag List

Page 4 of 12 FirstFirst 12345678 ... LastLast
Results 46 to 60 of 166
  1. #46
    Zemnexx's Avatar Active Member CoreCoins Purchaser
    Reputation
    31
    Join Date
    Aug 2011
    Posts
    141
    Thanks G/R
    1/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just did a virus scan

    AMorph.zip

    Looks clean, I'll test it out as well.

    MMorpher(.NET) + AMorph(WoW addon)
  2. #47
    squeeze's Avatar Private
    Reputation
    6
    Join Date
    Aug 2011
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by [Pat] View Post
    what's different with this version then from the authors base version?
    Basically what I mentioned in a post above, but to summarize:

    - No "flickering" when shifting forms as druid/shaman or unsheathing weapons.
    - All-around better support for druids and shamans.
    - Instant remorph when leaving a hex or polymorph (unless you tree form out as a druid).
    - Instant remorph when leaving night elf wisp form after dying.

  3. #48
    Zemnexx's Avatar Active Member CoreCoins Purchaser
    Reputation
    31
    Join Date
    Aug 2011
    Posts
    141
    Thanks G/R
    1/0
    Trade Feedback
    3 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Seems to do what you say, nice work. +rep

  4. #49
    maera's Avatar Corporal
    Reputation
    6
    Join Date
    May 2011
    Posts
    22
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    but no instant remorph when leaving ghostwolf form

  5. #50
    zepter's Avatar Member
    Reputation
    1
    Join Date
    Aug 2007
    Posts
    8
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by maera View Post
    but no instant remorph when leaving ghostwolf form
    Ye same with Metamorphosis. But other then that it works rly good

  6. #51
    lohar666's Avatar Member
    Reputation
    1
    Join Date
    May 2009
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey appreciate the good work and looks like a great morpher.

    But I assume these things still arent working for windows xp?

    When the .exe is launched, an error window appears 'MMORPHER has encountered a problem and needs to close' this is the error signature given when you click 'what data does this error report contain'

    EventType : clr20r3 P1 : mmorpher.exe P2 : 1.0.0.0 P3 : 4e5fb2e0
    P4 : mmorpher P5 : 1.0.0.0 P6 : 4e5fb2e0 P7 : 1c P8 : 11
    P9 : system.nullreferenceexception


    There is a much more detailed and longer report too, if you wish to see it I will post it.

    This is on XP SP3.

  7. #52
    xZezimax's Avatar Banned
    Reputation
    2
    Join Date
    Dec 2007
    Posts
    11
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by squeeze View Post
    Big fan of this morpher. I basically rewrote a lot of AMorph.lua to better suit me, and I thought I'd share some of the relevant changes. This is mostly intended for the author.

    Code:
    local morpherPresent = false
    local playerName = UnitName("player")
    local playerClass = UnitClass("player")
    local playerRace = UnitRace("player")
    local frame = CreateFrame("Frame", "AMorph")
    
    function AMorph.Initialize()
        morpherPresent = true
        frame:RegisterEvent("PLAYER_ENTERING_WORLD")
        frame:RegisterEvent("UPDATE_SHAPESHIFT_FORM")
        frame:RegisterEvent("COMBAT_LOG_EVENT_UNFILTERED")
        if playerRace == "Night Elf" then
            frame:RegisterEvent("PLAYER_UNGHOST")
        end
    end
    
    function AMorph.DeInitialize()
        morpherPresent = false
        frame:UnregisterEvent("PLAYER_ENTERING_WORLD")
        frame:UnregisterEvent("UPDATE_SHAPESHIFT_FORM")
        frame:UnregisterEvent("COMBAT_LOG_EVENT_UNFILTERED")
        frame:UnregisterEvent("PLAYER_UNGHOST")
    end
    
    frame:SetScript("OnEvent", function(self, event, ...)
        if event == "UPDATE_SHAPESHIFT_FORM" then
            if GetShapeshiftForm(true) == 0 and (playerClass == "Druid" or playerClass == "Shaman") then
                frame:RegisterEvent("UNIT_PORTRAIT_UPDATE")
            end
        elseif event == "COMBAT_LOG_EVENT_UNFILTERED" then
            local timestamp, type, hideCaster, sourceGUID, sourceName, sourceFlags, sourceRaidFlags,
                destGUID, destName, destFlags, destRaidFlags, spellId, spellName = ...
            if destName ~= playerName or type ~= "SPELL_AURA_REMOVED" then
                return
            end
            if spellName == "Polymorph" or spellName == "Hex" then
                frame:RegisterEvent("UNIT_PORTRAIT_UPDATE")
            end
        elseif event == "UNIT_PORTRAIT_UPDATE" then
            local unitId = ...
            if unitId ~= "player" or (playerClass == "Druid" and GetShapeshiftForm(true) ~= 0) then
                return
            end
            AMorph.ReMorph()
            frame:UnregisterEvent("UNIT_PORTRAIT_UPDATE")
        elseif event == "PLAYER_ENTERING_WORLD" then
            if playerClass == "Druid" and GetShapeshiftForm(true) ~= 0 then
                return
            end
            AMorph.ReMorph()
        elseif event == "PLAYER_UNGHOST" then -- remorph after leaving wisp form
            AMorph.ReMorph()
        end
    end)

    The above fixes issues with flickering and works a lot better with druids. It will also remorph your character after leaving a polymorph or hex.




    Doesn't work that well for druids right now, how do I put in that rewrite into my lua? Do I have to replace all the exsisting code or add it somewhere? I didn't seem to get the rewrite to work! :<

    Besides that, great job!!

  8. #53
    [Pat]'s Avatar Contributor
    Reputation
    96
    Join Date
    Jan 2008
    Posts
    447
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Edit: got this working now. WoW needed to be ran as admin, blek
    Last edited by [Pat]; 09-02-2011 at 07:33 AM.
    Best Metal Fest in the World.
    https://www.rockstarmayhemfest.com/mayhem/index.asp

  9. #54
    pewpewlazor's Avatar Private
    Reputation
    1
    Join Date
    Jun 2010
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi all, i got it to work but i do have one problem. My character morphed into a worgen and it just keeps blinkin often. I tried other races too and its the same problem. Any one have this too?

  10. #55
    squeeze's Avatar Private
    Reputation
    6
    Join Date
    Aug 2011
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by maera View Post
    but no instant remorph when leaving ghostwolf form
    Hmm. Seems to work for me when leaving ghostwolf.

  11. #56
    Geico's Avatar Member
    Reputation
    1
    Join Date
    Oct 2007
    Posts
    7
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Using Win7 64-bit and MMorpher crashes immediately at startup. Does mmorpher require the DL5 and sig protection remover ? Also mentioning that I have tried it in compatibility mode with xp sp2 and 3 AND Win Vista sp 1+2, still no luck.

    E: Tried reinstalling .net framework 4, still no dice. Also tried running them both as an admin and separately as an admin.
    Last edited by Geico; 09-02-2011 at 01:30 PM.

  12. #57
    Ehmiiz's Avatar Private
    Reputation
    1
    Join Date
    Jul 2011
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Still no dice, Geico?
    win7 64-bit here, same issue as you.

  13. #58
    CryptoCombat's Avatar Contributor #define ME 0x1337 CoreCoins Purchaser
    Reputation
    194
    Join Date
    Jan 2009
    Posts
    473
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    win7 x64 working flawlessly here. It's on your end.

  14. #59
    lohar666's Avatar Member
    Reputation
    1
    Join Date
    May 2009
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    anyone on XP got it working?

  15. #60
    Ehmiiz's Avatar Private
    Reputation
    1
    Join Date
    Jul 2011
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    few friends of mine has win7 64bit aswell, and they got it to work.
    mine just instantly crashes on startup, tried everythin :|.

Page 4 of 12 FirstFirst 12345678 ... LastLast

Similar Threads

  1. [Selling] Battle.net account (new wow addon, starcraft 2 complete, diabolo3)
    By tesafilm in forum General MMO Buy Sell Trade
    Replies: 0
    Last Post: 05-22-2014, 09:11 PM
  2. Wow Addons
    By meatwadd in forum World of Warcraft Guides
    Replies: 8
    Last Post: 12-11-2007, 04:35 PM
  3. wow addons
    By piggysmc in forum World of Warcraft General
    Replies: 3
    Last Post: 09-15-2007, 12:26 AM
  4. What wow addons work best for you? I recommend...
    By marick626 in forum WoW UI, Macros and Talent Specs
    Replies: 5
    Last Post: 07-09-2007, 09:19 PM
  5. Super Uber Cool WoW Addon
    By Mutated Carpet People in forum World of Warcraft General
    Replies: 1
    Last Post: 03-04-2007, 10:02 PM
All times are GMT -5. The time now is 11:28 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2025 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Google Authenticator verification provided by Two-Factor Authentication (Free) - vBulletin Mods & Addons Copyright © 2025 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search