[PQR] - GRB profiles menu

User Tag List

Results 1 to 9 of 9
  1. #1
    GRB's Avatar Established Member CoreCoins Purchaser
    Reputation
    65
    Join Date
    Oct 2008
    Posts
    222
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    [PQR] - GRB profiles

    Hello guys,

    Since i start playing wow again, i decided to keep my previous work in PQR profiles, that i left in Cataclysm.
    First of all i want to thanks sheuron for some snippets i keep getting from his work

    My releases so far:
    Link - MONK - TANK (ver:1.0.0.1)
    Code:
    Requirements:
    In order to use this profile you need to have:
    
    -Glyphs: Glyph of Guard , Glyph of Touch of Death
    -Talents: Chi Wave , Rushing Jade Wind
    -Your game need to be in english!
    
    failing to have this requirements and the profile will not work.

    Thats all for now, i will keep updating my pofiles.
    If you have any doubt just post a reply.



    Best Regards,
    GRB
    Last edited by GRB; 11-02-2012 at 05:32 AM.
    Stay Safe, Zero Latency, Play the Game!

    [PQR] - GRB profiles
  2. #2
    GRB's Avatar Established Member CoreCoins Purchaser
    Reputation
    65
    Join Date
    Oct 2008
    Posts
    222
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Well today i decided to make a bot to do some bg's for me while i afk abit.

    WHAT BOT DOES:
    -Auto Start logging the chat as soon as you enter the bg, and stop when bg end. This way u can see if someone was talking about you to report. (NEW FEATURE)
    -Queue and Requeue always the first option in pvp frame. ex: (Random BG) or low lvl's (Warsong)
    -Auto Accept when queue is ready.
    -Auto Release if dead.
    -Auto Mount. (will always mount ur second mount, if you only have 1 mount just change the "2" to "1" in the code: ("CallCompanion("MOUNT",2)")
    -Auto Select nearest friend player and follow him around. If player is far away will try to select the other one closest.
    -If your dead will not follow anyone, so u dont leave the gv area, so you can respawn there.
    -Auto Leave bg's after alliance or horde wins, no wait time. Insta leave for faster bg's.

    TODO:
    -Might implement a check to change to a fighting profile when in combat. (so you dont look so much a bot)
    -Your ideas.

    HOW TO USE IT:
    -Create a new rotation for ur class. And uncheck the requirement for combat.
    -Create a new profile.
    -Create a new ability and past this code inside it.

    Code:
    local status, mapName, instanceID, bracketMin, bracketMax, teamSize, registeredMatch = GetBattlefieldStatus(1)
    local inside = IsIndoors()
    local mounted = IsMounted()
    local winner = GetBattlefieldWinner()
    local waitTime = GetBattlefieldEstimatedWaitTime(1)
    
    if waitTime == 0 and status == "none" then
    	RunMacroText("/run TogglePVPFrame()")
    end
    if winner == 0 or winner == 1 or winner == 255 then
    	PQR_WriteToChat("Your chat as stop beeing logged")
    	LoggingChat(0)
    	LeaveBattlefield()
    end
    if status == "none" then
    	JoinBattlefield(1)
    elseif status == "confirm" then
    	AcceptBattlefieldPort(1,1)
    elseif status == "active" then
    	PQR_WriteToChat("Your chat is beeing logged to Logs\\WOWChatLog.txt")
    	LoggingChat(1)
    	if UnitIsDead("player") then
    		RepopMe()
    	end
    	if not UnitExists("target") then
    	TargetNearestFriendPlayer()
    	end
    	if UnitIsDead("player") == nil and CheckInteractDistance("target",4) then
    		FollowUnit("target")
    	else
    		ClearTarget()
    	end
    	if not PQR_IsMoving() then
    		if not inside and not mounted then
    			CallCompanion("MOUNT",2)
    		end
    	end
    end
    -Click Save.
    -Add the new ability to the rotation
    -Set that new rotation in PQR.
    -Press the hotkey in game.
    -PROFIT.


    Enjoy,
    GRB
    Last edited by GRB; 11-11-2012 at 04:16 PM.
    Stay Safe, Zero Latency, Play the Game!

  3. #3
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GRB View Post
    Well today i decided to make a bot to do some bg's for me while i afk abit.

    WHAT BOT DOES:
    -Auto Start logging the chat as soon as you enter the bg, and stop when bg end. This way u can see if someone was talking about you to report. (NEW FEATURE)
    -Queue and Requeue always the first option in pvp frame. ex: (Random BG) or low lvl's (Warsong)
    -Auto Accept when queue is ready.
    -Auto Release if dead.
    -Auto Mount. (will always mount ur second mount, if you only have 1 mount just change the "2" to "1" in the code: ("CallCompanion("MOUNT",2)")
    -Auto Select nearest friend player and follow him around. If player is far away will try to select the other one closest.
    -If your dead will not follow anyone, so u dont leave the gv area, so you can respawn there.
    -Auto Leave bg's after alliance or horde wins, no wait time. Insta leave for faster bg's.

    TODO:
    -Might implement a check to change to a fighting profile when in combat. (so you dont look so much a bot)
    -Your ideas.

    HOW TO USE IT:
    -Create a new rotation for ur class. And uncheck the requirement for combat.
    -Create a new profile.
    -Create a new ability and past this code inside it.

    Code:
    local status, mapName, instanceID, bracketMin, bracketMax, teamSize, registeredMatch = GetBattlefieldStatus(1)
    local inside = IsIndoors()
    local mounted = IsMounted()
    local winner = GetBattlefieldWinner()
    local waitTime = GetBattlefieldEstimatedWaitTime(1)
    
    if waitTime == 0 and status == "none" then
    	RunMacroText("/run TogglePVPFrame()")
    end
    if winner == 0 or winner == 1 or winner == 255 then
    	PQR_WriteToChat("Your chat as stop beeing logged")
    	LoggingChat(0)
    	LeaveBattlefield()
    end
    if status == "none" then
    	JoinBattlefield(1)
    elseif status == "confirm" then
    	AcceptBattlefieldPort(1,1)
    elseif status == "active" then
    	PQR_WriteToChat("Your chat is beeing logged to Logs\\WOWChatLog.txt")
    	LoggingChat(1)
    	if UnitIsDead("player") then
    		RepopMe()
    	end
    	if not UnitExists("target") then
    	TargetNearestFriendPlayer()
    	end
    	if UnitIsDead("player") == nil and CheckInteractDistance("target",4) then
    		FollowUnit("target")
    	else
    		ClearTarget()
    	end
    	if not PQR_IsMoving() then
    		if not inside and not mounted then
    			CallCompanion("MOUNT",2)
    		end
    	end
    end
    -Click Save.
    -Add the new ability to the rotation
    -Set that new rotation in PQR.
    -Press the hotkey in game.
    -PROFIT.


    Enjoy,
    GRB

    Holy shit fishing?

    Rep+ This is great.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  4. #4
    GRB's Avatar Established Member CoreCoins Purchaser
    Reputation
    65
    Join Date
    Oct 2008
    Posts
    222
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    was bored avery, lol
    Stay Safe, Zero Latency, Play the Game!

  5. #5
    averykey's Avatar Contributor
    Reputation
    158
    Join Date
    Dec 2011
    Posts
    448
    Thanks G/R
    0/0
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by GRB View Post
    was bored avery, lol
    If you are bored, figure out how to get the state of the bobber with pqr. I have a fishing ability wrote but it wont work unless I figure that out.
    My Svn - https://subversion.assembla.com/svn/averykeys-svn/

  6. #6
    GRB's Avatar Established Member CoreCoins Purchaser
    Reputation
    65
    Join Date
    Oct 2008
    Posts
    222
    Thanks G/R
    0/1
    Trade Feedback
    2 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    the only thing you need is to get the bopper GUID and ur done.
    Stay Safe, Zero Latency, Play the Game!

  7. #7
    h1582369's Avatar Corporal
    Reputation
    1
    Join Date
    Nov 2012
    Posts
    30
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    "-Your game need to be in english!"


    I think if you want your rotation attracts people like a certain rotation (no name) you should ensure that it can be utilissable by all customers ....

  8. #8
    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 h1582369 View Post
    "-Your game need to be in english!"


    I think if you want your rotation attracts people like a certain rotation (no name) you should ensure that it can be utilissable by all customers ....
    Have you tried any of the other monk-profiles on the forum? And you could just ask nicely if he could make it work for other localizations and he might do it, lol.

  9. #9
    szilcsi's Avatar Active Member
    Reputation
    17
    Join Date
    Jul 2012
    Posts
    78
    Thanks G/R
    0/0
    Trade Feedback
    1 (100%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    hi! i try auto bg bot profile in 5.3. its join to AV. I want to change it to Call to arms but dunno how?

    if status == "none" then
    JoinBattlefield(1)

    whats the number for call to arms or random bg?
    thanks

    i found random BG number: 32
    Last edited by szilcsi; 05-23-2013 at 03:02 AM.

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] Mage Profiles
    By discobob in forum WoW Bot Maps And Profiles
    Replies: 11
    Last Post: 04-07-2013, 04:46 PM
  3. [Bot] Druid PQR dispel profile
    By yfz450 in forum World of Warcraft Bots and Programs
    Replies: 1
    Last Post: 01-11-2013, 04:24 AM
  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 04:51 PM. 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