Category talk:Private ships

From Elanthipedia
Revision as of 00:15, 11 May 2016 by RY4NPW (talk | contribs) (→‎Travel Times: small script change to account for different destinations.)
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search

Kraelyst's site is down. I know he and his wife have not played in some time. I moved the FAQ here, because its large and I'm not sure the best way to break it up presently. WWW.ARCHIVE.ORG currently has most (if not all) of the page information saved. I highly suggest that the boat scripts (as well as the travel scripts) be pulled from the pages and archived here. The table for the ship sailing schedules is something that may need to be added as well. --Ysselt 19:45, 11 May 2009 (UTC)

I have removed the FAQ and placed it on the page for Private Ships. --hexedbythenet 15:17, 23 January 2014 (UTC)


Enclave Script

Here is a copy of Kraeylst's script to reach the Enclave (Hara'Jaal). Replace "yed" with the name of your ship captain - --Kythryn 12:00, 1 August 2012 (UTC)

#Enclave 11/03/05
 ; -- This script was created by Kraelyst the Hand
 ; -- Most current version of this script available at
 ; -- http://www.lurksponge.com/travel

ECHO
ECHO ===============================
ECHO *** takes you to the Enclave on Hara'Jaal
ECHO ===============================
ECHO

enclave:
save enclave
match har-enc moored to a sandy beach
match finish moored to the Sumilo dock
match finish moored to the Raenaden dock
match toenclave You glance
match pause ...wait
match pause type ahead
put look
put glance
matchwait

toenclave:
put command yed to sail for Hara'jaal
match enclave Sailors quickly tie
match enclave barks the order to tie off
matchwait

har-enc:
put command yed to launch
pause
ECHO
ECHO *** Estimated travel time by brig: 4 roisaen
ECHO
waitfor calls out, "Cast off!"
put command yed to sail towards Tyvalger Bay
put command yed to trim
save 2-har-enc
goto trim
2-har-enc:
pause 8
put command yed to ease full
put command yed to trim
put command yed to trim
pause
put command yed to trim
put command yed to trim
3-har-enc:
pause 2
match 4-har-enc afloat in Tyvalger Bay
match 3-har-enc afloat in The Reshal Sea
match 3-har-enc ...wait
put look
matchwait
4-har-enc:
pause 2
match finish moored to the Sumilo dock
match finish moored to the Raenaden dock
match 4b-har-enc Tyvalger Bay (
match 4c-har-enc the open ocean (
match 4-har-enc ...wait
put look
matchwait
4b-har-enc:
pause
put command yed to sail toward Tyvalger Bay
put command yed to trim
put command yed to trim
goto 4-har-enc
4c-har-enc:
pause
put command yed to sail toward Raenaden dock
put command yed to trim
goto 4-har-enc

=========================
trim:
pause
match trim sails to trim
match trim raising sail
match trim setting all yards
match pause working the ship to sail trim
match pause maximum capability
match trim ...wait
put command yed to trim
put command yed to trim
matchwait

ease:
pause
pause
put command yed to ease full
put command yed to trim
goto pause

pause:
pause
goto %s

finish:
pause
put set room
put set desc
pause
ECHO
ECHO *** You have arrived ***
ECHO

M'Riss Script

Here is a copy of Kraelyst's script to sail to M'Riss. Replace "yed" with your ship captain's name --Kythryn 12:02, 1 August 2012 (UTC)


#M'riss 11/03/05
 ; -- This script was created by Kraelyst the Hand
 ; -- Most current version of this script available at
 ; -- http://www.lurksponge.com/travel

ECHO
ECHO ===============================
ECHO
ECHO *** CAUTION: If you leave the docks at Fever Point on M'riss you can not get back onto the docks unless you are a citizen or are taken to the docks by a citizen!
ECHO
ECHO ===============================
ECHO


mriss:
save mriss
match mer-mri moored to the Mer'Kresh docks
match finish moored to Fever Point pier
match tomriss You glance
match pause ...wait
match pause type ahead
put look
put glance
matchwait

tomriss:
put command yed to sail for Mer'Kresh
match mriss Sailors quickly tie
match mriss barks the order to tie off
matchwait

mer-mri:
put command yed to launch
pause
ECHO
ECHO *** Estimated travel time by brig:  4 roisaen
ECHO
waitfor calls out, "Cast off!"
put command yed to sail towards ocean
put command yed to trim
put command yed to trim
2-mer-mri:
pause
match 3-mer-mri Fever Point pier
match 2-mer-mri afloat in Torbis Bay
match 2-mer-mri ...wait
put look
matchwait
3-mer-mri:
put command yed to sail toward pier
put command yed to trim
put command yed to trim
waitfor Sailors quickly tie
goto finish

=========================
trim:
pause
match trim sails to trim
match trim raising sail
match trim setting all yards
match pause working the ship to sail trim
match pause maximum capability
match trim ...wait
put command yed to trim
put command yed to trim
matchwait

ease:
pause
pause
put command yed to ease full
put command yed to trim
goto pause

pause:
pause
goto %s

finish:
pause
put set room
put set desc
pause
ECHO
ECHO *** You have arrived ***
ECHO

Travel Times

I'm using a very simple script to gather travel times. Use .sail <destination> and subtract 2 minutes from the script execution time. You just need to set your pilot's name. - padhg (talk) 15:19, 10 May 2016 (CDT)

setvariable pilot <Pilot name>

if_1 goto sail

error:
echo Please specify a valid destination. Try COMMAND %pilot% TO for options.
exit

sail:
match error Available locations
match dock I will pilot
put command %pilot% to sail for %1
matchwait

dock:
waitforre (Sailors quickly tie|order to tie off)
exit