General Is there any way to click food?
Reply
Is there any way to click food?
Is there a way to click food


Sub food
/if (${Me.Casting.ID}) /return
/if (${Me.Moving}) /return
/if (Current Int: ${Me.Hunger})< 2000 /got :food
/return
:food
/call cast "Misty Thicket Picnic" item 0s
/delay 1
/return


or I am sure that when i enter

/echo Current Int: ${Me.Hunger} on fed toons max is 6000 while none fed 0. Clicking a snack returns 1320.
Tue Dec 25, 2012 11:18 am
Using a snack to test:

|^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^|
| FOOD CLICK TEST |
|^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^^|
Sub food
/if (${Me.Casting.ID}) /return
/if (${Me.Moving}) /return
/if (2000 > ${Me.Hunger}) /goto :food
/return
:food
/call cast "Chocolate Cookies" item 0s
/delay 1
/return
Tue Dec 25, 2012 11:39 am
The food item has to be in one of your 8 main inventory slots. Then you right click it using itemnotify.

You might try Feedme.inc v2.3. I haven't run it, but it looks like it should work OK. The basic algorithm works if you don't want to bother with the INI stuff.
Tue Dec 25, 2012 10:17 pm
Senior Project Member
While farming Augs on my EQ vacation I researched it, and here it is:

Macro
More +

Sub food
/if (${Me.Casting.ID}) /return
/if (${Me.Moving}) /return
/if (3500 > ${Me.Hunger}) /goto :food
/return
:food
/call cast "FoodName" item
/delay 5
/itemnotify ${FindItem["FoodName"].InvSlot[30]} rightmouseup
/delay 2

/return
Wed Dec 26, 2012 12:01 am
using /call cast to on a food item is about as brute force as you can get.

look at MQ2Exchange and simply move the item you need moved.
_________________
Sorvani
Wed Dec 26, 2012 8:34 am
Senior Project Member
Sorvani wrote: using /call cast to on a food item is about as brute force as you can get.
Thank you for sharing your experience. Macros are a bit intimidating, but here is a shot at it:

Macro
More +

Sub food
/if (${Me.Casting.ID}) /return
/if (${Me.Moving}) /return
/if (3500 > ${Me.Hunger}) /goto :food
/return
:food
/exchange "FoodName" ${InvSlot[Pack8]}
/delay 2
/itemnotify ${FindItem["FoodName"].InvSlot[30]} rightmouseup
/delay 2
/exchange "ItemName" ${InvSlot[Pack8]}
/return
Wed Dec 26, 2012 4:29 pm
General Is there any way to click food?
Reply