Mage Profile menu

User Tag List

Thread: Mage Profile

Results 1 to 13 of 13
  1. #1
    jafoste's Avatar Member
    Reputation
    1
    Join Date
    Jan 2016
    Posts
    9
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Mage Profile

    Well guys i decided to build a new profile to mage but im having problems with polymorph.any way to stopcast and cast polymorf on pqr? on 3.3.5.

    if UnitExists("mouseover") and UnitIsUnit("mouseover","target") == nil and IsLeftControlKeyDown() then
    CastSpellByID(12826,"mouseover")
    end
    i have this
    but its not good eneugh, need something that stopcast to then cast polymorph

    Mage Profile
  2. #2
    mzt's Avatar Member
    Reputation
    3
    Join Date
    Nov 2014
    Posts
    5
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jafoste View Post
    Well guys i decided to build a new profile to mage but im having problems with polymorph.any way to stopcast and cast polymorf on pqr? on 3.3.5.

    if UnitExists("mouseover") and UnitIsUnit("mouseover","target") == nil and IsLeftControlKeyDown() then
    CastSpellByID(12826,"mouseover")
    end
    i have this
    but its not good eneugh, need something that stopcast to then cast polymorph
    RunMacroText("/stopcasting")
    SpellStopCasting()
    Last edited by mzt; 01-08-2016 at 05:57 PM.

  3. #3
    jafoste's Avatar Member
    Reputation
    1
    Join Date
    Jan 2016
    Posts
    9
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    It doesnt stop cast, it only casts after finishing casting. for exemple if he is casting frostbolt he finish cast frostbolt and only after that he casts poly

  4. #4
    mzt's Avatar Member
    Reputation
    3
    Join Date
    Nov 2014
    Posts
    5
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jafoste View Post
    It doesnt stop cast, it only casts after finishing casting. for exemple if he is casting frostbolt he finish cast frostbolt and only after that he casts poly
    Code:
    local mySN = select(1, UnitCastingInfo("player"))
    if mySN ~= GetSpellInfo(SpID) then
    	SpellStopCasting()
    end
    CastSpellByID(SpID, myT)
    works, just tested this

  5. #5
    jafoste's Avatar Member
    Reputation
    1
    Join Date
    Jan 2016
    Posts
    9
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    i have this:


    local mySN = select(1, UnitCastingInfo("player"))
    if IsLeftShiftKeyDown()
    then
    if mySN ~= GetSpellInfo(42842) then
    SpellStopCasting()
    return true
    end
    end

    but still not working, it cast poly but only after end cast frostbolt

  6. #6
    G0tha's Avatar Member
    Reputation
    9
    Join Date
    Jul 2013
    Posts
    76
    Thanks G/R
    4/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Code:
    if UnitCastingInfo("player") ~= "Polymorph"
    and UnitCastingInfo("player")
    and IsLeftShiftKeyDown() 
    then
    SpellStopCasting()
    end
    Code:
    if UnitExists("mouseover") 
    and UnitIsUnit("mouseover","target") == nil 
    and IsLeftShiftKeyDown() 
    then
    CastSpellByID(12826,"mouseover")
    end
    Edited once more.
    Last edited by G0tha; 01-09-2016 at 04:14 PM.

  7. Thanks jafoste (1 members gave Thanks to G0tha for this useful post)
  8. #7
    mzt's Avatar Member
    Reputation
    3
    Join Date
    Nov 2014
    Posts
    5
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jafoste View Post
    i have this:


    local mySN = select(1, UnitCastingInfo("player"))
    if IsLeftShiftKeyDown()
    then
    if mySN ~= GetSpellInfo(42842) then
    SpellStopCasting()
    return true
    end
    end

    but still not working, it cast poly but only after end cast frostbolt
    Code:
    if IsLeftShiftKeyDown()
    and UnitExists(myT)
    and UnitIsUnit(myT, "target") == nil 
    and UnitIsEnemy(myT, "player") then
    	local mySN = select(1, UnitCastingInfo("player"))
    	if mySN ~= GetSpellInfo(SpID) then
    		SpellStopCasting()
    	end
    	CastSpellByID(SpID, myT)
    end
    testprofile: http://puu.sh/mpHmD/b1c830d780.rar
    Last edited by mzt; 01-09-2016 at 04:30 PM.

  9. Thanks jafoste (1 members gave Thanks to mzt for this useful post)
  10. #8
    jafoste's Avatar Member
    Reputation
    1
    Join Date
    Jan 2016
    Posts
    9
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    no guys none of ur codes is working guys. tried out, it doesnt stop cast. it just cast after he ends casting frostbolt
    Last edited by jafoste; 01-09-2016 at 04:35 PM.

  11. #9
    mzt's Avatar Member
    Reputation
    3
    Join Date
    Nov 2014
    Posts
    5
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jafoste View Post
    no guys none of ur codes is working guys. tried out, it doesnt stop cast. it just cast after he ends casting frostbolt
    Imgur: The most awesome images on the Internet
    With above posted profile.

  12. #10
    G0tha's Avatar Member
    Reputation
    9
    Join Date
    Jul 2013
    Posts
    76
    Thanks G/R
    4/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    are you using english version client?

  13. Thanks jafoste (1 members gave Thanks to G0tha for this useful post)
  14. #11
    jafoste's Avatar Member
    Reputation
    1
    Join Date
    Jan 2016
    Posts
    9
    Thanks G/R
    4/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    yes i am and i copied ur code and its not working :S im using 3.3.5 version as i said.

    but i think there is an error because u have "Myt" var, but u didnt declared that var, think its that the error
    Last edited by jafoste; 01-09-2016 at 04:46 PM.

  15. #12
    G0tha's Avatar Member
    Reputation
    9
    Join Date
    Jul 2013
    Posts
    76
    Thanks G/R
    4/4
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    both codes should do their job, you are doing something wrong. And yes you have to declare the var in his code. In your case it will be:
    Code:
    local myT = "mouseover"
    local SpID = 42842

  16. #13
    mzt's Avatar Member
    Reputation
    3
    Join Date
    Nov 2014
    Posts
    5
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by jafoste View Post
    yes i am and i copied ur code and its not working :S im using 3.3.5 version as i said.

    but i think there is an error because u have "Myt" var, but u didnt declared that var, think its that the error
    I posted a download link above with the full profile, if you look at that you'll see its declared.
    If you just copy the code you'd need to declare it yourself.

  17. Thanks jafoste (1 members gave Thanks to mzt for this useful post)

Similar Threads

  1. [PQR] Gabbz Mage Profiles
    By Gabbz in forum WoW Bot Maps And Profiles
    Replies: 207
    Last Post: 07-18-2016, 08:00 PM
  2. [PQR] Mage Profiles
    By discobob in forum WoW Bot Maps And Profiles
    Replies: 11
    Last Post: 04-07-2013, 04:46 PM
  3. [PQR] Nilrem Fire Mage profile
    By nilrem2004 in forum WoW Bot Maps And Profiles
    Replies: 7
    Last Post: 03-19-2013, 09:32 AM
  4. [Request] Working acarne Mage Profil
    By Terades313 in forum WoW Bot Maps And Profiles
    Replies: 6
    Last Post: 02-21-2013, 07:35 PM
  5. [PQR] Bossqwerty's MOP Mage Profiles
    By Bossqwerty in forum WoW Bot Maps And Profiles
    Replies: 154
    Last Post: 12-29-2012, 04:51 PM
All times are GMT -5. The time now is 07:47 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