Page 1 of 1

uosteam stay full macro

Posted: Fri Oct 05, 2018 1:46 am
by wolfbain5
need help creating a macro for this
basically I want something similar to this

target the food you want
if hunger is < 75%
then eat the food
end if

food buff icon
0x103c graphic id

0x41e89fa9

is the info I have, but dont know how to go about doing this.

Re: uosteam stay full macro

Posted: Fri Oct 05, 2018 2:43 am
by Animol
Just in case you didn't know this: you don't have to eat anymore. Yes, your character does get hungry but it doesn't affect regens. You can stay at 0%, it doesn't matter. They changed it a while back.

Re: uosteam stay full macro

Posted: Fri Oct 05, 2018 2:56 am
by wolfbain5
true, but is still seems to affect skills. when mining or gathering wood, I notice I get petrified wood easier when full then when starving

Re: uosteam stay full macro

Posted: Fri Oct 05, 2018 3:40 pm
by Eless
You can try this:

Code: Select all

  if not property 'Full' 0x41e89fa9 and not property 'Stuffed' 0x41e89fa9
    // eat ...
  else
    // you're at least 'Quite Full', do whatever...
  endif