[PQR] Rubim Profiles menu

User Tag List

Page 3 of 68 FirstFirst 123456753 ... LastLast
Results 31 to 45 of 1007
  1. #31
    Ninjaderp's Avatar Banned
    Reputation
    199
    Join Date
    Dec 2010
    Posts
    1,847
    Thanks G/R
    1/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by tropical View Post
    is the new unholy profile for pvp or pve?
    Rubims profiles are all for PvE, check here for PvP DK-profiles: http://www.ownedcore.com/forums/worl...p-mashups.html (Frost and Unholy DK PVP Mashups!!)

    [PQR] Rubim Profiles
  2. #32
    chumii's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Aug 2011
    Posts
    104
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Rubim View Post
    Wrong macros.

    https://code.google.com/p/pqr-profil...ki/WarriorProt

    As i said earlier:
    /rcast ShieldBarrier

    not

    /rcast Shield Barrier

    =

    Post lua error.
    and i thought that was a mistype... works like a charm, thank you
    is there any way to change default hotkeys for heroic leap and pause?

  3. #33
    Rubim's Avatar Contributor
    Reputation
    247
    Join Date
    Mar 2010
    Posts
    267
    Thanks G/R
    4/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chumii View Post
    and i thought that was a mistype... works like a charm, thank you
    is there any way to change default hotkeys for heroic leap and pause?
    Type /nova
    Click on Cooldowns

    Profit.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063

  4. #34
    Soapbox's Avatar Legendary Founder of Soapbox Rotations

    CoreCoins Purchaser Authenticator enabled
    Reputation
    743
    Join Date
    Nov 2012
    Posts
    986
    Thanks G/R
    1118/364
    Trade Feedback
    61 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Rubim View Post
    Type /nova
    Click on Cooldowns

    Profit.
    I think he means the actual default settings you have them at (since they actually reset to default when you close WoW)


    These can be found in the ability that contains the frame options. (For example mine are in Nova_Frame)

  5. #35
    chumii's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Aug 2011
    Posts
    104
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Soapbox View Post
    I think he means the actual default settings you have them at (since they actually reset to default when you close WoW)


    These can be found in the ability that contains the frame options. (For example mine are in Nova_Frame)
    thats exactly what i want to change yes.
    i think i found the part but it didnt work out. i just swapped heroic leap and pause 1 but it didnt change ingame? tried to reload pqr and wow but nothing happens..

    Code:
    	Nova_CooldownCheck = {
    		[1]	=	{ Mod = 2,		Text = "Heroic Leap",			Var1 = 1},
    		[2]	=	{ Mod = 8,		Text = "AoE Rotation",			Var1 = 1},
    		[3]	=	{ Mod =	4,		Text = "Pause 1",				Var1 = 1},
    		[4]	=	{ Mod =	1,		Text = "Pause 2",				Var1 = 1}
    	}
    is this the relevant part in the data file?
    Code:
    Nova_Mod = nil
    function Nova_Mod()
    	total = 0
    	if IsLeftShiftKeyDown()
    		and not GetCurrentKeyBoardFocus() then
    			total = total + 1
    	end
    	if IsLeftControlKeyDown()
    		and not GetCurrentKeyBoardFocus() then
    			total = total + 2
    	end
    	if IsLeftAltKeyDown()
    		and not GetCurrentKeyBoardFocus() then
    			total = total + 4
    	end
    	if IsRightShiftKeyDown()
    		and not GetCurrentKeyBoardFocus() then
    			total = total + 8
    	end
    	if IsRightControlKeyDown()
    		and not GetCurrentKeyBoardFocus() then
    			total = total + 16
    	end
    	if IsRightAltKeyDown()
    		and not GetCurrentKeyBoardFocus() then
    			total = total + 32
    	end
    	return total
    end
    if it is, i cant see any reason why it didnt change...

  6. #36
    firepong's Avatar Elite User
    Reputation
    384
    Join Date
    Jan 2008
    Posts
    955
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chumii View Post
    thats exactly what i want to change yes.
    i think i found the part but it didnt work out. i just swapped heroic leap and pause 1 but it didnt change ingame? tried to reload pqr and wow but nothing happens..

    Code:
    	Nova_CooldownCheck = {
    		[1]	=	{ Mod = 2,		Text = "Heroic Leap",			Var1 = 1},
    		[2]	=	{ Mod = 8,		Text = "AoE Rotation",			Var1 = 1},
    		[3]	=	{ Mod =	4,		Text = "Pause 1",				Var1 = 1},
    		[4]	=	{ Mod =	1,		Text = "Pause 2",				Var1 = 1}
    	}
    is this the relevant part in the data file?
    Code:
    Nova_Mod = nil
    function Nova_Mod()
    	total = 0
    	if IsLeftShiftKeyDown()
    		and not GetCurrentKeyBoardFocus() then
    			total = total + 1
    	end
    	if IsLeftControlKeyDown()
    		and not GetCurrentKeyBoardFocus() then
    			total = total + 2
    	end
    	if IsLeftAltKeyDown()
    		and not GetCurrentKeyBoardFocus() then
    			total = total + 4
    	end
    	if IsRightShiftKeyDown()
    		and not GetCurrentKeyBoardFocus() then
    			total = total + 8
    	end
    	if IsRightControlKeyDown()
    		and not GetCurrentKeyBoardFocus() then
    			total = total + 16
    	end
    	if IsRightAltKeyDown()
    		and not GetCurrentKeyBoardFocus() then
    			total = total + 32
    	end
    	return total
    end
    if it is, i cant see any reason why it didnt change...
    Gotta change the Mod number to whatever. LeftShift is 1, Left control is 2, etc. Just look at the numbers there in the Nova_Mod.

  7. #37
    chumii's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Aug 2011
    Posts
    104
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    thats what i did.. the original one is mod=4 heroic leap and mod=2 pause1.. i just swapped them but it doesnt work

  8. #38
    Rubim's Avatar Contributor
    Reputation
    247
    Join Date
    Mar 2010
    Posts
    267
    Thanks G/R
    4/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by chumii View Post
    thats what i did.. the original one is mod=4 heroic leap and mod=2 pause1.. i just swapped them but it doesnt work
    Since it's a CVAR you have to restart wow to see any changes
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063

  9. #39
    MACH9 WoW Services's Avatar Member CoreCoins Purchaser
    Reputation
    3
    Join Date
    Jun 2012
    Posts
    219
    Thanks G/R
    1/1
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    What's different in your newer Windwalker Profile's compared to the older ones in OLD folder? I have the one from months ago and get great DPS

    Also what DATA files are required for Windwalker?

  10. #40
    Apsalaar's Avatar Member
    Reputation
    6
    Join Date
    Mar 2009
    Posts
    72
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey Rubim!

    Was going to try out you 2H Frost profile, and I came across the following error, no addons:
    Message: [string "if AoERotation == true then return false en..."]:113: attempt to call global 'TargetValidation' (a nil value)
    Time: 02/22/13 13:03:47
    Count: 724
    Stack: [string "if AoERotation == true then return false en..."]:113: in function `?'
    [string "if PQR_Addon_Loaded == nil then..."]:760: in function `PQR_NextAbility'
    [string "if PQR_Addon_Loaded == nil then..."]:533: in function `PQR_ExecuteRotation'
    [string "if PQR_Addon_Loaded == nil then..."]:289: in function <[string "if PQR_Addon_Loaded == nil then..."]:214>

    Locals: Presence = 2
    (*temporary) = nil
    (*temporary) = "target"
    (*temporary) = 123693
    (*temporary) = "attempt to call global 'TargetValidation' (a nil value)"

    Could anyone point me in the right direction to sort it out?

  11. #41
    imdasandman's Avatar Contributor
    Reputation
    206
    Join Date
    Feb 2011
    Posts
    965
    Thanks G/R
    9/4
    Trade Feedback
    7 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hey rubim I have the enhance profile done but I must have broke something horribly bad so check your pm's later today for the abilities/rotation files. I cannot get the data file or nova frames to load at all. So hopefully you can debug and fix the files and host it up on your svn or something. Or I could invite you to my gcode site which would allow you to edit and load files if you wish.

    Sent from my SAMSUNG-SGH-I717 using Tapatalk 2
    My Frost/Unholy DK WoL ranking edits(4.3) and crystals Hunter Beta profiles-
    https://imdasandmandeathknight.googl...com/svn/trunk/
    Originally Posted by Valma View Post
    Oh sure. (: Plz,lord,rewrite my profile without "re-inventing a wheel".I'm really interested how would you do so.I even ready to eat my pants if yours will perform better in raids than mine

  12. #42
    chumii's Avatar Master Sergeant
    Reputation
    7
    Join Date
    Aug 2011
    Posts
    104
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Rubim View Post
    Since it's a CVAR you have to restart wow to see any changes
    works. awesome. thanks very much +rep

  13. #43
    aenyth's Avatar Private
    Reputation
    1
    Join Date
    Oct 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hello Rubim, thank you for the work.
    It has been one moment since I use your profile, on the other hand with the new one do not can pass any more in AOE mode (RSHIFT) as with the old, is it normal??

  14. #44
    DEFLAMA's Avatar Member
    Reputation
    24
    Join Date
    Sep 2012
    Posts
    57
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Message: [string "-------------------------------------------..."]:702: Usage: UnitBuff("unit", [index] or ["name", "rank"][, "filter"])
    Time: 02/21/13 20:21:59
    Count: 54
    Stack: [C]: ?
    [C]: in function `UnitBuff'
    [string "-------------------------------------------..."]:702: in function `PQ_AuraInfo'
    [string "if not PlayerCombat ..."]:33: in function `?'
    [string "if PQR_Addon_Loaded == nil then..."]:760: in function `PQR_NextAbility'
    [string "if PQR_Addon_Loaded == nil then..."]:533: in function `PQR_ExecuteRotation'
    [string "if PQR_Addon_Loaded == nil then..."]:289: in function <[string "if PQR_Addon_Loaded == nil then..."]:214>

    Getting same problems with the LUA errors on Warrior Prot profile as other are with other profiles.
    To temp fix ive had to remove "[MISC] Auto Buff" from the rotation. not entirely sure why its suddenly come up, not changed anything since it last work perfectly. but removing this from the rotation seems to have solved it for now

  15. #45
    Rubim's Avatar Contributor
    Reputation
    247
    Join Date
    Mar 2010
    Posts
    267
    Thanks G/R
    4/7
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Diesell release a nice framework to work on.



    ===

    Upcoming changes:

    - One Rotation to RULE then all (Blood, Unholy, Frost) will be available on one ROTATION.
    - AutoEquip your SET on RotationChange
    - Diesell framework
    - Spell Queue System for most used spells.
    Last edited by Rubim; 02-22-2013 at 07:31 PM.
    https://www.ownedcore.com/forums/world-of-warcraft/world-of-warcraft-bots-programs/wow-bot-maps-profiles/385569-pqr-death-knight-monk-tank-dps-profiles.html#post2582063

Page 3 of 68 FirstFirst 123456753 ... LastLast

Similar Threads

  1. [PQR] MOP profiles
    By Sheepmoon in forum WoW Bot Maps And Profiles
    Replies: 350
    Last Post: 01-13-2014, 05:59 AM
  2. [PQR] - GRB profiles
    By GRB in forum WoW Bot Maps And Profiles
    Replies: 8
    Last Post: 05-23-2013, 01:43 AM
  3. [PQR] Mage Profiles
    By discobob in forum WoW Bot Maps And Profiles
    Replies: 11
    Last Post: 04-07-2013, 04:46 PM
  4. Warlock (PQR) pvp profile please?
    By leonel916 in forum WoW Bots Questions & Requests
    Replies: 0
    Last Post: 12-04-2012, 08:41 AM
  5. PQR Old profiles
    By Fumi in forum WoW Bots Questions & Requests
    Replies: 2
    Last Post: 05-08-2012, 02:35 PM
All times are GMT -5. The time now is 02:24 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