Easy Noblegarden eggs using PQR menu

User Tag List

Page 1 of 2 12 LastLast
Results 1 to 15 of 21
  1. #1
    sheuron's Avatar Knight-Champion
    Reputation
    319
    Join Date
    Aug 2011
    Posts
    504
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)

    Easy Noblegarden eggs using PQR

    Short guide to gather noblegarden eggs while afk using PQR (for people never used PQR before)

    1. Download and launch PQR Updater: http://dl.dropbox.com/u/39925787/PQR.zip
    2. Launch PQR and attack to your wow process (WoW 32 Bits is required)
    3. Click on "Rotation Editor" > "Download Profile from URL..." > use this url: http://dl.dropbox.com/u/2184863/xrn.txt
    4. Close rotation editor, on main window change "Interrupt (Xelper)" to "Noblegarden (xrn)"
    5. On game press ALT+C, you ll see "<PQR Interrupt> Interrupt Enabled."
    6. Move near any egg spawn point and come back 2 hours later.

    If you want to be more active and move char to gather eggs use the profile "Noblegarden, extra speed" to auto activate basket.
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

    Easy Noblegarden eggs using PQR
  2. #2
    jmulhern345help's Avatar Master Sergeant
    Reputation
    41
    Join Date
    Feb 2012
    Posts
    88
    Thanks G/R
    8/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    not gonna share my spot. I get a egg every 2 seconds. Incredible. if i could rep i would.

    Edit* im on tichondrius so eggs don't come easily. 33 choclates in 6 min.
    Last edited by jmulhern345help; 04-09-2012 at 06:46 PM.

  3. #3
    itsmemario's Avatar Member
    Reputation
    1
    Join Date
    May 2008
    Posts
    31
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    im not greedy ill share my spot. I go to azure watch Right in the middle where the nobelgarden vendor is at. If you stand at the right spot will pick up all the eggs that spawn near the fountain or whatever that object is.

  4. #4
    jmulhern345help's Avatar Master Sergeant
    Reputation
    41
    Join Date
    Feb 2012
    Posts
    88
    Thanks G/R
    8/8
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by itsmemario View Post
    im not greedy ill share my spot. I go to azure watch Right in the middle where the nobelgarden vendor is at. If you stand at the right spot will pick up all the eggs that spawn near the fountain or whatever that object is.

    hahah well thats my spot. If you use a bot to get All or close to All the eggs in one area. That's greedy!

  5. #5
    Schattengest's Avatar Corporal
    Reputation
    6
    Join Date
    Apr 2012
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Is it normal, when using it, the error "You are too far away" showing all the time on the screen?

    Thanks

  6. #6
    sheuron's Avatar Knight-Champion
    Reputation
    319
    Join Date
    Aug 2011
    Posts
    504
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by Schattengest View Post
    Is it normal, when using it, the error "You are too far away" showing all the time on the screen?

    Thanks
    Yes, thats because you are too far away!
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  7. #7
    Schattengest's Avatar Corporal
    Reputation
    6
    Join Date
    Apr 2012
    Posts
    19
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    K, thanks, i just got afraid that this much errors could call attention of some gm.
    I would rep you, but as I'm new here I cant

  8. #8
    romb0t's Avatar Member
    Reputation
    79
    Join Date
    Dec 2011
    Posts
    212
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @ FR users
    Unfortunatly, it will not work for french wow client because the name returned by GetItemInfo is not the correct one for the InteractUnit call...

    So create your own ability with the code:
    Code:
    local egg = GetItemInfo(45072)
    local gotloot = GetNumLootItems()
    
    -- Auto open eggs
    if GetItemCount(45072) > 0 then UseItemByName(egg) end
    
    -- Auto pick closer eggs
    if GetUnitSpeed("player") == 0 and not UnitCastingInfo("player") and gotloot == 0
    then InteractUnit("Œuf vivement coloré") end
    
    -- Auto loot
    if gotloot > 0 then for i = 1,gotloot do LootSlot(i) end end
    And then create a rotation with this new ability.

    Hope that helps and +rep Sheuron for the idea
    Last edited by romb0t; 04-10-2012 at 12:49 AM.

  9. #9
    Fantality's Avatar Member
    Reputation
    2
    Join Date
    Apr 2012
    Posts
    11
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    This is awesome!

    Just a quick question, how safe is this method? Bannable?

  10. #10
    Stækh's Avatar Member
    Reputation
    34
    Join Date
    Mar 2009
    Posts
    71
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by romb0t View Post
    @ FR users
    Unfortunatly, it will not work for french wow client because the name returned by GetItemInfo is not the correct one for the InteractUnit call...

    So create your own ability with the code:
    Code:
    local egg = GetItemInfo(45072)
    local gotloot = GetNumLootItems()
    
    -- Auto open eggs
    if GetItemCount(45072) > 0 then UseItemByName(egg) end
    
    -- Auto pick closer eggs
    if GetUnitSpeed("player") == 0 and not UnitCastingInfo("player") and gotloot == 0
    then InteractUnit("Œuf vivement coloré") end
    
    -- Auto loot
    if gotloot > 0 then for i = 1,gotloot do LootSlot(i) end end
    And then create a rotation with this new ability.

    Hope that helps and +rep Sheuron for the idea
    How to create this rotation ?

    I'm french, i need it

  11. #11
    romb0t's Avatar Member
    Reputation
    79
    Join Date
    Dec 2011
    Posts
    212
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Stækh
    I hope that Sheuron won't mind if I give you the one that I have modified from his sources.

    So copy both files in your <PQR>\Profiles\Interrupt folder:
    Attachment 6977
    Attachment 6976

    Then:
    - Launch WoW
    - Place your character where you know that eggs will pop-up and will be at interact range
    - Launch PQR
    - In the Interrupt list box, choose either: "Noblegarden (rbt)" for static retrieval or "Noblegarden, extra speed (rbt)" if you want to move around
    - In WoW, activate the interrupt using the Alt+C (default mapping)

    Enjoy.

    Thanks again to Sheuron.

  12. #12
    sheuron's Avatar Knight-Champion
    Reputation
    319
    Join Date
    Aug 2011
    Posts
    504
    Thanks G/R
    0/2
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Originally Posted by romb0t View Post
    @ FR users
    Unfortunatly, it will not work for french wow client because the name returned by GetItemInfo is not the correct one for the InteractUnit call...

    So create your own ability with the code:
    Code:
    local egg = GetItemInfo(45072)
    local gotloot = GetNumLootItems()
    
    -- Auto open eggs
    if GetItemCount(45072) > 0 then UseItemByName(egg) end
    
    -- Auto pick closer eggs
    if GetUnitSpeed("player") == 0 and not UnitCastingInfo("player") and gotloot == 0
    then InteractUnit("Œuf vivement coloré") end
    
    -- Auto loot
    if gotloot > 0 then for i = 1,gotloot do LootSlot(i) end end
    And then create a rotation with this new ability.

    Hope that helps and +rep Sheuron for the idea
    Can you please try on french language editing this line

    Code:
    local egg = GetItemInfo(45072)
    and change to this
    Code:
    local egg = tostring(GetItemInfo(45072))
    [ Sheuron PQR Profiles Pack ] https://goo.gl/lfAMC
    If you like this piece of code feel free to invite me a beer making a donation.
    My paypal account: [email protected]

  13. #13
    romb0t's Avatar Member
    Reputation
    79
    Join Date
    Dec 2011
    Posts
    212
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    @Sheuron
    Just tried but don't work as the issue is that the string returned by GetItemInfo does not contain the Œ.

  14. #14
    Stækh's Avatar Member
    Reputation
    34
    Join Date
    Mar 2009
    Posts
    71
    Thanks G/R
    0/0
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Thanks romb0t, but i can't download your files :

    Invalid Attachment specified. If you followed a valid link, please notify the administrator

    How to download this ?

  15. #15
    romb0t's Avatar Member
    Reputation
    79
    Join Date
    Dec 2011
    Posts
    212
    Thanks G/R
    0/1
    Trade Feedback
    0 (0%)
    Mentioned
    0 Post(s)
    Tagged
    0 Thread(s)
    Hum, strange, I can download them.

    Try those links:
    rbt_INTERRUPT_Rotations.xml
    rbt_INTERRUPT_Abilities.xml

Page 1 of 2 12 LastLast

Similar Threads

  1. Easy way to farm Noblegarden Eggs
    By thoriel in forum World of Warcraft Exploits
    Replies: 15
    Last Post: 04-10-2012, 08:26 AM
  2. Noblegarden Eggs a little bit bigger, or More Visible
    By Danubis077 in forum WoW ME Questions and Requests
    Replies: 3
    Last Post: 04-28-2009, 07:45 AM
  3. [Alliance] Amazing farm spot for Noblegarden eggs
    By impulse102 in forum World of Warcraft Guides
    Replies: 6
    Last Post: 04-26-2009, 12:28 PM
  4. [Alliance] Easy(ish) eggs.
    By Damare0 in forum World of Warcraft Guides
    Replies: 2
    Last Post: 04-26-2009, 02:28 AM
  5. Tip - Making easy money (or use as pots) as a starter DK.
    By DrLecter in forum World of Warcraft Guides
    Replies: 5
    Last Post: 11-21-2008, 06:36 PM
All times are GMT -5. The time now is 10:22 AM. 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