What's new
  • Visit Rebornbuddy
  • Visit Panda Profiles
  • Visit LLamamMagic
  • Visit Resources
  • Visit Downloads
  • Visit Portal

Guild level 1-25 + Exalted in 1 hour

stejens

Member
Joined
Jan 23, 2012
Messages
110
Reaction score
0
HOTFIXED :(



Guys I have just been reading about a repeatable quest that will get your guild from level 1-25 in an hour, plus exalted with guild. I have been testing it out and it works, not sure if it will take me an hour but with 2, 3 or more people doing it you probably could easily.

What I need is a macro that will auto turn in a quest though, so I don't keep having to click the NPC etc, anyone know how to make this macro?

Have an addon from curse called "Turn In" which helps, there is a script macro written up on page 2 also.

Something to do to while the bot is down, go level them guilds! :D


Edit:
For Alliance, this is your man right here...

This won't work for high level characters, so make a level 1, run him there, give him some bags, and buy the drink from the vendor in the same area.

Gerard Tiller - WoWWiki - Your guide to the World of Warcraft

You can do it with level 1's, just hand in refreshing spring water none stop.


......................................................................

Horde as quoted below by Xandor:

Dont think anyone mentioned how to lvl up horde guild so I do: (note, this works for alliance also, only works the day before fishing contest I think, which is today for EU)

Quest: Could I get a Fishing Flier?
NPC: Grinkle <Fishing Promoter>
Location: Outside main AH in Orgrimmar. (a bunch of people will be stacked on him for sure)
Also one in Stormwind, but dunno where the npc is in there.

Macros:
Complete Quest:
/script SelectGossipAvailableQuest(1)
/script CompleteQuest()
/script GetQuestReward()

Delete Paper:
/run for x=0,4 do for y=1,GetContainerNumSlots(x) do l=GetContainerItemLink(x,y) if l then if GetItemInfo(l)=="Fishing Tournament!" then PickupContainerItem(x,y) DeleteCursorItem() return end end end end
 
Last edited:
which quest are you talking about and possibly someone could give you a macro like the one that keeps handing in for Ravenholdt Junkbox handins
 
Turn in addon above works best. Also get the slashdeleteall addon.

I got 4 characters from neutral to exalted with guild in 1min per character using the fishing tournament repeatable quest in org. Also got a few guild levels too on my own guild :)
 
You want a macro like this?:
PHP:
/script SelectGossipAvailableQuest(1)
/script CompleteQuest()
/script GetQuestReward()
 
Would you mind share more details with us? I am sure others would like to do this too ^^
 
You want a macro like this?:
PHP:
/script SelectGossipAvailableQuest(1)
/script CompleteQuest()
/script GetQuestReward()

For full setup, use the above mentioned macro. I have min keybound to 3 and interact keybound to k.

Create a new textfile on your comp, name it "ty-ushername-4-this-awesome-script.wbs"

Copy paste following onto it:

PHP:
set wshshell = createobject("wscript.shell")
wscript.sleep 100
WshShell.AppActivate "World of Warcraft"
wscript.sleep 100
set wshshell = createobject("wscript.shell")
for i=1 to 1900
wscript.sleep 100
wshshell.sendkeys "k"
wscript.sleep 500
wshshell.sendkeys "3"
wscript.sleep 500
wshshell.sendkeys "3"
wscript.sleep 500
wshshell.sendkeys "3"
next

This will turn in the quest 1900 times. You can adjust the delays, but lowering it to much, might screw it up.

You need to target the NPC before running the script!!

Part 2

Buying the waters.

PHP:
/script local a={"Refreshing Spring Water",20} for i=1,GetMerchantNumItems() do if GetMerchantItemInfo(i)==a[1] then BuyMerchantItem(i,a[2]) end end
Spammable! Buys a stack each run. You can put it in a for next loop, if you dont like pressing tah keyz.
 
Anyone know a horde quest like this that I can continue to repeat to level up my guild fast?
 
Turn in addon above works best. Also get the slashdeleteall addon.

I got 4 characters from neutral to exalted with guild in 1min per character using the fishing tournament repeatable quest in org. Also got a few guild levels too on my own guild :)


what quest is that?
 
Dont think anyone mentioned how to lvl up horde guild so I do: (note, this works for alliance also, only works the day before fishing contest I think, which is today for EU)

Quest: Could I get a Fishing Flier?
NPC: Grinkle <Fishing Promoter>
Location: Outside main AH in Orgrimmar. (a bunch of people will be stacked on him for sure)
Also one in Stormwind, but dunno where the npc is in there.

Macros:
Complete Quest:
/script SelectGossipAvailableQuest(1)
/script CompleteQuest()
/script GetQuestReward()

Delete Paper:
/run for x=0,4 do for y=1,GetContainerNumSlots(x) do l=GetContainerItemLink(x,y) if l then if GetItemInfo(l)=="Fishing Tournament!" then PickupContainerItem(x,y) DeleteCursorItem() return end end end end
 
I'm using the Turn In addon, as I don't know how to get the script working Usher. I did all that you said then pressed the macro button and it does nothing, I may be doing something wrong with it.
 
Is this fully automated? I keep have to press the K key... anyone know how to make it completely auto?
 
Is this fully automated? I keep have to press the K key... anyone know how to make it completely auto?
Yeah, If only the bot was working! lol. Think this is the only way, I'm using that Turn In addon that was recommended, and just keep right clicking the guy is all.
 
Back
Top