Follow us on
Follow us on Facebook Follow us on Twitter Watch us on YouTube


MMOCoin

Results 1 to 2 of 2
  1. #1
    Graphics Guru

    Join Date
    Feb 2009
    Posts
    1,377
    Rep Power
    24
    Reputation
    382

    iMorph | Change your skin / mount in one click !


    Register to remove this ad

    Working with wow 5.0.4




    Current features:
    - Morph your character to any race/*** 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

  2. #2
    Beginner

    Join Date
    Dec 2012
    Posts
    1
    Rep Power
    14
    Reputation
    1

    32bit


    Register to remove this ad
    Does this work with 32-bit? or just for 64-bit?

 

 

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •  
All times are GMT -5. The time now is 06:09 AM.
Powered by vBulletin® Copyright ©2000-2026, Jelsoft Enterprises Ltd.
vBulletin Licensed to: MMOPro.org
vBulletin Skin By: PurevB.com