Here's a handy way to get all the benefits of stat food without ever worrying about consuming it.
You only need mq2react for this.
Put 1 stat food and 1 stat drink in your top-most left-most slot so it takes effect.
Then load up on a few thousand bread and water (stacks by the 1000, which is nice).
The react code below will tell your toon to eat bread and drink water on a regular basis so you are never hungry or thirsty.
This way you can keep just 1 stat food/drink in your inventory without actually consuming it.
Edit: Updated code will spam eat and drink bread and water when you're hungry or thirsty, and will stop when you're full of both. Works better and is less conspicuous:
Cheers! Enjoy your bread and water
You only need mq2react for this.
Put 1 stat food and 1 stat drink in your top-most left-most slot so it takes effect.
Then load up on a few thousand bread and water (stacks by the 1000, which is nice).
The react code below will tell your toon to eat bread and drink water on a regular basis so you are never hungry or thirsty.
This way you can keep just 1 stat food/drink in your inventory without actually consuming it.
Edit: Updated code will spam eat and drink bread and water when you're hungry or thirsty, and will stop when you're full of both. Works better and is less conspicuous:
YAML:
ToonName:
Eat: enabled
EatStart: enabled
EatStop: enabled
Reacts:
Eat:
action: /multiline ; /useitem Water Flask; /useitem Loaf of Bread
condition: "!${Me.Casting.ID} && !${Me.Dead} && ${Me.State.NotEqual[FEIGN]}"
EatStart:
action: >-
/multiline ; /react enable Eat; /react disable EatStart; /react enable
EatStop
condition: "${Me.Hunger} < 3000 || ${Me.Thirst} < 3000"
EatStop:
action: >-
/multiline ; /react disable Eat; /react disable EatStop; /react enable
EatStart
condition: "${Me.Hunger} > 6000 && ${Me.Thirst} > 6000"
Cheers! Enjoy your bread and water
Last edited: