1. tMorph for 5.4.8(18414) MoP

    Requirements:
    • Visual C++ Redistributable for Visual Studio 2015 (vc_redist.x64.exe)
    • 64-bit version of WoW (Wow-64.exe)
    • Must be run with Administrative privileges


    Features:
    • Persistent smart player morphing (i.e. you can shift in and out of forms as a druid)
    • Special race morphing
    • Race appearance customization
    • Persistent mount morphing
    • Item morphing
    • Weapon enchant morphing
    • Spell animation morphing
    • Title morphing
    • In-game command system
    • Underlying Lua API




    Just extract and run tInject.exe while in-game (as Administrator)

    Usage Examples:
    Spoiler: Show
    To morph yourself into a troll pirate:
    Code:
    .morph 25041
    To morph into another race (Pandaren, in this case):
    Code:
    .race 24
    Race IDs:
    Code:
    1  -- Human
    2  -- Orc
    3  -- Dwarf
    4  -- Night Elf
    5  -- Undead
    6  -- Tauren
    7  -- Gnome
    8  -- Troll
    9  -- Goblin
    10 -- Blood Elf
    11 -- Draenie
    22 -- Worgen
    24 -- Pandaren
    To swap genders after a race morph:
    Code:
    .gender
    The following commands allow you to change the appearance of regular races:
    Code:
    .skin 2
    .face 1
    .hair 6
    .haircolor 3
    .piercings 5
    To morph an item (where 1 is the inventory slot ID):
    Code:
    .item 1 32235
    Alternatively, to morph an item into its Mythic variant:
    Code:
    .item 1 115542 3
    Item version IDs:
    Code:
    0 -- Normal
    1 -- Heroic
    3 -- Mythic
    4 -- Raid Finder
    
    6 -- Stage 1
    7 -- Stage 2
    8 -- Stage 3
    To change a weapon enchant (e.g. Mongoose):
    Code:
    .enchant 1 155
    To swap a spell animation:
    Code:
    .spell 774 139
    To morph your mount:
    Code:
    .mount 45797
    To morph your title:
    Code:
    .title 199
    FAQ

    Q: How can I change my various druid forms?
    A: Create a small WoW add-on using the following code (edit as necessary).
    Code:
    local events = CreateFrame("Frame")
    events:SetScript("OnEvent", function(self, event, ...) return self[event](self, ...) end)
    
    function events:UPDATE_SHAPESHIFT_FORM()
      -- http://wowprogramming.com/docs/api/GetShapeshiftFormID
      local form = GetShapeshiftFormID()
      if form == 1 then -- cat form
        SetDisplayID("player", 1337)
        UpdateModel("player")
      elseif form == 5 then -- bear form
        SetDisplayID("player", 1338)
        UpdateModel("player")
      end
    end
    
    if UnitClass("player") == "Druid" then
      events:RegisterEvent("UPDATE_SHAPESHIFT_FORM")
    end
    Edited: April 10, 2017

  2. hey man thanks for sharing, it works! i've been searching for something like this but dosen't seems to find any but you share it with us and it works, thanks again man

    oot: before that, i was searching Just A Morpher for 5.4.8 and i found this link http://rghost.net/7BwFjRMX5 but when i tried it dosen't work, dunno why (i already use wow.exe 32bit)


  3. Is it for 32 bit? For some reason i get error when launch the injector.

  4. Is it for 32 bit? For some reason i get error when launch the injector.
    It's 64 bit only.

  5. Yes don't forget to rename ur 64 bit client to wow-64 .
    You should add that probably, i had some problems cuz of that issue ;D

  6. Yes don't forget to rename ur 64 bit client to wow-64 .
    You should add that probably, i had some problems cuz of that issue ;D
    I added 64-bit client to download list.

  7. it doesnt work i just did it says injection succesful but i cant change to anything it just says the thing i wrote.

  8. thx thx thx with that new cliet it now works! thx

  9. Thanks a lot! It's so much better than 'Just a Morpher' :)

  10. In the end ill have to download xp 64 bit just to be able to use tmorph

  11. If your system does not support 64bit it wont work. if it does,you should avoid xp ''64'' if you can call it like that considering what a resource hogging mess it is.
    Get vista,win7,8,10. Using xp nowadays is the equivalent of using win95 back when xp was a thing.
    Not to mention one simple tiny fact: For hardware and software creators Windows XP x64 never existed since it was not officially supported.
    Edited: March 22, 2016

  12. Ty a lot for sharing the morpher and the 64 bit client bro. U r dope

  13. it doesnt work i just did it says injection succesful but i cant change to anything it just says the thing i wrote.
    How did you fix this?


123 Last

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •