galloping gale

Additional botting resources. Addons may be either for the game itself or for the RoM bot.
Forum rules
Only post additional bot resources here. Please do not ask unrelated questions.
Post Reply
Message
Author
Supergala
Posts: 504
Joined: Mon May 17, 2010 3:40 pm
Location: Poland

galloping gale

#1 Post by Supergala »

anyone can copy here the code for use gallping gale potion?it's housemaid craft potion.....i'd like to know how to add in profile macro and in waypoint macro if possible ty
User avatar
Bill D Cat
Posts: 555
Joined: Sat Aug 10, 2013 8:13 pm
Location: Deep in the Heart of Texas

Re: galloping gale

#2 Post by Bill D Cat »

Seems to me something like this would work. Easy to add to a specific waypoint.

Code: Select all

if inventory:itemTotalCount(207204) > 0 and not player:hasBuff(506688) then
     inventory:useItem(207204)
end
User avatar
beanybabe
Posts: 647
Joined: Wed Mar 06, 2013 1:27 am

Re: galloping gale

#3 Post by beanybabe »

example use in function

Code: Select all

function mountUp()
	if not player:hasBuff(506688) and inventory:itemTotalCount(207204) > 0 then
		inventory:useItem(207204)
	        yrest(500);
	end
 	player:mount()	
	--MountSpeedHack(99)       -- might cause rubberbanding 
end
Supergala
Posts: 504
Joined: Mon May 17, 2010 3:40 pm
Location: Poland

Re: galloping gale

#4 Post by Supergala »

nice guys ty:)
if you can copy here command for check complete dailies quests and use dailies ticket will be so happy:)
User avatar
beanybabe
Posts: 647
Joined: Wed Mar 06, 2013 1:27 am

Re: galloping gale

#5 Post by beanybabe »

check some of these they work for the most part.
i used code from may other people wps mostly bill cats to make them

viewtopic.php?f=21&t=6321
http://www.solarstrike.net/phpBB3/viewt ... =27&t=5539
http://www.solarstrike.net/phpBB3/viewt ... =27&t=6343

this was an attempt to make daily function
http://www.solarstrike.net/phpBB3/viewt ... =27&t=3890
Post Reply