PQR - Rotation Bot menu

Shout-Out

User Tag List

Page 496 of 779 FirstFirst ... 396446492493494495496497498499500546596 ... LastLast
Results 7,426 to 7,440 of 11681
  1. #7426
    Nerder's Avatar Contributor
    Reputation
    117
    Join Date
    Aug 2012
    Posts
    263
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by googlebee View Post
    Lost a 7 year old acct due to the bugged herb glitch tonight - anyway.....kinkehs DK frost profile link is bad. Anyone have an updated link? or suggestion for DK? Playing an alt acct =p

    thanks

    -GB
    Rubims are very nice man, Rubim's page ([PQR] Death Knight / Monk - Tank and DPS Profiles.) or heres the kinkehs that I had, last one I had that was updated Kinkehs PvE Frost

    PQR - Rotation Bot
  2. #7427
    xxmarlxx's Avatar Private
    Reputation
    1
    Join Date
    Mar 2012
    Posts
    14
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is there any love for ret anymore looking for a profile that can hold dps in heroic raid plzz help

  3. #7428
    808's Avatar Member
    Reputation
    4
    Join Date
    Jun 2012
    Posts
    39
    Thanks G/R
    1/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Nerder View Post
    These are what I use normally posted previously by someone else, dont remember who exactly... but here it is:
    Code:
    local _, Cooldown, Ready = GetInventoryItemCooldown("player", 10)
    
    if UseCD then
    	if Cooldown == 0 and
    		Ready == 1 and
    		UnitChannelInfo("player") == nil and
    		UnitAffectingCombat("player") ~= nil
    	then
    		UseInventoryItem(10)
    		return true
    	end
    end
    That would be for gloves, your first trinket would be 13 and the other would be 14 instead of the 10 in UseInventoryItem(10) and GetInventoryItemCooldown("player", 10). The UseCD requires a function higher in the priority list with the following like...
    Code:
    if modtime == nil then
    	modtime = 0
    end
    
    if IsRightControlKeyDown() and not GetCurrentKeyBoardFocus() and GetTime() - modtime > 1 then
    	modtime = GetTime()
    	if UseCD then
    		UseCD = false
    		PQR_WriteToChat("Cooldowns: \124cFFE61515Disabled")
    	else
    		UseCD = true
    		PQR_WriteToChat("Cooldowns: \124cFF15E615Enabled")
    	end
    end
    You can use IsLeftControlKeyDown(), IsLeftShiftKeyDown(), IsLeftAltKeyDown() or vise versa for the right just change the word Left to Right. There's also mouse buttons but I'm not a fan of those... Hope it helps bud, would've repsonded faster but I just woke up!

    thanks! I just tried to rep you but it seems I need to spread the rep around and will get back to you on that =)
    808

  4. #7429
    sandoog's Avatar Member
    Reputation
    1
    Join Date
    May 2009
    Posts
    5
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    whats the possibility to get PQR work with wow64bit in near future ?
    would love to see that happen.

  5. #7430
    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)
    Thats been asked a million times already and no, it wont happen any time soon if I recall reading answers from Xelper.

  6. #7431
    Techz's Avatar Member
    Reputation
    2
    Join Date
    Aug 2009
    Posts
    160
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hi all need help with the BM pvp profile made by Jarrito here http://www.ownedcore.com/forums/worl...pvp-5-1-a.html ([PQR] Hunter BM PVP (5.1))

    Ok i would like to try and make this work can anyone help me at all i would like to make it so in 2vs2 arena my focus enemy will get scatter shot and freezing trap on them everytime its on cd please


    --Code provided by Xelper
    local targetTrapped = UnitDebuffID("target", 1499)
    local _, FreezingTrapCD = GetSpellCooldown(1499)
    if targetTrapped then
    return true
    end


    if FreezingTrapTimeout ~= nil and FreezingTrapTimeout > GetTime() then
    local targetName = UnitName("target")
    if targetName == FreezingTrapTarget and FreezingTrapTarget ~= nil then
    if FreezingTrapCD > 3 then
    return true
    end
    end
    else
    FreezingTrapTimeout = nil
    FreezingTrapTarget = nil
    end


    if IsLeftControlKeyDown() and GetCurrentKeyBoardFocus() == nil then
    local ScatterShot = GetSpellInfo(19503)
    local TrapLauncher = GetSpellInfo(77769)
    local FreezingTrap = GetSpellInfo(1499)
    local ScatterShotCD, ScatterDuration = GetSpellCooldown(19503)
    ScatterShotCD = ScatterShotCD - GetTime() + ScatterDuration
    local TrapLauncherBuff = UnitBuffID("player", 77769)

    if ScatterShotCD < 3 and FreezingTrapCD < 3 then
    CastSpellByName(ScatterShot, "mouseover")
    return true
    end


    if ScatterShotCD > 20 and FreezingTrapCD < 3 and TrapLauncherBuff == nil then
    CastSpellByName(TrapLauncher)
    return true
    end


    if ScatterShotCD > 20 and FreezingTrapCD < 3 and TrapLauncherBuff then
    RunMacroText("/cast "..FreezingTrap)
    if FreezingTrapTimeout == nil or FreezingTrapTarget == nil then
    FreezingTrapTarget = UnitName("mouseover")
    end
    FreezingTrapTimeout = GetTime() + 3
    local PQR_TargetName = UnitName("target")
    local friendPlates = GetCVar("nameplateShowFriends")
    local enemyPlates = GetCVar("nameplateShowEnemies")
    SetCVar("nameplateShowFriends", 0)
    SetCVar("nameplateShowEnemies", 0)
    CameraOrSelectOrMoveStart()
    CameraOrSelectOrMoveStop()
    SetCVar("nameplateShowFriends", friendPlates)
    SetCVar("nameplateShowEnemies", enemyPlates)
    local PQR_TargetNameNew = UnitName("target")
    if PQR_TargetName ~= nil then
    if PQR_TargetName ~= PQR_TargetNameNew then
    TargetLastTarget()
    end
    else
    ClearTarget()
    end
    return true
    end
    end
    Please help!!!

  7. #7432
    lolomo2003's Avatar Active Member
    Reputation
    49
    Join Date
    Apr 2012
    Posts
    102
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by xxmarlxx View Post
    Is there any love for ret anymore looking for a profile that can hold dps in heroic raid plzz help
    Just one word AVERY (Avery Ret Profile)

  8. #7433
    Flashspam's Avatar Private
    Reputation
    1
    Join Date
    Dec 2012
    Posts
    6
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks so much for all the hard work you invested in this program, works great, really apreciate it!

  9. #7434
    crystal_tech's Avatar Elite User
    Reputation
    468
    Join Date
    Feb 2008
    Posts
    1,036
    Thanks G/R
    1/6
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    huh, i tested something.

    the pqr updater file from the first page is infected. malware bytes picked up a msi installer and removed it from the exe and it shows the same size as my clean version with same hashes.

    noticed that is the same msi package that filebeam downloads are getting hit with. my link: https://dl.dropbox.com/u/23527046/PQRUpdater.exe is clean until xelper checks his file.

    file found: AMDEx3.msi in C:\WIndows\Installer\ folder
    Last edited by crystal_tech; 01-08-2013 at 08:35 AM.

    Please if someone helped you donate rep to them.

  10. #7435
    vorn10's Avatar Active Member
    Reputation
    75
    Join Date
    Nov 2010
    Posts
    303
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    huh, i tested something.

    the pqr updater file from the first page is infected. malware bytes picked up a msi installer and removed it from the exe and it shows the same size as my clean version with same hashes.

    noticed that is the same msi package that filebeam downloads are getting hit with. my link: https://dl.dropbox.com/u/23527046/PQRUpdater.exe is clean until xelper checks his file.
    O.o Someone hacked his acc?

  11. #7436
    Weischbier's Avatar Member
    Reputation
    12
    Join Date
    Apr 2012
    Posts
    58
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Can someone please debug this for me?
    No Abilities getting used , except AMZ and DnD.

    https://dl.dropbox.com/u/24969605/DEATHKNIGHT.rar

    Note: This won't perform better or equal to Kinkehs/Rubims profiles. This is a rotation based on Simc for my own character.

    greetz

    Weischbier

  12. #7437
    ronja75's Avatar Private
    Reputation
    8
    Join Date
    Sep 2012
    Posts
    7
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    huh, i tested something.

    the pqr updater file from the first page is infected. malware bytes picked up a msi installer and removed it from the exe and it shows the same size as my clean version with same hashes.

    noticed that is the same msi package that filebeam downloads are getting hit with. my link: https://dl.dropbox.com/u/23527046/PQRUpdater.exe is clean until xelper checks his file.

    file found: AMDEx3.msi in C:\WIndows\Installer\ folder
    As i already reported yesterday, where everyone told me "your stupid ronja - turn off your antivir" (more or less)
    Thanks for checking it twice Crystal.

    We've also checked it this morning in the company
    The Trojan injects to svchost.exe. here it starts to download the maincode (password stealer)
    the maincode has ben placed on our test-machine at %TEMP%\atixx.tmp

    Affected Registry Entrys:
    Local_Machine\SYSTEM\ControlSet001\Services\6to4\Parameters\ServiceDll AMDEx3.msi
    Local_Machine\SYSTEM\ControlSet002\Services\6to4\Parameters\ServiceDll AMDEx3.msi
    Local_Machine\SYSTEM\CurrentControlSet\Services\6to4\Parameters\ServiceDll AMDEx3.msi
    Last edited by ronja75; 01-08-2013 at 10:35 AM.

  13. #7438
    Kaylo's Avatar Active Member
    Reputation
    20
    Join Date
    Jun 2012
    Posts
    68
    Thanks G/R
    11/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    huh, i tested something.

    the pqr updater file from the first page is infected. malware bytes picked up a msi installer and removed it from the exe and it shows the same size as my clean version with same hashes.

    noticed that is the same msi package that filebeam downloads are getting hit with. my link: https://dl.dropbox.com/u/23527046/PQRUpdater.exe is clean until xelper checks his file.

    file found: AMDEx3.msi in C:\WIndows\Installer\ folder
    Ouch. Good thing you can confirm it as a reliable source since there is a few comments abouts it.
    Wanted to add that I think thats the same trojan/group that infected DemonBuddy a while back. Seems it wasnt a one time deal and we have to watch out.

  14. #7439
    lolomo2003's Avatar Active Member
    Reputation
    49
    Join Date
    Apr 2012
    Posts
    102
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by crystal_tech View Post
    huh, i tested something.

    the pqr updater file from the first page is infected. malware bytes picked up a msi installer and removed it from the exe and it shows the same size as my clean version with same hashes.

    noticed that is the same msi package that filebeam downloads are getting hit with. my link: https://dl.dropbox.com/u/23527046/PQRUpdater.exe is clean until xelper checks his file.

    file found: AMDEx3.msi in C:\WIndows\Installer\ folder
    Idd I scanned the updater from the first page and have same AMDEx3.msi. I've noticed the file was uploaded 26 days ago and file was created 13.12.2012. I have my PQR Updater from 18.03.2012. So yes is something about that file. I think its related with the days when Xepler has problems with his account.

  15. #7440
    travis2861's Avatar Contributor
    Reputation
    99
    Join Date
    Aug 2007
    Posts
    227
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Have the updater from 3/18/12 aswell and it's clean, I'll upload it if needed.

Similar Threads

  1. [Bot] PQR PE Next Steps / Future of Rotation Botting
    By Chevrolet1 in forum World of Warcraft Bots and Programs
    Replies: 120
    Last Post: 10-21-2014, 11:47 AM
  2. [Bot] PQR - Rotation Bot
    By Xelper in forum World of Warcraft Bots and Programs
    Replies: 1738
    Last Post: 10-15-2014, 11:00 AM
  3. [Selling] 3 Lifetime Session Keys For Sale, Great for the PQR user looking for a rotation bot
    By cukiemunster in forum World of Warcraft Buy Sell Trade
    Replies: 13
    Last Post: 03-11-2014, 07:18 AM
  4. rotation bot leveling (PQR)
    By classdog in forum WoW Bots Questions & Requests
    Replies: 3
    Last Post: 09-17-2013, 06:13 PM
  5. [HELP] PQR Rotation Bot Profile Making
    By Missu in forum Programming
    Replies: 0
    Last Post: 10-22-2012, 06:27 AM
All times are GMT -5. The time now is 08:05 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