Recall (script)

From Elanthipedia
Jump to navigation Jump to search
Recall (script)
Category utility,Moon Mage
Front-end StormFront
Author FLINT-TIPPED


I found that when I wanted to fill a specific pool, sometimes I'd have trouble remembering which constellations yielded to which prediction pool.

This script echoes all the constellations related to each skillset. The echo list is ordered from highest to lowest yield per observation. This information can also be found on the Star Chart.

setvariable %1

# script syntax: .recall skillset
#
# Where skillset= 
# magic, lore, survival, offense or defense
# or any abbreviated form of the above
# 
# Echoes the constellations for each skillset.
# Ordered from highest to lowest yield.
# This script does not take into account 
# availability due to time of day, season or circle.
# It is solely a memory aid.
# This information can also be found on elanthipedia
# at:
# https://elanthipedia.play.net/mediawiki/index.php/Star_Chart

goto %1

magic:
magi:
mag:
ma:
m:
echo **Magic**
echo
echo Ismenia, Durgaulda, Nightingale, Owl, Adder, Toad, Wren, Dawgolesh, Shrew, Eye, Donkey, Dove, Coyote, Phoenix, Amlothi, Cow, Jackal, Shrike, Wolf, Ox, Cobra, Yavash
exit

lore:
lor:
lo:
l:
echo **Lore**
echo
echo Verena, Amlothi, Forge, Hare, Weasel, King Snake, Shardstar, Phoenix, Brigantine, Scales, Heron, Cobra, Welkin, Xibar, Albatross, Raven, Dolphin, Wren, Eye, Donkey, Ismenia
exit  

survival:
surviva:
surviv:
survi:
surv:
sur:
su:
s:
echo **Survival**
echo
echo Morleena, Yoakena, Heron, Shrike, Archer, Ram, Vulture, Cow, Er'qutra, Brigantine, Shark, Eye, Wolverine, Panther, Boar, Unicorn, Heart, Lion, Sun, Szeldia, Triquetra, Ox, Goshawk, Raccoon, Dolphin    
exit

offense:
offens:
offen:
offe:
off:
of:
o:
echo **Offense**
echo
echo Szeldia, Er'qutra, Estrilda, Archer, Viper, Centaur, Spider, Scorpion, Adder, Forge, Shark, Eye, Triquetra, Mongoose, Coyote, Shrew, Merewalda, Owl, Cat, Weasel, Panther, Scales, Boar, Wolverine
exit

defense:
defens:
defen:
defe:
def:
de:
d:
echo **Defense**
echo
echo Merewalda, Dawgolesh, Penhetia, Giant, Vulture, Jackal, Eye, Centaur, Scorpion, Albatross, Welkin, Shardstar, Dove, Katamba, Morleena, Magpie, Goshawk, Raccoon, Lion, Mongoose, Forge, Nightingale, Hare, King Snake    
exit