tMorph — 64-bit Morpher (updated for Legion) menu

User Tag List

Page 126 of 134 FirstFirst ... 2676122123124125126127128129130 ... LastLast
Results 1,876 to 1,890 of 2005
  1. #1876
    alipc09's Avatar Member
    Reputation
    2
    Join Date
    Apr 2017
    Posts
    14
    Thanks G/R
    3/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Has someone ever been banned for this?

    tMorph — 64-bit Morpher (updated for Legion)
  2. #1877
    Journey's Avatar Legendary Authenticator enabled
    Reputation
    783
    Join Date
    Feb 2012
    Posts
    102
    Thanks G/R
    0/233
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Updated for 7.2.0.23937.

  3. Thanks Iesha, Hyperbeist (2 members gave Thanks to Journey for this useful post)
  4. #1878
    Iesha's Avatar Member CoreCoins Purchaser
    Reputation
    1
    Join Date
    Feb 2014
    Posts
    30
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Journey, u are the man. I am so grateful for your constant updates. U should charge for the service, considering how ungrateful some people are.

    All service requires some type of payment.

  5. #1879
    Badfinger's Avatar Member
    Reputation
    1
    Join Date
    Sep 2011
    Posts
    1
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Journey View Post
    Updated for 7.2.0.23937.
    The following Lua functions don't work with the new update:
    SetAlternateRace
    SetGender

    Are there new ones?

  6. #1880
    bertie123's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    13
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey man i used to be able to do .race 13 or 14 to turn into a Broken but doesn't seem to work anymore?

  7. #1881
    Wintrex's Avatar Member
    Reputation
    1
    Join Date
    Feb 2013
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Does anyone know how to get the display ID's for the Chosen Dead armor sets? I can't find it anywhere since they're not individual items.

  8. #1882
    Coggy's Avatar Member
    Reputation
    1
    Join Date
    Apr 2017
    Posts
    3
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Still no one who has an idea on how to make your druid forms look like your humanoid form?

  9. #1883
    AlopexGames's Avatar Member
    Reputation
    3
    Join Date
    Feb 2015
    Posts
    4
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This comment will likely be lost in the thread pretty soon, but there's a range of DisplayIDs that Blizzard is currently using for most situations where your character appears as another race with your gear. This includes the Mists of Pandaria scenarios (which I believe they were first made for) and Mercenary mode

    The range is:
    55238 - 55267

    This range of display IDs goes from human female, through the Alliance races, through 3 sets of pandaren display IDs, then through the Horde ending on goblin male. So, while I won't go through all of them, as examples a human male would be 55239, a Tauren male would be 55261, or a female Blood Elf would be 55264.

  10. Thanks Allureana (1 members gave Thanks to AlopexGames for this useful post)
  11. #1884
    LAMD's Avatar Member
    Reputation
    2
    Join Date
    Sep 2007
    Posts
    16
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Druid forms

    Just make a file core.lua and put the next text in it

    START OF FILE
    -- nil = humanoid form
    -- ============== Druid =============
    -- Aquatic Form - 4
    -- Bear Form - 5 (BEAR_FORM constant)
    -- Cat Form - 1 (CAT_FORM constant)
    -- Flight Form - 29
    -- Moonkin Form - 31 (MOONKIN_FORM constant)
    -- Swift Flight Form - 27
    -- Travel Form - 3
    -- Tree of Life - 2
    -- ============== Monk MoP ===========
    -- Stance of the Fierce Tiger - 24
    -- Stance of the Sturdy Ox - 23
    -- Stance of the Wise Serpent - 20
    -- ============== Rogue ==============
    -- Stealth - 30
    -- Shaman
    -- Ghost Wolf - 16
    -- Warlock
    -- Metamorphosis - 22
    -- ============= Warrior =============
    -- Battle Stance - 17
    -- Berserker Stance - 19
    -- Defensive Stance - 18




    -- ===================================================================
    -- DruidShapeShift for tMorph
    -- Twitch.TV/Wildlands -- Follow and Share
    -- Configuration.
    -- ===================================================================
    -- Setting the display ID to nil causes that form to not be affected;
    -- setting the scale to nil causes the scale to not be affected, even
    -- if the display ID is. The display ID is NOT the value found in a
    -- WoW Head URL, they must be ascertained separately.


    -- local FORM = {DisplayID, Scale}
    -- local CAT_FORM = {45042, 0.8} -- Cat form to Xuen at 0.8 scale.
    -- local WOLF_FORM = {67421, 0.6}
    local WOLF_FORM = {29414, 1}
    local CAT_FORM = {0, 1}
    local TREE_FORM = {0, 1}
    local TRAVEL_FORM = {0, 0.6}
    local AQUATIC_FORM = {0, 1}
    local BEAR_FORM = {0, 1.4}
    local FLIGHT_FORM = {0, 0.6} -- Doubles for Flight Form and Swift Flight Form.
    local MOONKINK_FORM = {0, 1.2}


    -- ===================================================================
    -- Core.
    -- ===================================================================
    local eventHandler = CreateFrame("Frame", nil, UIParent)
    eventHandler:SetScript("OnEvent", function()
    -- Break out of the function if tMorph is not loaded.
    if (not tMorphLoaded) then return end


    -- API GetShapeshiftFormID - Wowpedia - Your wiki guide to the World of Warcraft
    local ShapeShiftID = GetShapeshiftFormID()


    if (ShapeShiftID == 16) then
    -- Wolf Form.
    if (WOLF_FORM[1]) then
    SetDisplayID("player", WOLF_FORM[1])
    if (WOLF_FORM[2]) then SetScale("player", WOLF_FORM[2]) end


    UpdateModel("player")
    end
    elseif (ShapeShiftID == 1) then
    -- Cat Form.
    if (CAT_FORM[1]) then
    SetDisplayID("player", CAT_FORM[1])
    if (CAT_FORM[2]) then SetScale("player", CAT_FORM[2]) end


    UpdateModel("player")
    end
    elseif (ShapeShiftID == 2) then
    -- Tree Form.
    if (TREE_FORM[1]) then
    SetDisplayID("player", TREE_FORM[1])
    if (TREE_FORM[2]) then SetScale("player", TREE_FORM[2]) end


    UpdateModel("player")
    end
    elseif (ShapeShiftID == 3) then
    -- Travel Form.
    if (TRAVEL_FORM[1]) then
    SetDisplayID("player", TRAVEL_FORM[1])
    if (TRAVEL_FORM[2]) then SetScale("player", TRAVEL_FORM[2]) end


    UpdateModel("player")
    end
    elseif (ShapeShiftID == 4) then
    -- Aquatic Form.
    if (AQUATIC_FORM[1]) then
    SetDisplayID("player", AQUATIC_FORM[1])
    if (AQUATIC_FORM[2]) then SetScale("player", AQUATIC_FORM[2]) end


    UpdateModel("player")
    end
    elseif (ShapeShiftID == 5) then
    -- Bear Form.
    if (BEAR_FORM[1]) then
    SetDisplayID("player", BEAR_FORM[1])
    if (BEAR_FORM[2]) then SetScale("player", BEAR_FORM[2]) end


    UpdateModel("player")
    end
    elseif (ShapeShiftID == 27) or (ShapeShiftID == 29) then
    -- Swift Flight Form or Flight Form.
    if (FLIGHT_FORM[1]) then
    SetDisplayID("player", FLIGHT_FORM[1])
    if (FLIGHT_FORM[2]) then SetScale("player", FLIGHT_FORM[2]) end


    UpdateModel("player")
    end
    elseif (ShapeShiftID == 31) then
    -- Moonkin Form.
    if (MOONKINK_FORM[1]) then
    SetDisplayID("player", MOONKINK_FORM[1])
    if (MOONKINK_FORM[2]) then SetScale("player", MOONKINK_FORM[2]) end


    UpdateModel("player")
    end
    end
    end)


    local _, playerClass = UnitClass("player")
    if ((playerClass == "DRUID") or (playerClass == "SHAMAN")) then
    eventHandler:RegisterEvent("UPDATE_SHAPESHIFT_FORM")
    eventHandler:RegisterEvent("PLAYER_ENTERING_WORLD")
    end

    END OF FILE

    Make another file named DruidShapeshift.toc

    START OF FILE
    ## Interface: 50400
    ## Title: DruidShapeshift


    core.lua
    END OF FILE

    make a Folder inside ur WOW/Interface/Addons directory with the name DruidShapeShift and put both files in there

    This is just a file i did to my taste

    Originally Posted by Coggy View Post
    Still no one who has an idea on how to make your druid forms look like your humanoid form?

  12. Thanks Allureana (1 members gave Thanks to LAMD for this useful post)
  13. #1885
    Romon07's Avatar Member
    Reputation
    2
    Join Date
    Jan 2011
    Posts
    7
    Thanks G/R
    2/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    New mini patch 24015.

  14. Thanks kaedekins (1 members gave Thanks to Romon07 for this useful post)
  15. #1886
    vefali's Avatar Member
    Reputation
    1
    Join Date
    Aug 2010
    Posts
    23
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    update pls

  16. #1887
    Inkyy's Avatar Member
    Reputation
    1
    Join Date
    Oct 2015
    Posts
    3
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    is there a way to tmorph your weapon into hidden artifact appearances? specifically the red corrupted remembrance skin for ashbringer. ty

  17. #1888
    FluffyWalrus's Avatar Member
    Reputation
    1
    Join Date
    Aug 2015
    Posts
    9
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Will spell animations come back any time soon? I was able to get one of them to work, but had to take off the glyph that affected the spell.

    Also, how can I find Feral druid challenge skin codes?

  18. #1889
    okc20006's Avatar Banned
    Reputation
    2
    Join Date
    Jan 2017
    Posts
    35
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Did tmorph get my account banned for 1 year and 6 months? "After a long review, it looks like there's a use of a 3rd party program used for PvP reasons to gain an unfair advantage against other players.

    " what can that mean

  19. #1890
    Awotinkos's Avatar Member
    Reputation
    1
    Join Date
    Apr 2017
    Posts
    2
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    " what can that mean"

    That means you use a third program to modify things in game. Eventho Tmorph is a 3e part program and its not allowed to use cuz the LUA, you used something for PvP and took advantage out of it. This sounds more like you did use a "BOTTING" program to me then tmorph

Similar Threads

  1. [Selling] Vitalic Elite Rogue Combat Routine | Classic
    By vitalic in forum World of Warcraft Buy Sell Trade
    Replies: 13080
    Last Post: 1 Week Ago, 04:30 AM
  2. [Release] Black Market Visualizer (updated for Legion)
    By iispyderii in forum World of Warcraft Bots and Programs
    Replies: 97
    Last Post: 05-17-2019, 07:55 PM
  3. [Selling] Vitalic Elite Rogue Combat Routine | Classic
    By vitalic in forum WoW Private Server Buy Sell Trade
    Replies: 10072
    Last Post: 09-15-2015, 10:54 AM
  4. [Release] tMorph — 64-bit Morpher (with Panda support) Extra updates!
    By Denka123 in forum World of Warcraft Bots and Programs
    Replies: 4
    Last Post: 08-01-2013, 08:32 PM
  5. tMorph 64-bit Morpher program
    By Worgen84 in forum World of Warcraft General
    Replies: 4
    Last Post: 01-02-2013, 03:29 PM
All times are GMT -5. The time now is 08:46 PM. Powered by vBulletin® Version 4.2.3
Copyright © 2024 vBulletin Solutions, Inc. All rights reserved. User Alert System provided by Advanced User Tagging (Pro) - vBulletin Mods & Addons Copyright © 2024 DragonByte Technologies Ltd.
Digital Point modules: Sphinx-based search