Back to "starting your ship" tags
Get your Ship together (Page Up) by Jaseowns
Description from the author:
# Get your Ship together by Jaseowns
# UO Outlands
@clearignore
say [Embark
wait 200
say [ReadyCrew
wait 200
say [Reload
wait 200
say [ShipHotbars
wait 200
if findtype "spyglass" backpack
say [Spyglass
else
overhead "we do not have a spyglass!" 34
overhead "we do not have a spyglass!" 34
endif
wait 200
@setvar! jaseowns_OurHatch 0
@setvar! jaseowns_OurTillerman 0
for 15
if findtype "hatch" ground -1 -1 index as item
@setvar! jaseowns_OurHatch item
break
endif
endfor
if jaseowns_OurHatch != 0
overhead "WE FOUND" 89 jaseowns_OurHatch
overhead "OUR HATCH" 63 jaseowns_OurHatch
overhead "HERE" 69 jaseowns_OurHatch
endif
for 15
if findtype "tiller man|tillerman" ground -1 -1 index as item
@setvar! jaseowns_OurTillerman item
break
endif
endfor
if jaseowns_OurTillerman != 0
overhead "WE FOUND" 89 jaseowns_OurTillerman
overhead "OUR TILLERMAN" 63 jaseowns_OurTillerman
overhead "HERE" 69 jaseowns_OurTillerman
endif
removelist jaseowns_CrewList
createlist jaseowns_CrewList
for 10
hotkey "Next Friendly Monster Target"
@setvar! crewCheck lasttarget
if find crewCheck
if inlist jaseowns_CrewList crewCheck
break
endif
pushlist jaseowns_CrewList crewCheck
endif
endfor
foreach jCrew in jaseowns_CrewList
overhead "Dude crew!" 44 jCrew
endfor
@setvar! jaseowns_OwnHullID 0
@setvar! jaseowns_OwnSailsID 0
@setvar! jaseowns_OwnGunsID 0
if findtype "status bar" ground 150 -1 20 as item
overhead "Hull" 150 item
@setvar! jaseowns_OwnHullID item
@ignore item
endif
if findtype "status bar" ground 95 -1 20 as item
overhead "Sails" 95 item
@setvar! jaseowns_OwnSailsID item
@ignore item
endif
if findtype "status bar" ground 2494 -1 20 as item
overhead "Guns" 2494 item
@setvar! jaseowns_OwnGunsID item
@ignore item
endif
if listexists jaseowns_PreviousScript
foreach myScript in jaseowns_PreviousScript
hotkey myScript
endfor
endifThis script will start your ship - you put your ship in the water, and then run this script. You and your followers will board and it will call out your crew and set variables for boating.








