Stow Scrolls? 07/30/2014 03:01 PM CDT
So I know we can STOW BOX and STOW GEM which covers all boxes and gems, but can we STOW SCROLL to hand scroll drops, or do we need to stow each individually?

For that matter, what are all our generic STOWs?

~ Mhikal
Reply
Re: Stow Scrolls? 07/30/2014 03:10 PM CDT
>>For that matter, what are all our generic STOWs?

From:
https://elanthipedia.play.net/mediawiki/index.php/Store_command

Valid options are:
AMMO - Ammunition.
ARMOR - All kinds of armor, excluding shields
GEMS - Gems and bars.
HERBS - Raw herbs (not potions or tinctures)
INSTRUMENT - Instruments
LOCKPICK - Lockpicks
MELEE - Melee weapons.
RANGED - Ranged weapons.
SHIELD - Shields
SKINS - Anything that you skin off of a critter
THROWN - Thrown weapons.
DEFAULT - All other items.
Example: STORE GEMS IN BACKPACK will put all gems in your backpack.
Example: STORE CUSTOM TINCT IN APRON will store any items that have a TAP that contains "TINCT" in your apron.
Reply
Re: Stow Scrolls? 07/30/2014 03:13 PM CDT
That wasn't the question.

As far as I'm aware, STOW GEM and STOW BOX are the only options.



Elanthipedia - https://elanthipedia.play.net/mediawiki/index.php/Main_Page
Reply
Re: Stow Scrolls? 07/30/2014 03:21 PM CDT
Continuing with the train of thought, can we then set, in escape, a variable similar to a regular expression? That is, a variable that covers a range of options.

For example,

setvariable scroll (scroll|tablet|papyrus)
Reply
Re: Stow Scrolls? 07/30/2014 03:22 PM CDT
>>That wasn't the question.

My mistake, I misunderstood what the OP was getting at.

>>As far as I'm aware, STOW GEM and STOW BOX are the only options.

Do we know of anywhere were these are documented? The ingame help matches this: https://elanthipedia.play.net/mediawiki/index.php/Stow_command and neither mention the gem/box options.
Reply
Re: Stow Scrolls? 07/30/2014 03:24 PM CDT
Also stow ore.

Regarding RE, obligitoary: Genie can do that.


TG, TG, GL, et al.

"Disagreement with the fundamental plan at this point is akin to supporting Richard III vs the Tudors."
-Raesh
Reply
Re: Stow Scrolls? 07/30/2014 03:28 PM CDT
<<setvariable scroll (scroll|tablet|papyrus)

I do something like this using Genie, although it's not so specific.

#var {MM_COMBAT_LOOT_ARRAY} {(copper|silver|animite|audrualm|damite|darkstone|electrum|glaes|haralun|icesteel|kadepa|kertig|lumium|muracite|niello|niniam|orichalcum|platinum|silversteel|tyrium|vardite|gold)( |)nugget|chestnut \w+| roll|scroll|ostracon|hhr'lav'geluhh bark|leaf|tablet|map|parchment|papyrus|vellum|dira|card|fragment|package|coin|draught|crate|chest|box|trunk|skippet|strongbox|case|caddy|coffer|casket|bola|hammer|dagger|blade|lid|gladius}

Whenever I want to check for loot, I just use soemthing like this:

Check_Loot:
if matchre ("$roomobjs","($MM_COMBAT_LOOT_ARRAY)" then
{
put stow $1
pause .1
goto Check_Loot
}
return

You could easily make that more specific to types of loot like scrolls, boxes, weapons, crafting, etc. and even macro the command in if you don't want to use it in a script.



Elanthipedia - https://elanthipedia.play.net/mediawiki/index.php/Main_Page
Reply
Re: Stow Scrolls? 07/30/2014 03:30 PM CDT
I don't think you can do regex in eScape/SF though...



Elanthipedia - https://elanthipedia.play.net/mediawiki/index.php/Main_Page
Reply
Re: Stow Scrolls? 07/30/2014 03:46 PM CDT
Thanks.
Reply
Re: Stow Scrolls? 07/30/2014 03:51 PM CDT
Does STOWing ORE cover nuggets and bars as well?
Reply
Re: Stow Scrolls? 07/30/2014 04:01 PM CDT
>Do we know of anywhere were these are documented? The ingame help matches this: https://elanthipedia.play.net/mediawiki/index.php/Stow_command and neither mention the gem/box options.

I just updated the page. As far as I can recall, it's not documented anywhere else.



Weapons for Sale:
https://elanthipedia.play.net/mediawiki/index.php/User:CARAAMON#Wares
Hunta Talna Kortok, built by Gor'Togs, for Gor'Togs
http://www.angelfire.com/rpg2/caraamon/home.html
Reply
Re: Stow Scrolls? 07/30/2014 10:37 PM CDT
Also, stow rare for when I'm afk and something like a treasure map or kertig tear drops.

Seriously though, I'd be personally interested in a stow all or a special loot option that would let me pick up everything on the mobs I kill (equipment excluded). I like to sort through my haul at the end of a long hunting session. Plus, it would make for some nice macros for when I'm typing like a poor SF user.
Reply
Re: Stow Scrolls? 07/31/2014 04:11 AM CDT
Can use MATCH for picking something up...

Here's the 'collect' part of my hunting script that will grab boxes, gems, ore, and other things that pop up from time to time.

# * COLLECT *

c:
cstart:
pause
put stow left
put open my %container6
cfind:
match arr %arrow
match amm %rock
match thr %thrown1
match th2 %thrown2
matchre coi /coin,|coins,|coin and|coins and/
matchre scp /scrip,|scrip and/
matchre map /worn and tattered map,|worn and tattered map and/
matchre scr /scroll,|scroll and/
matchre par /parchment,|parchment and/
matchre pap /papyrus,|papyrus and/
matchre vel /vellum,|vellum and/
matchre tab /tablet,|tablet and/
matchre rol /papyrus roll,|papyrus roll and/
matchre brk /hhr'lav'geluhh bark,|hhr'lav'geluhh bark and/
matchre lea /seishaka leaf,|seishaka leaf and/
matchre ost /ostracon,|ostracon and/
matchre aga /agate,|agate and/
matchre ale /alexandrite,|alexandrite and/
matchre ambr /piece of amber,|piece of amber and/
matchre ambg /lump of ambergris,|lump of ambergris and/
matchre ame /amethyst,|amethyst and/
matchre and /andalusite,|andalusite and/
matchre aqu /aquamarine,|aquamarine and/
matchre bar /bar,|bar and/
matchre chrb /chrysoberyl,|chrysoberyl and/
matchre ber /beryl,|beryl and/
matchre blog /bloodgem,|bloodgem and/
matchre blos /bloodstone,|bloodstone and/
matchre car /carnelian,|carnelian and/
matchre cha /chalcedony,|chalcedony and/
matchre chrp /chrysoprase,|chrysoprase and/
matchre cit /citrine,|citrine and/
matchre cor /chunk of coral,|chunk of coral and/
matchre cry /crystal,|crystal and/
matchre dia /diamond,|diamond and/
matchre dio /diopside,|diopside and/
matchre egg /an egg,|an egg and/
matchre eme /emerald,|emerald and/
matchre gar /garnet,|garnet and/
matchre gem1 /gem,|gem and/
matchre gol /goldstone,|goldstone and/
matchre gra /granite,|granite and/
matchre hea /heartstone,|heartstone and/
matchre he2 /heart,|heart and/
matchre hem /hematite,|hematite and/
matchre iol /iolite,|iolite and/
matchre ivo /piece of ivory,|piece of ivory and/
matchre jad /jade,|jade and/
matchre kun /kunzite,|kunzite and/
matchre laz /lapis lazuli,|lapis lazuli and/
matchre mal /malachite,|malachite and/
matchre min /minerals,|minerals and/
matchre moo /moonstone,|moonstone and/
matchre mor /morganite,|morganite and/
matchre nug /nugget,|nugget and/
matchre ony /onyx,|onyx and/
matchre opa /opal,|opal and/
matchre pac /package,|package and/
matchre pea /pearl,|pearl and/
matchre peb /pebble,|pebble and/
matchre per /peridot,|peridot and/
matchre qua /quartz,|quartz and/
matchre rub /ruby,|ruby and/
matchre sap /sapphire,|sapphire and/
matchre sil /oravir silver,|oravir silver and/oravir silvers,|oravir silvers and/
matchre spi /spinel,|spinel and/
matchre sta /star-stone,|star-stone and/
matchre sun /sunstone,|sunstone and/
matchre sto /stones,|stones and/
matchre sto /nemmiro stone,|nemmiro stone and/
matchre tan /tanzanite,|tanzanite and/
matchre top /topaz,|topaz and/
matchre tou /tourmaline,|tourmaline and/
matchre tsa /tsavorite,|tsavorite and/
matchre tur /turquoise,|turquoise and/
matchre zir /zircon,|zircon and/
matchre str /strongbox,|strongbox and/
matchre cra /crate,|crate and/
matchre cof /coffer,|coffer and/
matchre tru /trunk,|trunk and/
matchre cad /caddy,|caddy and/
matchre ski /skippet,|skippet and/
matchre che /chest,|chest and/
matchre box1 /box,|box and/
matchre cas /casket,|casket and/
matchre dir /dira,|dira and/
matchre s /which appears dead|that appears dead/
matchre cend /Obvious paths|Obvious exits/
put look
matchwait

a:
arr:
put stow %arrow
goto cfind
amm:
put stow %rock
goto cfind
coi:
put get coin
goto cfind
aga:
put stow agate
goto cfind
ale:
put stow alexandrite
goto cfind
ambr:
put stow amber
goto cfind
ambg:
put stow ambergris
goto cfind
ame:
put stow amethyst
goto cfind
and:
put stow andalusite
goto cfind
aqu:
put stow aquamarine
goto cfind
bar:
put stow bar
goto cfind
ber:
put stow beryl
goto cfind
blog:
put stow bloodgem
goto cfind
blos:
put stow bloodstone
goto cfind
car:
put stow carnelian
goto cfind
cha:
put stow chalcedony
goto cfind
chrb:
put stow chrysoberyl
goto cfind
chrp:
put stow chrysoprase
goto cfind
cit:
put stow citrine
goto cfind
cor:
put stow coral
goto cfind
cry:
put stow crystal
goto cfind
dia:
put stow diamond
goto cfind
dio:
put stow diopside
goto cfind
egg:
put stow egg
goto cfind
eme:
put stow emerald
goto cfind
gar:
put stow garnet
goto cfind
gem1:
put stow gem
goto cfind
gol:
put stow goldstone
goto cfind
gra:
put stow granite
goto cfind
hea:
put stow heartstone
goto cfind
he2:
put stow heart
goto cfind
hem:
put stow hematite
goto cfind
iol:
put stow iolite
goto cfind
ivo:
put stow ivory
goto cfind
jad:
put stow jade
goto cfind
kun:
put stow kunzite
goto cfind
laz:
put stow lazuli
goto cfind
mal:
put stow malachite
goto cfind
min:
put stow minerals
goto cfind
moo:
put stow moonstone
goto cfind
mor:
put stow morganite
goto cfind
nug:
put stow nugget
goto cfind
ony:
put stow onyx
goto cfind
opa:
put stow opal
goto cfind
pea:
put stow pearl
goto cfind
peb:
put stow pebble
goto cfind
per:
put stow peridot
goto cfind
qua:
put stow quartz
goto cfind
rub:
put stow ruby
goto cfind
sap:
put stow sapphire
goto cfind
scp:
put get scrip
goto cfind
sil:
put stow silver
goto cfind
spi:
put stow spinel
goto cfind
sta:
put stow star-stone
goto cfind
sto:
put stow stone
goto cfind
sun:
put stow sunstone
goto cfind
tan:
put stow tanzanite
goto cfind
thr:
put stow %thrown1
goto cfind
th2:
put stow %thrown2
goto cfind
top:
put stow topaz
goto cfind
tou:
put stow tourmaline
goto cfind
tsa:
put stow tsavorite
goto cfind
tur:
put stow turquoise
goto cfind
zir:
put stow zircon
goto cfind
scr:
put stow scroll
goto cfind
pac:
put stow package
goto cfind
par:
put stow parchment
goto cfind
pap:
put stow papyrus
goto cfind
vel:
put stow vellum
goto cfind
tab:
put stow tablet
goto cfind
rol:
put stow roll
goto cfind
brk:
put stow hhr'lav'geluhh bark
goto cfind
lea:
put stow seishaka leaf
goto cfind
ost:
put stow ostracon
goto cfind
str:
put stow strongbox
goto cfind
cra:
put stow crate
goto cfind
cof:
put stow coffer
goto cfind
tru:
put stow trunk
goto cfind
cad:
put stow caddy
goto cfind
ski:
put stow skippet
goto cfind
che:
put stow chest
goto cfind
box1:
put stow box
goto cfind
cas:
put stow casket
goto cfind
dir:
put stow dira
goto cfind
map:
put stow map
goto cfind
run:
put stow runestone
goto cfind
cend:
put close my %container6
put encumbrance
pause
put skill %skill
matchre next /mind lock|dazed|bewilder/
match wield EXP HELP
matchwait


The reason for the ',' and 'and' separation, is so you don't try to pick up parts of a room description.

Az


Azkaban UiNeill, Bard of Therengia, an Elf
https://elanthipedia.play.net/mediawiki/index.php/Azkaban

Singing for tips since 312.
Reply
Re: Stow Scrolls? 07/31/2014 09:30 AM CDT
Is that a stormfront script?
Reply
Re: Stow Scrolls? 08/01/2014 07:24 AM CDT
Yep. I know it's not Genie, but I find the SF scripting engine does pretty much everything I need.

Az


Azkaban UiNeill, Bard of Therengia, an Elf
https://elanthipedia.play.net/mediawiki/index.php/Azkaban

Singing for tips since 312.
Reply
Re: Stow Scrolls? 08/01/2014 09:37 AM CDT
>I find the SF scripting engine does pretty much everything I need.

^



Weapons for Sale:
https://elanthipedia.play.net/mediawiki/index.php/User:CARAAMON#Wares
Hunta Talna Kortok, built by Gor'Togs, for Gor'Togs
http://www.angelfire.com/rpg2/caraamon/home.html
Reply
Re: Stow Scrolls? 08/04/2014 09:37 PM CDT
>Yep. I know it's not Genie, but I find the SF scripting engine does pretty much everything I need.

That explains the unfamiliar syntax. Neat.
Reply
Re: Stow Scrolls? 08/06/2014 09:27 PM CDT
there's a store custom option


store custom scroll fanny pack


anything with scroll in the tap will go into your cute little fanny pack
Reply
Re: Stow Scrolls? 08/06/2014 11:43 PM CDT
That would work if scrolls only dropped in the form of scrolls, but there's also faded vellum, ostracton, papyrus rolls, seishaka leaf, tablets and bark. I'm pretty sure you can only have one custom option so you'd miss out on the other scrolls that dropped unless you use a match table.

A default "all scrolls" like store gem or store box would be nice to have but there's not many types that you'd have to worry about if you used a match table.
Reply
Re: Stow Scrolls? 08/07/2014 10:05 AM CDT
>anything with scroll in the tap will go into your cute little fanny pack

Fanny pack is so 90s. I prefer to call mine a hip pouch.
Reply
Re: Stow Scrolls? 08/07/2014 11:33 AM CDT
<<Fanny pack is so 90s. I prefer to call mine a hip pouch.

Hey, I still get a fanny pack every year in my box of Christmas gifts from my Nan in the Maritimes. It's always tucked in beside the random kitchen utensil and kitschy souvenir from her local tourist trap.



Elanthipedia - https://elanthipedia.play.net/mediawiki/index.php/Main_Page
Reply
Re: Stow Scrolls? 03/02/2015 07:15 AM CST


Just saw this, and I know this is really old, but wanted to point out:

>Here's the 'collect' part of my hunting script that will grab boxes, gems, ore, and other things that pop up from time to time.

STOW GEM or GET COIN or STOW BOX will grab those, and you can include it in a loot routine with a simple match to 'you pick up' or 'don't know what you're referring to'.
Reply