[EasyUO] Stay Stuffed Eating Script.
Posted: Tue May 29, 2018 2:09 am
Hello. This is a script that will always make sure you are stuffed, should never interfere with another script and requires no additional setup.
Many thanks to Shindaril for their work shown below:
http://uoex.net/forum/viewtopic.php?f=25&t=12023
Essentially once u stop being stuffed this will eat. It will also always make sure the buffs bar is open. If it close or is closed. It will open it back up. And put it in a specific location on the screen (x 990, y 350 is where I keep mine but if you want to move it you can. That's just where I default set it to open with #nextCPosX and #nextCPosY). It shouldn't mess with other scripts as I have set it to use the Exevent PopUp which is like clicking it and selecting eat, instead of trying to double click it. So enjoy it. Any problems let me know.
BE KNOWN YOU MUST HAVE THE CONTAINER THE FOOD IS IN OPEN OR IT WILL NOT EAT. (That means if your food is in a bag or backpack such as a bag of holding )
Many thanks to Shindaril for their work shown below:
http://uoex.net/forum/viewtopic.php?f=25&t=12023
Essentially once u stop being stuffed this will eat. It will also always make sure the buffs bar is open. If it close or is closed. It will open it back up. And put it in a specific location on the screen (x 990, y 350 is where I keep mine but if you want to move it you can. That's just where I default set it to open with #nextCPosX and #nextCPosY). It shouldn't mess with other scripts as I have set it to use the Exevent PopUp which is like clicking it and selecting eat, instead of trying to double click it. So enjoy it. Any problems let me know.
BE KNOWN YOU MUST HAVE THE CONTAINER THE FOOD IS IN OPEN OR IT WILL NOT EAT. (That means if your food is in a bag or backpack such as a bag of holding )
Code: Select all
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
; Auto Stay Stuffed Script ;
; by Stephen of Excelsior shard ;
; Version 2: Updates from brhanson2 put in. Thanks! ;
; Using information given by Shindaril - link below ;
; http://uoex.net/forum/viewtopic.php?f=25&t=12023 ;
; Very easy to use, target food to eat. and enjoy ;
;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;;
set %BuffType CKF ; [buffs bar ID thanks goes to Shindaril
set %HungerType MGG ; Hunger Item ID thanks goes to Shindaril
set %FoodID 0 ; The food to use as source sets with target automatically no edits needed.
DISPLAY OK Target your food
event SysMessage Target your stack of food!
set #targCurs 1
targLoop:
if #targCurs = 1
goto targLoop
set %FoodID #lTargetID
wait 7
goto MainLooop
MainLoop:
finditem %BuffType C_ , #CharID
if #FindKind <> -1
{
set %Buffs #FindID
finditem %HungerType C_ , %Buffs
if #FindKind <> -1
{
event Property #FINDID
if stuffed notin #PROPERTY
{
exevent Popup %FoodID 1
wait 7
}
}
else
{
set #nextCPosX 990
set #nextCPosY 350
event macro 1 0 [buffs
}
}
wait 600
goto MainLoop