UOS a simple food macro.
Posted: Sun Jul 03, 2022 8:05 pm
I don't know if hunger status has any impact on the shard, anyway this is a small macro for UOSteam that make your char eat food created with magery spell.
Code: Select all
//create 6 foods with magery "create food" spell. You can adjust the pause and the number of foods created.
for 6
msg '[cs createfood'
pause 1000
endfor
//create the list ethereal food. This macro is new, maybe some of the existing ethereal foods is not listed here, you can add it lately.
if not listexists "cibo_etereo"
createlist "cibo_etereo"
endif
//cut of ribs
pushlist cibo_etereo 0x9f2
//muffins
pushlist cibo_etereo 0x9eb
//cooked bird
pushlist cibo_etereo 0x9b7
//peach
pushlist cibo_etereo 0x9d2
//wedge of cheese
pushlist cibo_etereo 0x97d
//fish steak
pushlist cibo_etereo 0x97b
//pizza
pushlist cibo_etereo 0x1040
//sausage
pushlist cibo_etereo 0x9c0
//ham
pushlist cibo_etereo 0x9c9
//pie
pushlist cibo_etereo 0x1041
//grape bunch
pushlist cibo_etereo 0x9d1
//apple
pushlist cibo_etereo 0x9d0
//Eat all kind of foods in the list that are into your MAIN backpack (level 0), even food that was not created by "create food" spell, so take care. If you need to carry some food that share the same graphics with one of the foods in the list put it into a secondary bag.
for 0 to 'cibo_etereo'
while @findtype 'cibo_etereo[]' any backpack any 0
useobject found
pause 600
endwhile
endfor
//this "removelist" is just to keep things clean. For example, you may want to remove an object from the list, thanks to this last command the list is updated automatically at every execution.
removelist "cibo_etereo"