iMorph | Change your skin / mount in one click ! menu

User Tag List

Page 1 of 32 12345 ... LastLast
Results 1 to 15 of 475
  1. #1
    Vandra's Avatar Contributor
    Reputation
    288
    Join Date
    Mar 2008
    Posts
    471
    Thanks G/R
    26/26
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    iMorph | Change your skin / mount in one click !


    Working with wow 5.0.4



    Current features:
    - Morph your character to any race/sex or custom models.
    - Morph your mount to anything you want.
    - Change your title to any other title even unused ones.
    - You can make premade item lists to make your stuff look like what you want.
    - Persistant morphing: You remorph when you get sheeped/Hexed, also when changing area/map.
    - Persistant morphing also for mounts, your mount will automaticly remorph after dismount.
    - LUA Engine, allowing you to make custom scripts !
    - Druid forms handler, look at druids.lua

    Feel free to ask me for new features :-)

    LUA engine documentation:
    Code:
    morphMe(displayId,[scale]) //Morph yourself, scale is optionnal (ex: morphMe(1337))
    morphMount(displayId) //Morph your mount (ex: morphMount(1337))
    morphTitle(titleId) // Change you title
    wowPrint(string) //Print message ingame
    wowWarning() //Print raid message
    applyItems() // apply your selected itemset.ini
    getMountDisplayId() //Return your current mount displayID
    getNativeDisplayId() // return your original displayid
    getSelectedMount() // return the selected mount
    getSelectedModel() // return selected model
    getDisplayId() //return your current model
    getPlayerName() //return active player name
    getPlayerLevel() // return active player's level
    getMinimapZoneText() // return minimap text (ex: valley of strenght)
    getZoneText() //return zone name (ex: Orgrimmar)
    gameState() //return current gamestate (loading/char screen..) 1 == ingame
    execWowLua() // send lua to wow using wow api (unlocked)
    getShapeDisplayId() //return your shapeshift displayID
    hasBuff(BuffId) // return true/false if you have a buff or not
    sleep(value) // sleep the LUA thread for x ms. (1000 is 1second)
    You can also design forms for your scripts, here is a simple exemple:
    Code:
    luanet.load_assembly "System.Windows.Forms"
    luanet.load_assembly "System.Drawing"
    
    Form = luanet.import_type "System.Windows.Forms.Form"
    Button = luanet.import_type "System.Windows.Forms.Button"
    Point = luanet.import_type "System.Drawing.Point"
    MessageBox = luanet.import_type "System.Windows.Forms.MessageBox"
    MessageBoxButtons = luanet.import_type "System.Windows.Forms.MessageBoxButtons"
    
    form = Form()
    form.Text = "Hello, World!"
    button = Button()
    button.Text = "Click Me!"
    button.Location = Point(20,20)
    button.Click:Add(function()
            MessageBox:Show("Clicked!", "", MessageBoxButtons.OK) -- this will throw an ex
        end)   
    form.Controls:Add(button)
    form:ShowDialog()
    LUA script exemple (it's the scit that handle druid cat form into fire cat form):
    Code:
    local CatForms = {
    29405, --Druid Cat, Purple night elf cat form.
    29406, --Druid Cat, Violet night elf cat form.
    29407, --Druid Cat, Green-black night elf cat form.
    29408, --Druid Cat, white night elf cat form.
    29409, --Druid Cat, Grey Tauren cat form.
    29410, --Druid Cat, Tan Tauren cat form.
    29411, --Druid Cat, Dark Brown Tauren cat form.  
    29412, --Druid Cat, Black Tauren cat form.  
    33660, --Druid Cat, Grey Worgen cat form.  
    33661, --Druid Cat, Black Worgen cat form.  
    33662, --Druid Cat, Brown Worgen cat form. 
    33663, --Druid Cat, white worgen cat form.  
    33664, --Druid Cat, Dark brown worgen cat form.  
    33665, --Druid Cat, White troll cat form.  
    33666, --Druid Cat, Green troll cat form.  
    33667, --Druid Cat, Teal troll cat form.  
    33668, --Druid Cat, Grey troll cat form.  
    33669, --Druid Cat, Green-grey troll cat form.  
    }
    
    for _,value in pairs(CatForms) do
      if value == getShapeDisplayId() then
        morphMe(38150);
        return;
      end
    end
    How to use it ?
    1- Start wow, log your character ingame
    2- Start iMorph2.exe
    3- Profit !


    Where do i get model ID's ?
    WoWHead is imo the best database website atm, so:

    For the item editor, just use the database ID like this:
    Warglaive of Azzinoth - Item - World of Warcraft
    This item ID for this warlgaive is 32837, just use the same ID to use the skin !


    For NPC's / Mounts you have to search the displayID don't use the database id, won't work !
    Exemple with illidan:
    Illidan Stormrage - NPC - World of Warcraft 22917 is the database id and it won't work, on this page, right click and view source, then just search for "displayid", you should find displayId: 21135, then just morph to 21135 !

    How to make custom item lists ?

    Use this template, files are just ini files:
    Code:
    [Stuff]
    Head=32235
    Shoulders=30980
    Chest=30976
    Belt=34547
    Legs=30978
    Feet=34568
    Wrists=34442
    Gloves=30970
    Back=0
    Mainhand=32837
    Offhand=32838
    Ranged=0
    Tabard=0
    (Empty/unused items have to be 0)

    The editor will be back soon !

    F.A.Q
    [Q] Can i be banned ?
    [A] Warden is not monitoring used offsets atm, but this can change at any moment.

    READ BEFORE CRYING ABOUT NOT WORKING
    - Install .net framework 3.5 (or 4.0, the latest)
    - Start World of Warcraft using wow.exe and NOT wow-64.exe
    - You have to run iMorph.exe as administrator (right click, run as administrator)
    - You have to use DirectX9 mode (ingame menu: Video -> Advanced -> Graphic API and set to directX9)
    - Windows XP is NOT SUPPORTED stop asking about your problems if you're using xp.
    - If still no working change computer.

    Changelog:
    Code:
    2.0.0
    
    -Complete recode from scratch
    -Multithreading to handle LUA.
    -New LUA engine to handle all the morphing stuff
    -You can minimize to tray
    
    1.9
    
    -Added a KillSwitch.
    -Added Shirt morphing.
    -Cleaned file structure.
    
    
    1.8
    
    -Fixed issues with Russian client.
    -Added option to disable/enable persistant mount morphing.
    -Cleaned the UI.
    -u u d d l r l r B A
    
    
    1.7
    
    -Persistant mount morph now working ! (you can re-mount, you still have your nice looking mount !)
    
    
    1.6
    
    -Options are now saved.
    -Complete rewrite of some features.
    -Fixed Orc Male model.
    -Think about konami code.
    
    
    1.5
    
    -Major fixes of persistent morphing trough polymorph/hex.
    -Some recoding, more stable.
    
    
    1.4
    
    -Mount Morphing introduced


    Downloads
    Download 2.0[Latest]

    Item sets:
    All rogue tiers (By Fumi)

    Older versions:

    Download 1.9
    Download 1.8
    Download 1.7
    Download 1.6
    Download 1.5
    Download 1.4

    If you want to thank me, you can donate a few bucks to pay my internet bill
    Last edited by Vandra; 09-07-2012 at 03:52 AM.

    iMorph | Change your skin / mount in one click !
  2. #2
    Clotic's Avatar Member Authenticator enabled
    Reputation
    11
    Join Date
    Jun 2010
    Posts
    200
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well Done:> but did u really need too make new topic O.o?

  3. #3
    duey5193's Avatar Private
    Reputation
    1
    Join Date
    Jan 2012
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    the Morph wont work for me. everytime i do it nothing happens

  4. #4
    Clotic's Avatar Member Authenticator enabled
    Reputation
    11
    Join Date
    Jun 2010
    Posts
    200
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What wow u use? u use Directx 9 - 11? mac pc windows? and so on

  5. #5
    Vandra's Avatar Contributor
    Reputation
    288
    Join Date
    Mar 2008
    Posts
    471
    Thanks G/R
    26/26
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by isidorzzon View Post
    Well Done:> but did u really need too make new topic O.o?
    Because it's no more "beta" and this thread is now clean

    Originally Posted by duey5193 View Post
    the Morph wont work for me. everytime i do it nothing happens
    You're doing it wrong !

  6. #6
    Clotic's Avatar Member Authenticator enabled
    Reputation
    11
    Join Date
    Jun 2010
    Posts
    200
    Thanks G/R
    1/3
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Vandra View Post
    Because it's no more "beta" and this thread is now clean

    Aha :>


    You're doing it wrong !
    rofl nice

  7. #7
    D4v16's Avatar Member
    Reputation
    5
    Join Date
    Sep 2007
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    still no mount morph that works when you remount.... LAME BOOOH!

  8. #8
    Vandra's Avatar Contributor
    Reputation
    288
    Join Date
    Mar 2008
    Posts
    471
    Thanks G/R
    26/26
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by D4v16 View Post
    still no mount morph that works when you remount.... LAME BOOOH!
    Yeah, next version i got it working without lagging

  9. #9
    D4v16's Avatar Member
    Reputation
    5
    Join Date
    Sep 2007
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hehe don't get me wrong i love your morpher keep up the good work ( i wouldn't play WoW anymore if there wasn't any morpher ) cheers!

  10. #10
    Vandra's Avatar Contributor
    Reputation
    288
    Join Date
    Mar 2008
    Posts
    471
    Thanks G/R
    26/26
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    iMorph 1.7 is here !
    Check the first post for more informations, persistant mount morphing in da place !

  11. #11
    D4v16's Avatar Member
    Reputation
    5
    Join Date
    Sep 2007
    Posts
    27
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Please fix the persistent morphing inside Well of eternety ( always changes your model back to a nightelf )
    Last edited by D4v16; 06-29-2012 at 11:51 AM.

  12. #12
    Ancyfex's Avatar Member
    Reputation
    1
    Join Date
    Nov 2008
    Posts
    24
    Thanks G/R
    1/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Last update (1.7) is working great, thanks for this awesome program!

  13. #13
    242729's Avatar Member
    Reputation
    1
    Join Date
    Oct 2010
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Works great and I love it. Only thing I can suggest is a check-box for persistent mount morphing, most of the time I want it but there times I would like to use the defaults.

  14. #14
    Vandra's Avatar Contributor
    Reputation
    288
    Join Date
    Mar 2008
    Posts
    471
    Thanks G/R
    26/26
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by D4v16 View Post
    Please fix the persistent morphing inside Well of eternety ( always changes your model back to a nightelf )
    I'll take a look in a couple of weeks i'm quite busy right now

    Originally Posted by 242729 View Post
    Works great and I love it. Only thing I can suggest is a check-box for persistent mount morphing, most of the time I want it but there times I would like to use the defaults.
    Yhea i'll add this

  15. #15
    DesignerAsh's Avatar Private
    Reputation
    1
    Join Date
    May 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Works like a charm.
    Last edited by DesignerAsh; 07-08-2012 at 08:21 AM.

Page 1 of 32 12345 ... LastLast

Similar Threads

  1. [Model Swap] Change your mount by an Skin edit
    By mageblast in forum WoW ME Questions and Requests
    Replies: 6
    Last Post: 11-08-2010, 11:35 AM
  2. Can you changed your skin colors and such after a race swap?
    By bulb271602 in forum WoW ME Questions and Requests
    Replies: 2
    Last Post: 01-10-2009, 11:37 AM
  3. [Skin Change]Horde Paladin Mounts -> Black Horde Paladin Mounts
    By Dreadly in forum World of Warcraft Model Editing
    Replies: 13
    Last Post: 11-17-2007, 08:18 PM
  4. [Skin Change] Alliance Paladin Mounts -> White Alliance Paladin Mounts
    By Dreadly in forum World of Warcraft Model Editing
    Replies: 5
    Last Post: 11-12-2007, 07:23 AM
  5. Replies: 1
    Last Post: 08-05-2007, 04:52 PM
All times are GMT -5. The time now is 09:04 AM. 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