uosteam stay full macro

If you make a Client-side script you can publish it here for other players to use
Post Reply
wolfbain5
Apprentice Scribe
Posts: 10
Joined: Mon Sep 10, 2018 9:21 pm

uosteam stay full macro

Post 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.
User avatar
Animol
Elder Scribe
Posts: 166
Joined: Tue Apr 03, 2018 8:38 pm

Re: uosteam stay full macro

Post 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.
wolfbain5
Apprentice Scribe
Posts: 10
Joined: Mon Sep 10, 2018 9:21 pm

Re: uosteam stay full macro

Post 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
Eless
Master Scribe
Posts: 65
Joined: Thu Feb 22, 2018 12:54 pm

Re: uosteam stay full macro

Post 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
Post Reply