[Addon] "Transporter Malfunction"-MoEdit (works for druids and maybe rogues/warriors) menu

User Tag List

Page 5 of 7 FirstFirst 1234567 LastLast
Results 61 to 75 of 99
  1. #61
    SchnuBby's Avatar Active Member
    Reputation
    50
    Join Date
    May 2007
    Posts
    86
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Works perfect, thx again
    Hehe no prolem. glad you like it and it's working

    cya around :wave:
    <img src=https://www.quickmeme.com/img/35/352f12ae8ccc1794a85ce562c3ce9d3eefe7ccd4732fde240f1c1c1750158c4e.jpg border=0 alt= />

    [Addon] &quot;Transporter Malfunction&quot;-MoEdit (works for druids and maybe rogues/warriors)
  2. #62
    Excrucious's Avatar Member
    Reputation
    1
    Join Date
    Sep 2008
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Very cool, thanks

  3. #63
    Pomegranate's Avatar Member
    Reputation
    1
    Join Date
    Sep 2008
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can't get it working

  4. #64
    SchnuBby's Avatar Active Member
    Reputation
    50
    Join Date
    May 2007
    Posts
    86
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    I can't get it working
    Mhh i'm sorry to hear that but what have you done ?

    which class you're playing ?

    have you downloaded CyphersMorph ?

    do you start Wow with CypherMorph ?

    have you activated the Addon ?

    wich version of the Addon you're using ?

    And so on....

    tell me a little bit more so i try my best to help you get this working.
    :wave:
    <img src=https://www.quickmeme.com/img/35/352f12ae8ccc1794a85ce562c3ce9d3eefe7ccd4732fde240f1c1c1750158c4e.jpg border=0 alt= />

  5. #65
    Ruqas's Avatar Member
    Reputation
    14
    Join Date
    Jan 2008
    Posts
    52
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Ummmm.....AWESOME!

  6. #66
    Hazzie's Avatar Member
    Reputation
    2
    Join Date
    Jun 2007
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just did some quick playing around with it, and I noticed that I only seem to be getting the Human Female model in Battle Stance and Defensive Stance. I cant get any other race in those stances, and I cant seem to get Human Female in Berserker Stance.

    Other than that it seems to be working like a charm, good work. <3

    Edit: Ok, just got Human Female in Berserker Stance after about 5 minutes of switching stances. But im still only getting Human Female in the other 2 stances.

    Edit2: Just had a mess around with Core.LUA and looking at how it works and it seems really simple. I've got an idea of how I could make it work 100% but I dont know how to call a particular function or part of the code in LUA (Very new to it), if anyone could give me an example of how to call a function that'd be much appreciated.

    Edit3: Aight, done some more snooping around and noticed that every time I go into Defensive Stance or Battle Stance it seems to do every IF statement in that PLAYER_AURAS_CHANGED function and because the Human Female morph ID is in the last IF statement that is the one I finish up as. /boggle
    Last edited by Hazzie; 09-28-2008 at 11:04 AM.

  7. #67
    SchnuBby's Avatar Active Member
    Reputation
    50
    Join Date
    May 2007
    Posts
    86
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hazzie:

    Really nice work m8. I love to see people try to learn something by there own.

    So wich function you wanna call ? mostly the syntax is like:

    local x = FunctionName (Arg1, Arg2, Arg3);

    local means that x is a "local" variable ... so x would be only useable in this function you can see in the core.lua there are local form and local test but there's also oldForm at the top of the Code this is a "global" variable usable everywhere in every function in the code.

    You can Paste your Code.lua here and i can review it and tell what i think but the File is simple so i think you can make it by yourself but let me know when you got it working

    PS: And i'm also reviewing the Core.lua cause of your brilliant Feedback i also think i have a idea how to fix your Problem... Thank you much appreciated... +Rep

    // EDIT:

    I think the Bracket's in the IF's are incorrect.

    They're looking like this atm:

    if (form == 1 or form == 2 or form == 3 and (form ~= oldForm) and test == 1) then

    but i think they should look like this:

    if (((form == 1) or (form == 2) or (form == 3)) and ((form ~= oldForm) and test == 1)
    ) then

    I've marked the new ones green for better understanding. I'm sorry i can't test this atm because i'm at work would be awesome if some1 could test this.

    thx, cya
    :wave:


    Last edited by SchnuBby; 09-29-2008 at 02:41 AM.
    <img src=https://www.quickmeme.com/img/35/352f12ae8ccc1794a85ce562c3ce9d3eefe7ccd4732fde240f1c1c1750158c4e.jpg border=0 alt= />

  8. #68
    Hazzie's Avatar Member
    Reputation
    2
    Join Date
    Jun 2007
    Posts
    12
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That worked! You're an absolute genius. <3 +Rep for you twice cause I forgot to give you it the first time.

  9. #69
    SchnuBby's Avatar Active Member
    Reputation
    50
    Join Date
    May 2007
    Posts
    86
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    That worked! You're an absolute genius. <3 +Rep for you twice cause I forgot to give you it the first time.
    Yeah Thank you for your kind words really glad !

    Thanks also for the +Rep.

    But that's not Completely my work... without your "code-sniffing" and feedback i had never found this Bug / Problem, so this is at least 50% your success .... ty !

    PS: i will upload the new version and put it on the main Site of this Thread.

    Link:
    RapidShare: Easy Filehosting

    PS: if you got any Question about Coding or the WoW-Api, let me know i'm also new to it, but i know much about it and it's really simple and i love to help ppl. learn coding or so

    Cya :wave:
    Last edited by SchnuBby; 09-29-2008 at 07:55 AM.
    <img src=https://www.quickmeme.com/img/35/352f12ae8ccc1794a85ce562c3ce9d3eefe7ccd4732fde240f1c1c1750158c4e.jpg border=0 alt= />

  10. #70
    snusker's Avatar Member
    Reputation
    21
    Join Date
    Apr 2007
    Posts
    67
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just a small note, wich i bet you've noticed. It causes WoW to crash. Atleast it does for me, was wondering if you know why and if it's able to fix it ? Thanks in advance.
    Lulz.

  11. #71
    SchnuBby's Avatar Active Member
    Reputation
    50
    Join Date
    May 2007
    Posts
    86
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Just a small note, wich i bet you've noticed. It causes WoW to crash. Atleast it does for me, was wondering if you know why and if it's able to fix it ? Thanks in advance.
    Yes this is really a known issue that i try to fix since i had the idea of the addon....

    But i believe it's not the Addon wich causes WoW to crash and i believe (i don't know) that cypher's morph is also not the reason why WoW is crasching...

    i think it's the combination of both of the Programs, it's because the Addon is switching the models really often, and i believe this will overflow the memory of WoW or so... But i'm not really sure

    But you can be sure i try my best to fix this ... maybe cypher is reading this and is willing to give me his source-codes of the Morph tool because this would my debugwork really help.... but maybe i will simply just send him a PM..

    cause it's f***ing me up that the addon is crashing WoW but at my Computer it's really random if wow crashes or not ... i can be online 3 days in a row and wow is not Crashing and sometimes the addon is causing wow to crash after 5 minutes .... how is it with your WoW is it crashing at same time when you play ? or is it so random as it is with my WoW ? maybe you got a whole different bug

    So in conclusion i really don't know why and what it is but i WILL find it and fix it (hopefully )

    ps: you can try to only swap models when in a special form like only in berserker form or so .... maybe this will not overflow the memory (if this is the reason)....

    I hope this helps a little
    cya, :wave:
    <img src=https://www.quickmeme.com/img/35/352f12ae8ccc1794a85ce562c3ce9d3eefe7ccd4732fde240f1c1c1750158c4e.jpg border=0 alt= />

  12. #72
    omgpew's Avatar Corporal
    Reputation
    2
    Join Date
    Oct 2008
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Nothing happening during changing stances , copyed everything , done everything , and besides that , when i try morph 59 (for naked tauren) as u said for example. WoW crashes , fatal error and a long log , anyway this is on patch 3.0 so could have been some changes in the warrior Aura thingy? or?

  13. #73
    SchnuBby's Avatar Active Member
    Reputation
    50
    Join Date
    May 2007
    Posts
    86
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Uhm My Friend there is no 3.0.2 version of CypherMorph (as far as is know) and my addon only works with this program.

    So if you used this addon in 3.0.2 with the old CypherMorph you can be glad that you not have been banned yet.

    Sorry for that as soon as i know that there's a working CypherMorph for 3.0.2 i will review my Addon and look that i get it 3.0.2 compatible....

    :wave:
    <img src=https://www.quickmeme.com/img/35/352f12ae8ccc1794a85ce562c3ce9d3eefe7ccd4732fde240f1c1c1750158c4e.jpg border=0 alt= />

  14. #74
    omgpew's Avatar Corporal
    Reputation
    2
    Join Date
    Oct 2008
    Posts
    18
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Lulz thanks.

  15. #75
    Balantai's Avatar Member
    Reputation
    1
    Join Date
    Oct 2008
    Posts
    4
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Great idea

Page 5 of 7 FirstFirst 1234567 LastLast

Similar Threads

  1. Replies: 8
    Last Post: 12-31-2014, 06:41 PM
  2. WTT damage bug for druid and lock (cata)
    By tvl in forum WoW EMU Exploits & Bugs
    Replies: 4
    Last Post: 07-03-2012, 04:34 AM
  3. Help i cant get my server to work for me and my cuzin
    By cdsingleton in forum WoW EMU Questions & Requests
    Replies: 2
    Last Post: 07-12-2009, 03:09 PM
  4. Replies: 13
    Last Post: 09-18-2007, 06:26 AM
All times are GMT -5. The time now is 07:39 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