Page 1 of 1

galloping gale

Posted: Sat Oct 15, 2016 10:49 am
by Sasuke
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

Re: galloping gale

Posted: Sat Oct 15, 2016 9:50 pm
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

Re: galloping gale

Posted: Sun Oct 16, 2016 12:31 am
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

Re: galloping gale

Posted: Tue Oct 18, 2016 6:37 pm
by Sasuke
nice guys ty:)
if you can copy here command for check complete dailies quests and use dailies ticket will be so happy:)

Re: galloping gale

Posted: Wed Oct 19, 2016 11:18 pm
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