Created: about 22 hours ago on 03/13/2025, 08:21:14 PMUpdated: about 8 hours ago on 03/14/2025, 10:32:32 AM
Note from JaseOwns:
Scripts will be leveraged on both UORazorscipts.com and this site. At the time of the launch (Feb 1st 2025), this isn't working right - but it will! Thanks for checking it out
FileType: No file type provided
Size: 2956
Category: Cooking
Skills: Cooking
Hotkey: No hotkey provided
Tags: No tags provided
Description: Maybe is good, i think. :D I hope you don't stone me, it's the first major script I've written.
#need cook table and 1-2 pitcher empty
#cooks table with withdrawal amount 5pce
#lot of charges water and flour in cook table
#
while skill 'cooking' <100
clearsysmsg
if not findtype "cooks table" true
overhead 'No Cook table'
stop
endif
if not findtype "frypan" backpack
overhead 'No Frypan'
stop
endif
if not findtype "pitcher of water" backpack and not findtype "glass pitcher" backpack
overhead "No Pitcher"
stop
endif
if not findtype "open sack of flour" backpack
if findtype "cooks table" as table
dclick table
waitforgump 111922706 //cooks table 29357
gumpresponse 29 //sack of flour
wait 400
gumpclose 111922706
if insysmsg "you don't have any of that"
overhead 'something is missing from the cook table'
stop
endif
endif
while findtype "sack of flour" backpack as flour
dclick flour
wait 400
endwhile
endif
if not findtype "pitcher of water" backpack
if not findtype "glass pitcher" backpack
overhead 'Have not pitcher'
stop
endif
if findtype "cooks table" as table
dclick table
waitforgump 111922706
gumpresponse 155 //next page
waitforgump 111922706
gumpresponse 155 //next page
waitforgump 111922706
gumpresponse 75 //water
wait 300
gumpclose 111922706
wait 200
if insysmsg "you don't have any of that"
overhead 'something is missing from the cook table'
stop
endif
endif
endif
while findtype "pitcher of water" backpack and findtype "open sack of flour" backpack and findtype "frypan" backpack as frypan
dclick frypan
wait 300
waitforgump 949095101 //cooking menu ingredients
gumpresponse 9 //dough
wait 3000
gumpclose 949095101
endwhile
if findtype "dough" backpack as dough and findtype "cooks table" as table
dclick table
waitforgump 111922706
gumpresponse 152 //add
waitfortarget
target dough
wait 300
clearall
gumpclose 111922706
endif
endwhile