<?xml version="1.0"?>
<feed xmlns="http://www.w3.org/2005/Atom" xml:lang="en">
	<id>https://elanthipedia.play.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=MYERSV</id>
	<title>Elanthipedia - User contributions [en]</title>
	<link rel="self" type="application/atom+xml" href="https://elanthipedia.play.net/api.php?action=feedcontributions&amp;feedformat=atom&amp;user=MYERSV"/>
	<link rel="alternate" type="text/html" href="https://elanthipedia.play.net/Special:Contributions/MYERSV"/>
	<updated>2026-05-01T12:22:56Z</updated>
	<subtitle>User contributions</subtitle>
	<generator>MediaWiki 1.39.12</generator>
	<entry>
		<id>https://elanthipedia.play.net/index.php?title=Necimar%27s_Bead_Scripts&amp;diff=496195</id>
		<title>Necimar&#039;s Bead Scripts</title>
		<link rel="alternate" type="text/html" href="https://elanthipedia.play.net/index.php?title=Necimar%27s_Bead_Scripts&amp;diff=496195"/>
		<updated>2018-11-17T23:36:48Z</updated>

		<summary type="html">&lt;p&gt;MYERSV: /* Script */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Script&lt;br /&gt;
|fe=Stormfront&lt;br /&gt;
|cat=Crafting, Cleric&lt;br /&gt;
|auth=[[Necimar]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
A Collection of three simplistic scripts used by Clerics to find Limbs, Carve them into Blocks, and then shape the blocks into Beads.&lt;br /&gt;
Each script requires that the user have nothing in their hands, except for the final carving script(you may use a primer if needed.)&lt;br /&gt;
These scripts were written quickly upon request, but have been tested out and worked in every case tried.  There may still be a situation&lt;br /&gt;
that needs refining.  That will be up to you to work on.&lt;br /&gt;
&lt;br /&gt;
The scripts are:&lt;br /&gt;
&lt;br /&gt;
  .forlimb&lt;br /&gt;
  .block  (This script requires you to be a Cleric in possession of the Bless spell.)&lt;br /&gt;
  .bead&lt;br /&gt;
&lt;br /&gt;
==Script==&lt;br /&gt;
 1 - .FORLIMB (container to store the limbs)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script can be used to forage a specific common/uncommon/rare limb and store it in a container.&lt;br /&gt;
#Scroll down and UNCOMMENT the lines containing the wood type you want to keep.&lt;br /&gt;
#This script drops unwanted limbs, so the room may become Cluttered and need to be dealt with.&lt;br /&gt;
#It is the first of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match GETLIMB You glance down at your empty hands.&lt;br /&gt;
match NOTEMPTY You glance down to see&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
GETLIMB:&lt;br /&gt;
put forage limb&lt;br /&gt;
match CLUTTERED The room is too cluttered&lt;br /&gt;
#match STORE You manage to find a ash limb.&lt;br /&gt;
#match STORE You manage to find a aspen limb.&lt;br /&gt;
#match STORE You manage to find a balsa limb.&lt;br /&gt;
#match STORE You manage to find a bamboo limb.&lt;br /&gt;
#match STORE You manage to find a birch limb.&lt;br /&gt;
#match STORE You manage to find a cedar limb.&lt;br /&gt;
#match STORE You manage to find a fir limb.&lt;br /&gt;
#match STORE You manage to find a mangrove limb.&lt;br /&gt;
#match STORE You manage to find a maple limb.&lt;br /&gt;
#match STORE You manage to find a moabi limb.&lt;br /&gt;
#match STORE You manage to find a oak limb.&lt;br /&gt;
#match STORE You manage to find a pine limb.&lt;br /&gt;
#match STORE You manage to find a sandalwood limb.&lt;br /&gt;
#match STORE You manage to find a spruce limb.&lt;br /&gt;
#match STORE You manage to find a alder limb.&lt;br /&gt;
#match STORE You manage to find a apple limb.&lt;br /&gt;
#match STORE You manage to find a cypress limb.&lt;br /&gt;
#match STORE You manage to find a durian limb.&lt;br /&gt;
#match STORE You manage to find a elm limb.&lt;br /&gt;
#match STORE You manage to find a hemlock limb.&lt;br /&gt;
#match STORE You manage to find a larch limb.&lt;br /&gt;
#match STORE You manage to find a mahogany limb.&lt;br /&gt;
#match STORE You manage to find a teak limb.&lt;br /&gt;
#match STORE You manage to find a walnut limb.&lt;br /&gt;
#match STORE You manage to find a willow limb.&lt;br /&gt;
#match STORE You manage to find a bocote limb.&lt;br /&gt;
#match STORE You manage to find a cherry limb.&lt;br /&gt;
#match STORE You manage to find a ebony limb.&lt;br /&gt;
#match STORE You manage to find a hickory limb.&lt;br /&gt;
#match STORE You manage to find a ironwood limb.&lt;br /&gt;
#match STORE You manage to find a kapok limb.&lt;br /&gt;
#match STORE You manage to find a lelori limb.&lt;br /&gt;
#match STORE You manage to find a ramin limb.&lt;br /&gt;
#match STORE You manage to find a redwood limb.&lt;br /&gt;
#match STORE You manage to find a rosewood limb.&lt;br /&gt;
#match STORE You manage to find a tamarak limb.&lt;br /&gt;
#match STORE You manage to find a yew limb.&lt;br /&gt;
match DROP Roundtime&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
NOTEMPTY:&lt;br /&gt;
echo  EMPTY YOUR HANDS AND RESTART.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
STORE:&lt;br /&gt;
pause 1&lt;br /&gt;
put put my limb in my %1&lt;br /&gt;
goto GETLIMB&lt;br /&gt;
&lt;br /&gt;
DROP:&lt;br /&gt;
pause 1&lt;br /&gt;
put drop my limb&lt;br /&gt;
goto GETLIMB&lt;br /&gt;
&lt;br /&gt;
CLUTTERED:&lt;br /&gt;
echo ***************************************&lt;br /&gt;
echo ******      The room is to cluttered.         ******&lt;br /&gt;
echo ******     Resolve and restart script.        ******&lt;br /&gt;
echo ***************************************&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 2 - .BLOCK (holy water container) (limb/block container) (carving knife container)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script can be used to carve a Limb into a Block to make Payer Beads.&lt;br /&gt;
#It requires a container with Holy Water in it, a limb, and a carving knife.&lt;br /&gt;
#It is the second of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match GETWATER You glance down at your empty hands.&lt;br /&gt;
match NOTEMPTY You glance down to see&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
NOTEMPTY:&lt;br /&gt;
echo ******   Your hands are NOT empty.  ******&lt;br /&gt;
echo ******      Empty them and restart.      ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOWATER:&lt;br /&gt;
echo ****** You do not have any Holy Water in your %1 ******&lt;br /&gt;
echo ******       Please refill it, and restart the script.        ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOLIMB:&lt;br /&gt;
echo ******   You do not have a limb in your %2      ******&lt;br /&gt;
echo ****** Please get one and restart the script.  ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOCAST:&lt;br /&gt;
waitfor roundtime&lt;br /&gt;
goto BLESS&lt;br /&gt;
&lt;br /&gt;
GETWATER:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my %2&lt;br /&gt;
put get my %1&lt;br /&gt;
put look in my %1&lt;br /&gt;
match GETLIMB you see some holy water.&lt;br /&gt;
match NOWATER There is nothing in there.&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
GETLIMB:&lt;br /&gt;
pause 1&lt;br /&gt;
put get my limb&lt;br /&gt;
match NOLIMB What were you referring to?&lt;br /&gt;
match PREPLIMB limb from inside your&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PREPLIMB:&lt;br /&gt;
pause 1&lt;br /&gt;
put sprinkle %1 on my limb&lt;br /&gt;
put put %1 in %2&lt;br /&gt;
pause 1&lt;br /&gt;
put close %2&lt;br /&gt;
goto BLESS&lt;br /&gt;
&lt;br /&gt;
BLESS:&lt;br /&gt;
put prep bless 6&lt;br /&gt;
match CASTBLESS You feel fully prepared to cast your spell.&lt;br /&gt;
match NOCAST ...wait&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
CASTBLESS:&lt;br /&gt;
put cast my limb&lt;br /&gt;
pause 1&lt;br /&gt;
goto GETKNIFE&lt;br /&gt;
&lt;br /&gt;
GETKNIFE:&lt;br /&gt;
put get my carv knife&lt;br /&gt;
goto CARVE&lt;br /&gt;
&lt;br /&gt;
CARVE:&lt;br /&gt;
put carve my limb with my knife&lt;br /&gt;
match CARVE Roundtime&lt;br /&gt;
match BLOCK leaving you holding a&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
BLOCK:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my %2&lt;br /&gt;
put put my block in my %2&lt;br /&gt;
pause 1&lt;br /&gt;
put put my knife in my %3&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
END:&lt;br /&gt;
echo ALL DONE!!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 3 - .BEAD (animal) (wood shaper/primer location) (where to put the beads when done)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script assists you in carving a bead from a block in your position.&lt;br /&gt;
#You may do so with or without a primer.&lt;br /&gt;
#Without a primer, empty your hands, and just run the syntax  .BEAD (animal) (tool contaier) (final bead container)&lt;br /&gt;
#With a primer, place the primer in your Right Hand and run the same syntax.&lt;br /&gt;
#This is the third and final of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match PRIMER1 You glance down to see a parchment&lt;br /&gt;
match GETTOOLS You glance down at your empty&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PRIMER:&lt;br /&gt;
pause 1&lt;br /&gt;
put study my primer&lt;br /&gt;
match PRIMERTURN Roundtime&lt;br /&gt;
match PRIMER0 But the primer is closed!&lt;br /&gt;
match PRIMER1 You should start on the first&lt;br /&gt;
match PRIMER2 You have already studied&lt;br /&gt;
match PRIMER3 You finish studying the last page&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PRIMERTURN:&lt;br /&gt;
pause 1&lt;br /&gt;
put turn my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER0:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER1:&lt;br /&gt;
pause 1&lt;br /&gt;
put close my primer&lt;br /&gt;
put open my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER2:&lt;br /&gt;
pause 1&lt;br /&gt;
put turn my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER3:&lt;br /&gt;
pause 1&lt;br /&gt;
put close my primer&lt;br /&gt;
put put my primer in my %2&lt;br /&gt;
goto GETTOOLS&lt;br /&gt;
&lt;br /&gt;
GETTOOLS:&lt;br /&gt;
pause 1&lt;br /&gt;
put get my shaper&lt;br /&gt;
put get my block&lt;br /&gt;
goto SHAPE&lt;br /&gt;
&lt;br /&gt;
SHAPE:&lt;br /&gt;
pause 1&lt;br /&gt;
put shape block to %1&lt;br /&gt;
match SHAPE Roundtime&lt;br /&gt;
match SHAPE You smile with satisfaction as you continue&lt;br /&gt;
match SHAPE With heavy strokes, &lt;br /&gt;
match SHAPE Trying your best,&lt;br /&gt;
match SHAPE block taking shape in the form of&lt;br /&gt;
match SHAPE Pursing your lips&lt;br /&gt;
match SHAPE You focus&lt;br /&gt;
match BEADDONE Your spirit soars with pride&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
BEADDONE:&lt;br /&gt;
pause 1&lt;br /&gt;
put put bead in my %3&lt;br /&gt;
put put my shaper in my %2&lt;br /&gt;
echo *****************************************&lt;br /&gt;
echo *           You have completed your bead.                 *&lt;br /&gt;
echo *****************************************&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>MYERSV</name></author>
	</entry>
	<entry>
		<id>https://elanthipedia.play.net/index.php?title=Necimar%27s_Bead_Scripts&amp;diff=496193</id>
		<title>Necimar&#039;s Bead Scripts</title>
		<link rel="alternate" type="text/html" href="https://elanthipedia.play.net/index.php?title=Necimar%27s_Bead_Scripts&amp;diff=496193"/>
		<updated>2018-11-17T21:59:52Z</updated>

		<summary type="html">&lt;p&gt;MYERSV: /* Description */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Script&lt;br /&gt;
|fe=Stormfront&lt;br /&gt;
|cat=Crafting, Cleric&lt;br /&gt;
|auth=[[Necimar]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
A Collection of three simplistic scripts used by Clerics to find Limbs, Carve them into Blocks, and then shape the blocks into Beads.&lt;br /&gt;
Each script requires that the user have nothing in their hands, except for the final carving script(you may use a primer if needed.)&lt;br /&gt;
These scripts were written quickly upon request, but have been tested out and worked in every case tried.  There may still be a situation&lt;br /&gt;
that needs refining.  That will be up to you to work on.&lt;br /&gt;
&lt;br /&gt;
The scripts are:&lt;br /&gt;
&lt;br /&gt;
  .forlimb&lt;br /&gt;
  .block  (This script requires you to be a Cleric in possession of the Bless spell.)&lt;br /&gt;
  .bead&lt;br /&gt;
&lt;br /&gt;
==Script==&lt;br /&gt;
 1 - .FORLIMB (container to store the limbs)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script can be used to forage a specific common/uncommon/rare limb and store it in a container.&lt;br /&gt;
#Scroll down and UNCOMMENT the lines containing the wood type you want to keep.&lt;br /&gt;
#This script drops unwanted limbs, so the room may become Cluttered and need to be dealt with.&lt;br /&gt;
#It is the first of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match GETLIMB You glance down at your empty hands.&lt;br /&gt;
match NOTEMPTY You glance down to see&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
GETLIMB:&lt;br /&gt;
put forage limb&lt;br /&gt;
match CLUTTERED The room is too cluttered&lt;br /&gt;
#match STORE You manage to find a ash limb.&lt;br /&gt;
#match STORE You manage to find a aspen limb.&lt;br /&gt;
#match STORE You manage to find a balsa limb.&lt;br /&gt;
#match STORE You manage to find a bamboo limb.&lt;br /&gt;
#match STORE You manage to find a birch limb.&lt;br /&gt;
#match STORE You manage to find a cedar limb.&lt;br /&gt;
#match STORE You manage to find a fir limb.&lt;br /&gt;
#match STORE You manage to find a mangrove limb.&lt;br /&gt;
#match STORE You manage to find a maple limb.&lt;br /&gt;
#match STORE You manage to find a moabi limb.&lt;br /&gt;
#match STORE You manage to find a oak limb.&lt;br /&gt;
#match STORE You manage to find a pine limb.&lt;br /&gt;
#match STORE You manage to find a sandalwood limb.&lt;br /&gt;
#match STORE You manage to find a spruce limb.&lt;br /&gt;
#match STORE You manage to find a alder limb.&lt;br /&gt;
#match STORE You manage to find a apple limb.&lt;br /&gt;
#match STORE You manage to find a cypress limb.&lt;br /&gt;
#match STORE You manage to find a durian limb.&lt;br /&gt;
#match STORE You manage to find a elm limb.&lt;br /&gt;
#match STORE You manage to find a hemlock limb.&lt;br /&gt;
#match STORE You manage to find a larch limb.&lt;br /&gt;
#match STORE You manage to find a mahogany limb.&lt;br /&gt;
#match STORE You manage to find a teak limb.&lt;br /&gt;
#match STORE You manage to find a walnut limb.&lt;br /&gt;
#match STORE You manage to find a willow limb.&lt;br /&gt;
#match STORE You manage to find a bocote limb.&lt;br /&gt;
#match STORE You manage to find a cherry limb.&lt;br /&gt;
#match STORE You manage to find a ebony limb.&lt;br /&gt;
#match STORE You manage to find a hickory limb.&lt;br /&gt;
#match STORE You manage to find a ironwood limb.&lt;br /&gt;
#match STORE You manage to find a kapok limb.&lt;br /&gt;
#match STORE You manage to find a lelori limb.&lt;br /&gt;
#match STORE You manage to find a ramin limb.&lt;br /&gt;
#match STORE You manage to find a redwood limb.&lt;br /&gt;
#match STORE You manage to find a rosewood limb.&lt;br /&gt;
#match STORE You manage to find a tamarak limb.&lt;br /&gt;
#match STORE You manage to find a yew limb.&lt;br /&gt;
match DROP Roundtime&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
NOTEMPTY:&lt;br /&gt;
echo  EMPTY YOUR HANDS AND RESTART.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
STORE:&lt;br /&gt;
pause 1&lt;br /&gt;
put put my limb in my %1&lt;br /&gt;
goto GETLIMB&lt;br /&gt;
&lt;br /&gt;
DROP:&lt;br /&gt;
pause 1&lt;br /&gt;
put drop my limb&lt;br /&gt;
goto GETLIMB&lt;br /&gt;
&lt;br /&gt;
CLUTTERED:&lt;br /&gt;
echo ***************************************&lt;br /&gt;
echo ******      The room is to cluttered.         ******&lt;br /&gt;
echo ******     Resolve and restart script.        ******&lt;br /&gt;
echo ***************************************&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 2 - .BLOCK (holy water container) (limb/block container) (carving knife container)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script can be used to carve a Limb into a Block to make Payer Beads.&lt;br /&gt;
#It requires a container with Holy Water in it, a limb, and a carving knife.&lt;br /&gt;
#It is the second of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match GETWATER You glance down at your empty hands.&lt;br /&gt;
match NOTEMPTY You glance down to see&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
NOTEMPTY:&lt;br /&gt;
echo ******   Your hands are NOT empty.  ******&lt;br /&gt;
echo ******      Empty them and restart.      ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOWATER:&lt;br /&gt;
echo ****** You do not have any Holy Water in your %1 ******&lt;br /&gt;
echo ******       Please refill it, and restart the script.        ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOLIMB:&lt;br /&gt;
echo ******   You do not have a limb in your %2      ******&lt;br /&gt;
echo ****** Please get one and restart the script.  ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOCAST:&lt;br /&gt;
waitfor roundtime&lt;br /&gt;
goto BLESS&lt;br /&gt;
&lt;br /&gt;
GETWATER:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my %2&lt;br /&gt;
put get my %1&lt;br /&gt;
put look in my %1&lt;br /&gt;
match GETLIMB you see some holy water.&lt;br /&gt;
match NOWATER There is nothing in there.&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
GETLIMB:&lt;br /&gt;
pause 1&lt;br /&gt;
put get my limb&lt;br /&gt;
match NOLIMB What were you referring to?&lt;br /&gt;
match PREPLIMB limb from inside your&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PREPLIMB:&lt;br /&gt;
pause 1&lt;br /&gt;
put sprinkle %1 on my limb&lt;br /&gt;
put put %1 in %2&lt;br /&gt;
pause 1&lt;br /&gt;
put close %2&lt;br /&gt;
goto BLESS&lt;br /&gt;
&lt;br /&gt;
BLESS:&lt;br /&gt;
put prep bless 6&lt;br /&gt;
match CASTBLESS You feel fully prepared to cast your spell.&lt;br /&gt;
match NOCAST ...wait&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
CASTBLESS:&lt;br /&gt;
put cast my limb&lt;br /&gt;
pause 1&lt;br /&gt;
goto GETKNIFE&lt;br /&gt;
&lt;br /&gt;
GETKNIFE:&lt;br /&gt;
put get my carv knife&lt;br /&gt;
goto CARVE&lt;br /&gt;
&lt;br /&gt;
CARVE:&lt;br /&gt;
put carve my limb with my knife&lt;br /&gt;
match CARVE Roundtime&lt;br /&gt;
match BLOCK leaving you holding a&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
BLOCK:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my %2&lt;br /&gt;
put put my block in my %2&lt;br /&gt;
pause 1&lt;br /&gt;
put put my knife in my %3&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
END:&lt;br /&gt;
echo ALL DONE!!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 3 - .BEAD (animal) (wood shaper/primer location) (where to put the beads when done)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script assists you in carving a bead from a block in your position.&lt;br /&gt;
#You may do so with or without a primer.&lt;br /&gt;
#Without a primer, empty your hands, and just run the syntax  .BEAD (animal) (tool contaier) (final bead container)&lt;br /&gt;
#With a primer, place the primer in your Right Hand and run the same syntax.&lt;br /&gt;
#This is the third and final of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match PRIMER1 You glance down to see a parchment&lt;br /&gt;
match GETTOOLS You glance down at your empty&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PRIMER:&lt;br /&gt;
pause 1&lt;br /&gt;
put study my primer&lt;br /&gt;
match PRIMERTURN Roundtime&lt;br /&gt;
match PRIMER0 But the primer is closed!&lt;br /&gt;
match PRIMER1 You should start on the first&lt;br /&gt;
match PRIMER2 You have already studied&lt;br /&gt;
match PRIMER3 You finish studying the last page&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PRIMERTURN:&lt;br /&gt;
pause 1&lt;br /&gt;
put turn my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER0:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER1:&lt;br /&gt;
pause 1&lt;br /&gt;
put close my primer&lt;br /&gt;
put open my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER2:&lt;br /&gt;
pause 1&lt;br /&gt;
put turn my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER3:&lt;br /&gt;
pause 1&lt;br /&gt;
put close my primer&lt;br /&gt;
put put my primer in my %2&lt;br /&gt;
goto GETTOOLS&lt;br /&gt;
&lt;br /&gt;
GETTOOLS:&lt;br /&gt;
pause 1&lt;br /&gt;
put get my shaper&lt;br /&gt;
put get my block&lt;br /&gt;
goto SHAPE&lt;br /&gt;
&lt;br /&gt;
SHAPE:&lt;br /&gt;
pause 1&lt;br /&gt;
put shape block to %1&lt;br /&gt;
match SHAPE Roundtime&lt;br /&gt;
match SHAPE You smile with satisfaction as you continue&lt;br /&gt;
match SHAPE With heavy strokes, &lt;br /&gt;
match SHAPE Trying your best,&lt;br /&gt;
match SHAPE block taking shape in the form of&lt;br /&gt;
match SHAPE Pursing your lips&lt;br /&gt;
match SHAPE You focus&lt;br /&gt;
match BEADDONE Your spirit soars with pride&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
BEADDONE:&lt;br /&gt;
pause 1&lt;br /&gt;
put put bead in my %3&lt;br /&gt;
put put my shaper in my %2&lt;br /&gt;
echo *****************************************&lt;br /&gt;
echo *           You have completed your bead.                 *&lt;br /&gt;
echo *****************************************&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>MYERSV</name></author>
	</entry>
	<entry>
		<id>https://elanthipedia.play.net/index.php?title=Necimar%27s_Bead_Scripts&amp;diff=496192</id>
		<title>Necimar&#039;s Bead Scripts</title>
		<link rel="alternate" type="text/html" href="https://elanthipedia.play.net/index.php?title=Necimar%27s_Bead_Scripts&amp;diff=496192"/>
		<updated>2018-11-17T21:58:46Z</updated>

		<summary type="html">&lt;p&gt;MYERSV: /* Script */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Script&lt;br /&gt;
|fe=Stormfront&lt;br /&gt;
|cat=Crafting, Cleric&lt;br /&gt;
|auth=[[Necimar]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
A Collection of three simplistic scripts used by Clerics to find Limbs, Carve them into Blocks, and then shape the blocks into Beads.&lt;br /&gt;
Each script requires that the user have nothing in their hands, except for the final carving script.  You may use a primer if needed.&lt;br /&gt;
These scripts were written quickly upon request, but have been tested out and worked in every case tried.  There may still be a situation&lt;br /&gt;
that needs refining.  That will be up to you to work on.&lt;br /&gt;
&lt;br /&gt;
The scripts are:&lt;br /&gt;
&lt;br /&gt;
  .forlimb&lt;br /&gt;
  .block  (This script requires you to be a Cleric in possession of the Bless spell.)&lt;br /&gt;
  .bead&lt;br /&gt;
&lt;br /&gt;
==Script==&lt;br /&gt;
 1 - .FORLIMB (container to store the limbs)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script can be used to forage a specific common/uncommon/rare limb and store it in a container.&lt;br /&gt;
#Scroll down and UNCOMMENT the lines containing the wood type you want to keep.&lt;br /&gt;
#This script drops unwanted limbs, so the room may become Cluttered and need to be dealt with.&lt;br /&gt;
#It is the first of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match GETLIMB You glance down at your empty hands.&lt;br /&gt;
match NOTEMPTY You glance down to see&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
GETLIMB:&lt;br /&gt;
put forage limb&lt;br /&gt;
match CLUTTERED The room is too cluttered&lt;br /&gt;
#match STORE You manage to find a ash limb.&lt;br /&gt;
#match STORE You manage to find a aspen limb.&lt;br /&gt;
#match STORE You manage to find a balsa limb.&lt;br /&gt;
#match STORE You manage to find a bamboo limb.&lt;br /&gt;
#match STORE You manage to find a birch limb.&lt;br /&gt;
#match STORE You manage to find a cedar limb.&lt;br /&gt;
#match STORE You manage to find a fir limb.&lt;br /&gt;
#match STORE You manage to find a mangrove limb.&lt;br /&gt;
#match STORE You manage to find a maple limb.&lt;br /&gt;
#match STORE You manage to find a moabi limb.&lt;br /&gt;
#match STORE You manage to find a oak limb.&lt;br /&gt;
#match STORE You manage to find a pine limb.&lt;br /&gt;
#match STORE You manage to find a sandalwood limb.&lt;br /&gt;
#match STORE You manage to find a spruce limb.&lt;br /&gt;
#match STORE You manage to find a alder limb.&lt;br /&gt;
#match STORE You manage to find a apple limb.&lt;br /&gt;
#match STORE You manage to find a cypress limb.&lt;br /&gt;
#match STORE You manage to find a durian limb.&lt;br /&gt;
#match STORE You manage to find a elm limb.&lt;br /&gt;
#match STORE You manage to find a hemlock limb.&lt;br /&gt;
#match STORE You manage to find a larch limb.&lt;br /&gt;
#match STORE You manage to find a mahogany limb.&lt;br /&gt;
#match STORE You manage to find a teak limb.&lt;br /&gt;
#match STORE You manage to find a walnut limb.&lt;br /&gt;
#match STORE You manage to find a willow limb.&lt;br /&gt;
#match STORE You manage to find a bocote limb.&lt;br /&gt;
#match STORE You manage to find a cherry limb.&lt;br /&gt;
#match STORE You manage to find a ebony limb.&lt;br /&gt;
#match STORE You manage to find a hickory limb.&lt;br /&gt;
#match STORE You manage to find a ironwood limb.&lt;br /&gt;
#match STORE You manage to find a kapok limb.&lt;br /&gt;
#match STORE You manage to find a lelori limb.&lt;br /&gt;
#match STORE You manage to find a ramin limb.&lt;br /&gt;
#match STORE You manage to find a redwood limb.&lt;br /&gt;
#match STORE You manage to find a rosewood limb.&lt;br /&gt;
#match STORE You manage to find a tamarak limb.&lt;br /&gt;
#match STORE You manage to find a yew limb.&lt;br /&gt;
match DROP Roundtime&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
NOTEMPTY:&lt;br /&gt;
echo  EMPTY YOUR HANDS AND RESTART.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
STORE:&lt;br /&gt;
pause 1&lt;br /&gt;
put put my limb in my %1&lt;br /&gt;
goto GETLIMB&lt;br /&gt;
&lt;br /&gt;
DROP:&lt;br /&gt;
pause 1&lt;br /&gt;
put drop my limb&lt;br /&gt;
goto GETLIMB&lt;br /&gt;
&lt;br /&gt;
CLUTTERED:&lt;br /&gt;
echo ***************************************&lt;br /&gt;
echo ******      The room is to cluttered.         ******&lt;br /&gt;
echo ******     Resolve and restart script.        ******&lt;br /&gt;
echo ***************************************&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 2 - .BLOCK (holy water container) (limb/block container) (carving knife container)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script can be used to carve a Limb into a Block to make Payer Beads.&lt;br /&gt;
#It requires a container with Holy Water in it, a limb, and a carving knife.&lt;br /&gt;
#It is the second of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match GETWATER You glance down at your empty hands.&lt;br /&gt;
match NOTEMPTY You glance down to see&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
NOTEMPTY:&lt;br /&gt;
echo ******   Your hands are NOT empty.  ******&lt;br /&gt;
echo ******      Empty them and restart.      ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOWATER:&lt;br /&gt;
echo ****** You do not have any Holy Water in your %1 ******&lt;br /&gt;
echo ******       Please refill it, and restart the script.        ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOLIMB:&lt;br /&gt;
echo ******   You do not have a limb in your %2      ******&lt;br /&gt;
echo ****** Please get one and restart the script.  ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOCAST:&lt;br /&gt;
waitfor roundtime&lt;br /&gt;
goto BLESS&lt;br /&gt;
&lt;br /&gt;
GETWATER:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my %2&lt;br /&gt;
put get my %1&lt;br /&gt;
put look in my %1&lt;br /&gt;
match GETLIMB you see some holy water.&lt;br /&gt;
match NOWATER There is nothing in there.&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
GETLIMB:&lt;br /&gt;
pause 1&lt;br /&gt;
put get my limb&lt;br /&gt;
match NOLIMB What were you referring to?&lt;br /&gt;
match PREPLIMB limb from inside your&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PREPLIMB:&lt;br /&gt;
pause 1&lt;br /&gt;
put sprinkle %1 on my limb&lt;br /&gt;
put put %1 in %2&lt;br /&gt;
pause 1&lt;br /&gt;
put close %2&lt;br /&gt;
goto BLESS&lt;br /&gt;
&lt;br /&gt;
BLESS:&lt;br /&gt;
put prep bless 6&lt;br /&gt;
match CASTBLESS You feel fully prepared to cast your spell.&lt;br /&gt;
match NOCAST ...wait&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
CASTBLESS:&lt;br /&gt;
put cast my limb&lt;br /&gt;
pause 1&lt;br /&gt;
goto GETKNIFE&lt;br /&gt;
&lt;br /&gt;
GETKNIFE:&lt;br /&gt;
put get my carv knife&lt;br /&gt;
goto CARVE&lt;br /&gt;
&lt;br /&gt;
CARVE:&lt;br /&gt;
put carve my limb with my knife&lt;br /&gt;
match CARVE Roundtime&lt;br /&gt;
match BLOCK leaving you holding a&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
BLOCK:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my %2&lt;br /&gt;
put put my block in my %2&lt;br /&gt;
pause 1&lt;br /&gt;
put put my knife in my %3&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
END:&lt;br /&gt;
echo ALL DONE!!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 3 - .BEAD (animal) (wood shaper/primer location) (where to put the beads when done)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script assists you in carving a bead from a block in your position.&lt;br /&gt;
#You may do so with or without a primer.&lt;br /&gt;
#Without a primer, empty your hands, and just run the syntax  .BEAD (animal) (tool contaier) (final bead container)&lt;br /&gt;
#With a primer, place the primer in your Right Hand and run the same syntax.&lt;br /&gt;
#This is the third and final of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match PRIMER1 You glance down to see a parchment&lt;br /&gt;
match GETTOOLS You glance down at your empty&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PRIMER:&lt;br /&gt;
pause 1&lt;br /&gt;
put study my primer&lt;br /&gt;
match PRIMERTURN Roundtime&lt;br /&gt;
match PRIMER0 But the primer is closed!&lt;br /&gt;
match PRIMER1 You should start on the first&lt;br /&gt;
match PRIMER2 You have already studied&lt;br /&gt;
match PRIMER3 You finish studying the last page&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PRIMERTURN:&lt;br /&gt;
pause 1&lt;br /&gt;
put turn my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER0:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER1:&lt;br /&gt;
pause 1&lt;br /&gt;
put close my primer&lt;br /&gt;
put open my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER2:&lt;br /&gt;
pause 1&lt;br /&gt;
put turn my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER3:&lt;br /&gt;
pause 1&lt;br /&gt;
put close my primer&lt;br /&gt;
put put my primer in my %2&lt;br /&gt;
goto GETTOOLS&lt;br /&gt;
&lt;br /&gt;
GETTOOLS:&lt;br /&gt;
pause 1&lt;br /&gt;
put get my shaper&lt;br /&gt;
put get my block&lt;br /&gt;
goto SHAPE&lt;br /&gt;
&lt;br /&gt;
SHAPE:&lt;br /&gt;
pause 1&lt;br /&gt;
put shape block to %1&lt;br /&gt;
match SHAPE Roundtime&lt;br /&gt;
match SHAPE You smile with satisfaction as you continue&lt;br /&gt;
match SHAPE With heavy strokes, &lt;br /&gt;
match SHAPE Trying your best,&lt;br /&gt;
match SHAPE block taking shape in the form of&lt;br /&gt;
match SHAPE Pursing your lips&lt;br /&gt;
match SHAPE You focus&lt;br /&gt;
match BEADDONE Your spirit soars with pride&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
BEADDONE:&lt;br /&gt;
pause 1&lt;br /&gt;
put put bead in my %3&lt;br /&gt;
put put my shaper in my %2&lt;br /&gt;
echo *****************************************&lt;br /&gt;
echo *           You have completed your bead.                 *&lt;br /&gt;
echo *****************************************&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>MYERSV</name></author>
	</entry>
	<entry>
		<id>https://elanthipedia.play.net/index.php?title=Necimar%27s_Bead_Scripts&amp;diff=496190</id>
		<title>Necimar&#039;s Bead Scripts</title>
		<link rel="alternate" type="text/html" href="https://elanthipedia.play.net/index.php?title=Necimar%27s_Bead_Scripts&amp;diff=496190"/>
		<updated>2018-11-17T21:57:18Z</updated>

		<summary type="html">&lt;p&gt;MYERSV: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Script&lt;br /&gt;
|fe=Stormfront&lt;br /&gt;
|cat=Crafting, Cleric&lt;br /&gt;
|auth=[[Necimar]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
A Collection of three simplistic scripts used by Clerics to find Limbs, Carve them into Blocks, and then shape the blocks into Beads.&lt;br /&gt;
Each script requires that the user have nothing in their hands, except for the final carving script.  You may use a primer if needed.&lt;br /&gt;
These scripts were written quickly upon request, but have been tested out and worked in every case tried.  There may still be a situation&lt;br /&gt;
that needs refining.  That will be up to you to work on.&lt;br /&gt;
&lt;br /&gt;
The scripts are:&lt;br /&gt;
&lt;br /&gt;
  .forlimb&lt;br /&gt;
  .block  (This script requires you to be a Cleric in possession of the Bless spell.)&lt;br /&gt;
  .bead&lt;br /&gt;
&lt;br /&gt;
==Script==&lt;br /&gt;
 1 - .FORLIMB (container to store the limbs)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script can be used to forage a specific common/uncommon/rare limb and store it in a container.&lt;br /&gt;
#Scroll down and UNCOMMENT the lines containing the wood type you want to keep.&lt;br /&gt;
#This script drops unwanted limbs, so the room may become Cluttered and need to be dealt with.&lt;br /&gt;
#It is the first of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match GETLIMB You glance down at your empty hands.&lt;br /&gt;
match NOTEMPTY You glance down to see&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
GETLIMB:&lt;br /&gt;
put forage limb&lt;br /&gt;
match CLUTTERED The room is too cluttered&lt;br /&gt;
#match STORE You manage to find a ash limb.&lt;br /&gt;
#match STORE You manage to find a aspen limb.&lt;br /&gt;
#match STORE You manage to find a balsa limb.&lt;br /&gt;
#match STORE You manage to find a bamboo limb.&lt;br /&gt;
#match STORE You manage to find a birch limb.&lt;br /&gt;
#match STORE You manage to find a cedar limb.&lt;br /&gt;
#match STORE You manage to find a fir limb.&lt;br /&gt;
#match STORE You manage to find a mangrove limb.&lt;br /&gt;
#match STORE You manage to find a maple limb.&lt;br /&gt;
#match STORE You manage to find a moabi limb.&lt;br /&gt;
#match STORE You manage to find a oak limb.&lt;br /&gt;
#match STORE You manage to find a pine limb.&lt;br /&gt;
#match STORE You manage to find a sandalwood limb.&lt;br /&gt;
#match STORE You manage to find a spruce limb.&lt;br /&gt;
#match STORE You manage to find a alder limb.&lt;br /&gt;
#match STORE You manage to find a apple limb.&lt;br /&gt;
#match STORE You manage to find a cypress limb.&lt;br /&gt;
#match STORE You manage to find a durian limb.&lt;br /&gt;
#match STORE You manage to find a elm limb.&lt;br /&gt;
#match STORE You manage to find a hemlock limb.&lt;br /&gt;
#match STORE You manage to find a larch limb.&lt;br /&gt;
#match STORE You manage to find a mahogany limb.&lt;br /&gt;
#match STORE You manage to find a teak limb.&lt;br /&gt;
#match STORE You manage to find a walnut limb.&lt;br /&gt;
#match STORE You manage to find a willow limb.&lt;br /&gt;
#match STORE You manage to find a bocote limb.&lt;br /&gt;
#match STORE You manage to find a cherry limb.&lt;br /&gt;
#match STORE You manage to find a ebony limb.&lt;br /&gt;
#match STORE You manage to find a hickory limb.&lt;br /&gt;
#match STORE You manage to find a ironwood limb.&lt;br /&gt;
#match STORE You manage to find a kapok limb.&lt;br /&gt;
#match STORE You manage to find a lelori limb.&lt;br /&gt;
#match STORE You manage to find a ramin limb.&lt;br /&gt;
#match STORE You manage to find a redwood limb.&lt;br /&gt;
#match STORE You manage to find a rosewood limb.&lt;br /&gt;
#match STORE You manage to find a tamarak limb.&lt;br /&gt;
#match STORE You manage to find a yew limb.&lt;br /&gt;
match DROP Roundtime&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
NOTEMPTY:&lt;br /&gt;
echo  EMPTY YOUR HANDS AND RESTART.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
STORE:&lt;br /&gt;
pause 1&lt;br /&gt;
put put my limb in my %1&lt;br /&gt;
goto GETLIMB&lt;br /&gt;
&lt;br /&gt;
DROP:&lt;br /&gt;
pause 1&lt;br /&gt;
put drop my limb&lt;br /&gt;
goto GETLIMB&lt;br /&gt;
&lt;br /&gt;
CLUTTERED:&lt;br /&gt;
echo ***************************************&lt;br /&gt;
echo ******      The room is to cluttered.         ******&lt;br /&gt;
echo ******     Resolve and restart script.        ******&lt;br /&gt;
echo ***************************************&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 2 - .BLOCK (holy water container) (limb/block container) (carving knife container)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script can be used to carve a Limb into a Block to make Payer Beads.&lt;br /&gt;
#It requires a container with Holy Water in it, a limb, and a carving knife.&lt;br /&gt;
#It is the second of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match GETWATER You glance down at your empty hands.&lt;br /&gt;
match NOTEMPTY You glance down to see&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
NOTEMPTY:&lt;br /&gt;
echo ******   Your hands are NOT empty.  ******&lt;br /&gt;
echo ******      Empty them and restart.      ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOWATER:&lt;br /&gt;
echo ****** You do not have any Holy Water in your %1 ******&lt;br /&gt;
echo ******       Please refill it, and restart the script.        ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOLIMB:&lt;br /&gt;
echo ******   You do not have a limb in your %2      ******&lt;br /&gt;
echo ****** Please get one and restart the script.  ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOCAST:&lt;br /&gt;
waitfor roundtime&lt;br /&gt;
goto BLESS&lt;br /&gt;
&lt;br /&gt;
GETWATER:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my %2&lt;br /&gt;
put get my %1&lt;br /&gt;
put look in my %1&lt;br /&gt;
match GETLIMB you see some holy water.&lt;br /&gt;
match NOWATER There is nothing in there.&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
GETLIMB:&lt;br /&gt;
pause 1&lt;br /&gt;
put get my limb&lt;br /&gt;
match NOLIMB What were you referring to?&lt;br /&gt;
match PREPLIMB limb from inside your&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PREPLIMB:&lt;br /&gt;
pause 1&lt;br /&gt;
put sprinkle %1 on my limb&lt;br /&gt;
put put %1 in %2&lt;br /&gt;
pause 1&lt;br /&gt;
put close %2&lt;br /&gt;
goto BLESS&lt;br /&gt;
&lt;br /&gt;
BLESS:&lt;br /&gt;
put prep bless 6&lt;br /&gt;
match CASTBLESS You feel fully prepared to cast your spell.&lt;br /&gt;
match NOCAST ...wait&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
CASTBLESS:&lt;br /&gt;
put cast my limb&lt;br /&gt;
pause 1&lt;br /&gt;
goto GETKNIFE&lt;br /&gt;
&lt;br /&gt;
GETKNIFE:&lt;br /&gt;
put get my carv knife&lt;br /&gt;
goto CARVE&lt;br /&gt;
&lt;br /&gt;
CARVE:&lt;br /&gt;
put carve my limb with my knife&lt;br /&gt;
match CARVE Roundtime&lt;br /&gt;
match BLOCK leaving you holding a&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
BLOCK:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my %2&lt;br /&gt;
put put my block in my %2&lt;br /&gt;
pause 1&lt;br /&gt;
put put my knife in my %3&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
END:&lt;br /&gt;
echo ALL DONE!!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 3 - .BEAD (animal) (tool location) (where to put the beads when done)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script assists you in carving a bead from a block in your position.&lt;br /&gt;
#You may do so with or without a primer.&lt;br /&gt;
#Without a primer, empty your hands, and just run the syntax  .BEAD (animal) (tool contaier) (final bead container)&lt;br /&gt;
#With a primer, place the primer in your Right Hand and run the same syntax.&lt;br /&gt;
#This is the third and final of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match PRIMER1 You glance down to see a parchment&lt;br /&gt;
match GETTOOLS You glance down at your empty&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PRIMER:&lt;br /&gt;
pause 1&lt;br /&gt;
put study my primer&lt;br /&gt;
match PRIMERTURN Roundtime&lt;br /&gt;
match PRIMER0 But the primer is closed!&lt;br /&gt;
match PRIMER1 You should start on the first&lt;br /&gt;
match PRIMER2 You have already studied&lt;br /&gt;
match PRIMER3 You finish studying the last page&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PRIMERTURN:&lt;br /&gt;
pause 1&lt;br /&gt;
put turn my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER0:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER1:&lt;br /&gt;
pause 1&lt;br /&gt;
put close my primer&lt;br /&gt;
put open my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER2:&lt;br /&gt;
pause 1&lt;br /&gt;
put turn my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER3:&lt;br /&gt;
pause 1&lt;br /&gt;
put close my primer&lt;br /&gt;
put put my primer in my %2&lt;br /&gt;
goto GETTOOLS&lt;br /&gt;
&lt;br /&gt;
GETTOOLS:&lt;br /&gt;
pause 1&lt;br /&gt;
put get my shaper&lt;br /&gt;
put get my block&lt;br /&gt;
goto SHAPE&lt;br /&gt;
&lt;br /&gt;
SHAPE:&lt;br /&gt;
pause 1&lt;br /&gt;
put shape block to %1&lt;br /&gt;
match SHAPE Roundtime&lt;br /&gt;
match SHAPE You smile with satisfaction as you continue&lt;br /&gt;
match SHAPE With heavy strokes, &lt;br /&gt;
match SHAPE Trying your best,&lt;br /&gt;
match SHAPE block taking shape in the form of&lt;br /&gt;
match SHAPE Pursing your lips&lt;br /&gt;
match SHAPE You focus&lt;br /&gt;
match BEADDONE Your spirit soars with pride&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
BEADDONE:&lt;br /&gt;
pause 1&lt;br /&gt;
put put bead in my %3&lt;br /&gt;
put put my shaper in my %2&lt;br /&gt;
echo *****************************************&lt;br /&gt;
echo *           You have completed your bead.                 *&lt;br /&gt;
echo *****************************************&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>MYERSV</name></author>
	</entry>
	<entry>
		<id>https://elanthipedia.play.net/index.php?title=Necimar%27s_Bead_Scripts&amp;diff=496184</id>
		<title>Necimar&#039;s Bead Scripts</title>
		<link rel="alternate" type="text/html" href="https://elanthipedia.play.net/index.php?title=Necimar%27s_Bead_Scripts&amp;diff=496184"/>
		<updated>2018-11-17T21:48:58Z</updated>

		<summary type="html">&lt;p&gt;MYERSV: /* Description */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Script&lt;br /&gt;
|fe=Stormfront&lt;br /&gt;
|cat=Crafting, Cleric&lt;br /&gt;
|auth=[[Necimar]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
A Collection of three simplistic scripts used by Clerics to find Limbs, Carve them into Blocks, and then shape the blocks into Beads.&lt;br /&gt;
Each script requires that the user have nothing in their hands, except for the final carving script.  You may use a primer if needed.&lt;br /&gt;
These scripts were written quickly upon request, but have been tested out and worked in every case tried.  There may still be a situation&lt;br /&gt;
that needs refining.  That will be up to you to work on.&lt;br /&gt;
&lt;br /&gt;
The scripts are:&lt;br /&gt;
&lt;br /&gt;
  .forlimb&lt;br /&gt;
  .block  (This script requires you to be a Cleric in possession of the Bless spell.)&lt;br /&gt;
  .bead&lt;br /&gt;
&lt;br /&gt;
==Script==&lt;br /&gt;
 1 - FORLIMB  (container to store the limbs)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script can be used to forage a specific common/uncommon/rare limb and store it in a container.&lt;br /&gt;
#Scroll down and UNCOMMENT the lines containing the wood type you want to keep.&lt;br /&gt;
#This script drops unwanted limbs, so the room may become Cluttered and need to be dealt with.&lt;br /&gt;
#It is the first of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match GETLIMB You glance down at your empty hands.&lt;br /&gt;
match NOTEMPTY You glance down to see&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
GETLIMB:&lt;br /&gt;
put forage limb&lt;br /&gt;
match CLUTTERED The room is too cluttered&lt;br /&gt;
#match STORE You manage to find a ash limb.&lt;br /&gt;
#match STORE You manage to find a aspen limb.&lt;br /&gt;
#match STORE You manage to find a balsa limb.&lt;br /&gt;
#match STORE You manage to find a bamboo limb.&lt;br /&gt;
#match STORE You manage to find a birch limb.&lt;br /&gt;
#match STORE You manage to find a cedar limb.&lt;br /&gt;
#match STORE You manage to find a fir limb.&lt;br /&gt;
#match STORE You manage to find a mangrove limb.&lt;br /&gt;
#match STORE You manage to find a maple limb.&lt;br /&gt;
#match STORE You manage to find a moabi limb.&lt;br /&gt;
#match STORE You manage to find a oak limb.&lt;br /&gt;
#match STORE You manage to find a pine limb.&lt;br /&gt;
#match STORE You manage to find a sandalwood limb.&lt;br /&gt;
#match STORE You manage to find a spruce limb.&lt;br /&gt;
#match STORE You manage to find a alder limb.&lt;br /&gt;
#match STORE You manage to find a apple limb.&lt;br /&gt;
#match STORE You manage to find a cypress limb.&lt;br /&gt;
#match STORE You manage to find a durian limb.&lt;br /&gt;
#match STORE You manage to find a elm limb.&lt;br /&gt;
#match STORE You manage to find a hemlock limb.&lt;br /&gt;
#match STORE You manage to find a larch limb.&lt;br /&gt;
#match STORE You manage to find a mahogany limb.&lt;br /&gt;
#match STORE You manage to find a teak limb.&lt;br /&gt;
#match STORE You manage to find a walnut limb.&lt;br /&gt;
#match STORE You manage to find a willow limb.&lt;br /&gt;
#match STORE You manage to find a bocote limb.&lt;br /&gt;
#match STORE You manage to find a cherry limb.&lt;br /&gt;
#match STORE You manage to find a ebony limb.&lt;br /&gt;
#match STORE You manage to find a hickory limb.&lt;br /&gt;
#match STORE You manage to find a ironwood limb.&lt;br /&gt;
#match STORE You manage to find a kapok limb.&lt;br /&gt;
#match STORE You manage to find a lelori limb.&lt;br /&gt;
#match STORE You manage to find a ramin limb.&lt;br /&gt;
#match STORE You manage to find a redwood limb.&lt;br /&gt;
#match STORE You manage to find a rosewood limb.&lt;br /&gt;
#match STORE You manage to find a tamarak limb.&lt;br /&gt;
#match STORE You manage to find a yew limb.&lt;br /&gt;
match DROP Roundtime&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
NOTEMPTY:&lt;br /&gt;
echo  EMPTY YOUR HANDS AND RESTART.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
STORE:&lt;br /&gt;
pause 1&lt;br /&gt;
put put my limb in my %1&lt;br /&gt;
goto GETLIMB&lt;br /&gt;
&lt;br /&gt;
DROP:&lt;br /&gt;
pause 1&lt;br /&gt;
put drop my limb&lt;br /&gt;
goto GETLIMB&lt;br /&gt;
&lt;br /&gt;
CLUTTERED:&lt;br /&gt;
echo ***************************************&lt;br /&gt;
echo ******      The room is to cluttered.         ******&lt;br /&gt;
echo ******     Resolve and restart script.        ******&lt;br /&gt;
echo ***************************************&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 2 - BLOCK (holy water container) (limb/block container) (carving knife container)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script can be used to carve a Limb into a Block to make Payer Beads.&lt;br /&gt;
#It requires a container with Holy Water in it, a limb, and a carving knife.&lt;br /&gt;
#It is the second of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match GETWATER You glance down at your empty hands.&lt;br /&gt;
match NOTEMPTY You glance down to see&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
NOTEMPTY:&lt;br /&gt;
echo ******   Your hands are NOT empty.  ******&lt;br /&gt;
echo ******      Empty them and restart.      ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOWATER:&lt;br /&gt;
echo ****** You do not have any Holy Water in your %1 ******&lt;br /&gt;
echo ******       Please refill it, and restart the script.        ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOLIMB:&lt;br /&gt;
echo ******   You do not have a limb in your %2      ******&lt;br /&gt;
echo ****** Please get one and restart the script.  ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOCAST:&lt;br /&gt;
waitfor roundtime&lt;br /&gt;
goto BLESS&lt;br /&gt;
&lt;br /&gt;
GETWATER:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my %2&lt;br /&gt;
put get my %1&lt;br /&gt;
put look in my %1&lt;br /&gt;
match GETLIMB you see some holy water.&lt;br /&gt;
match NOWATER There is nothing in there.&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
GETLIMB:&lt;br /&gt;
pause 1&lt;br /&gt;
put get my limb&lt;br /&gt;
match NOLIMB What were you referring to?&lt;br /&gt;
match PREPLIMB limb from inside your&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PREPLIMB:&lt;br /&gt;
pause 1&lt;br /&gt;
put sprinkle %1 on my limb&lt;br /&gt;
put put %1 in %2&lt;br /&gt;
pause 1&lt;br /&gt;
put close %2&lt;br /&gt;
goto BLESS&lt;br /&gt;
&lt;br /&gt;
BLESS:&lt;br /&gt;
put prep bless 6&lt;br /&gt;
match CASTBLESS You feel fully prepared to cast your spell.&lt;br /&gt;
match NOCAST ...wait&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
CASTBLESS:&lt;br /&gt;
put cast my limb&lt;br /&gt;
pause 1&lt;br /&gt;
goto GETKNIFE&lt;br /&gt;
&lt;br /&gt;
GETKNIFE:&lt;br /&gt;
put get my carv knife&lt;br /&gt;
goto CARVE&lt;br /&gt;
&lt;br /&gt;
CARVE:&lt;br /&gt;
put carve my limb with my knife&lt;br /&gt;
match CARVE Roundtime&lt;br /&gt;
match BLOCK leaving you holding a&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
BLOCK:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my %2&lt;br /&gt;
put put my block in my %2&lt;br /&gt;
pause 1&lt;br /&gt;
put put my knife in my %3&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
END:&lt;br /&gt;
echo ALL DONE!!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 3 - Bead (animal) (tool location) (where to put the beads when done)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script assists you in carving a bead from a block in your position.&lt;br /&gt;
#You may do so with or without a primer.&lt;br /&gt;
#Without a primer, empty your hands, and just run the syntax  .BEAD (animal) (tool contaier) (final bead container)&lt;br /&gt;
#With a primer, place the primer in your Right Hand and run the same syntax.&lt;br /&gt;
#This is the third and final of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match PRIMER1 You glance down to see a parchment&lt;br /&gt;
match GETTOOLS You glance down at your empty&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PRIMER:&lt;br /&gt;
pause 1&lt;br /&gt;
put study my primer&lt;br /&gt;
match PRIMERTURN Roundtime&lt;br /&gt;
match PRIMER0 But the primer is closed!&lt;br /&gt;
match PRIMER1 You should start on the first&lt;br /&gt;
match PRIMER2 You have already studied&lt;br /&gt;
match PRIMER3 You finish studying the last page&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PRIMERTURN:&lt;br /&gt;
pause 1&lt;br /&gt;
put turn my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER0:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER1:&lt;br /&gt;
pause 1&lt;br /&gt;
put close my primer&lt;br /&gt;
put open my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER2:&lt;br /&gt;
pause 1&lt;br /&gt;
put turn my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER3:&lt;br /&gt;
pause 1&lt;br /&gt;
put close my primer&lt;br /&gt;
put put my primer in my %2&lt;br /&gt;
goto GETTOOLS&lt;br /&gt;
&lt;br /&gt;
GETTOOLS:&lt;br /&gt;
pause 1&lt;br /&gt;
put get my shaper&lt;br /&gt;
put get my block&lt;br /&gt;
goto SHAPE&lt;br /&gt;
&lt;br /&gt;
SHAPE:&lt;br /&gt;
pause 1&lt;br /&gt;
put shape block to %1&lt;br /&gt;
match SHAPE Roundtime&lt;br /&gt;
match SHAPE You smile with satisfaction as you continue&lt;br /&gt;
match SHAPE With heavy strokes, &lt;br /&gt;
match SHAPE Trying your best,&lt;br /&gt;
match SHAPE block taking shape in the form of&lt;br /&gt;
match SHAPE Pursing your lips&lt;br /&gt;
match SHAPE You focus&lt;br /&gt;
match BEADDONE Your spirit soars with pride&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
BEADDONE:&lt;br /&gt;
pause 1&lt;br /&gt;
put put bead in my %3&lt;br /&gt;
put put my shaper in my %2&lt;br /&gt;
echo *****************************************&lt;br /&gt;
echo *           You have completed your bead.                 *&lt;br /&gt;
echo *****************************************&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>MYERSV</name></author>
	</entry>
	<entry>
		<id>https://elanthipedia.play.net/index.php?title=Necimar%27s_Bead_Scripts&amp;diff=496183</id>
		<title>Necimar&#039;s Bead Scripts</title>
		<link rel="alternate" type="text/html" href="https://elanthipedia.play.net/index.php?title=Necimar%27s_Bead_Scripts&amp;diff=496183"/>
		<updated>2018-11-17T21:45:03Z</updated>

		<summary type="html">&lt;p&gt;MYERSV: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Script&lt;br /&gt;
|fe=Stormfront&lt;br /&gt;
|cat=Crafting, Cleric&lt;br /&gt;
|auth=[[Necimar]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
A Collection of three simplistic scripts used by Clerics to find Limbs, Carve them into Blocks, and then shape the blocks into Beads.&lt;br /&gt;
Each script requires that the user have nothing in their hands, except for the final carving script.  You may use a primer if needed.&lt;br /&gt;
These scripts were written quickly upon request, but have been tested out and worked in every case tried.  There may still be a situation&lt;br /&gt;
that needs refining.  That will be up to you to work on.&lt;br /&gt;
&lt;br /&gt;
The scripts are:&lt;br /&gt;
&lt;br /&gt;
  .forlimb&lt;br /&gt;
  .block&lt;br /&gt;
  .bead &lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Script==&lt;br /&gt;
 1 - FORLIMB  (container to store the limbs)&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script can be used to forage a specific common/uncommon/rare limb and store it in a container.&lt;br /&gt;
#Scroll down and UNCOMMENT the lines containing the wood type you want to keep.&lt;br /&gt;
#This script drops unwanted limbs, so the room may become Cluttered and need to be dealt with.&lt;br /&gt;
#It is the first of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match GETLIMB You glance down at your empty hands.&lt;br /&gt;
match NOTEMPTY You glance down to see&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
GETLIMB:&lt;br /&gt;
put forage limb&lt;br /&gt;
match CLUTTERED The room is too cluttered&lt;br /&gt;
#match STORE You manage to find a ash limb.&lt;br /&gt;
#match STORE You manage to find a aspen limb.&lt;br /&gt;
#match STORE You manage to find a balsa limb.&lt;br /&gt;
#match STORE You manage to find a bamboo limb.&lt;br /&gt;
#match STORE You manage to find a birch limb.&lt;br /&gt;
#match STORE You manage to find a cedar limb.&lt;br /&gt;
#match STORE You manage to find a fir limb.&lt;br /&gt;
#match STORE You manage to find a mangrove limb.&lt;br /&gt;
#match STORE You manage to find a maple limb.&lt;br /&gt;
#match STORE You manage to find a moabi limb.&lt;br /&gt;
#match STORE You manage to find a oak limb.&lt;br /&gt;
#match STORE You manage to find a pine limb.&lt;br /&gt;
#match STORE You manage to find a sandalwood limb.&lt;br /&gt;
#match STORE You manage to find a spruce limb.&lt;br /&gt;
#match STORE You manage to find a alder limb.&lt;br /&gt;
#match STORE You manage to find a apple limb.&lt;br /&gt;
#match STORE You manage to find a cypress limb.&lt;br /&gt;
#match STORE You manage to find a durian limb.&lt;br /&gt;
#match STORE You manage to find a elm limb.&lt;br /&gt;
#match STORE You manage to find a hemlock limb.&lt;br /&gt;
#match STORE You manage to find a larch limb.&lt;br /&gt;
#match STORE You manage to find a mahogany limb.&lt;br /&gt;
#match STORE You manage to find a teak limb.&lt;br /&gt;
#match STORE You manage to find a walnut limb.&lt;br /&gt;
#match STORE You manage to find a willow limb.&lt;br /&gt;
#match STORE You manage to find a bocote limb.&lt;br /&gt;
#match STORE You manage to find a cherry limb.&lt;br /&gt;
#match STORE You manage to find a ebony limb.&lt;br /&gt;
#match STORE You manage to find a hickory limb.&lt;br /&gt;
#match STORE You manage to find a ironwood limb.&lt;br /&gt;
#match STORE You manage to find a kapok limb.&lt;br /&gt;
#match STORE You manage to find a lelori limb.&lt;br /&gt;
#match STORE You manage to find a ramin limb.&lt;br /&gt;
#match STORE You manage to find a redwood limb.&lt;br /&gt;
#match STORE You manage to find a rosewood limb.&lt;br /&gt;
#match STORE You manage to find a tamarak limb.&lt;br /&gt;
#match STORE You manage to find a yew limb.&lt;br /&gt;
match DROP Roundtime&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
NOTEMPTY:&lt;br /&gt;
echo  EMPTY YOUR HANDS AND RESTART.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
STORE:&lt;br /&gt;
pause 1&lt;br /&gt;
put put my limb in my %1&lt;br /&gt;
goto GETLIMB&lt;br /&gt;
&lt;br /&gt;
DROP:&lt;br /&gt;
pause 1&lt;br /&gt;
put drop my limb&lt;br /&gt;
goto GETLIMB&lt;br /&gt;
&lt;br /&gt;
CLUTTERED:&lt;br /&gt;
echo ***************************************&lt;br /&gt;
echo ******      The room is to cluttered.         ******&lt;br /&gt;
echo ******     Resolve and restart script.        ******&lt;br /&gt;
echo ***************************************&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 2 - BLOCK (holy water container) (limb/block container) (carving knife container)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script can be used to carve a Limb into a Block to make Payer Beads.&lt;br /&gt;
#It requires a container with Holy Water in it, a limb, and a carving knife.&lt;br /&gt;
#It is the second of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match GETWATER You glance down at your empty hands.&lt;br /&gt;
match NOTEMPTY You glance down to see&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
NOTEMPTY:&lt;br /&gt;
echo ******   Your hands are NOT empty.  ******&lt;br /&gt;
echo ******      Empty them and restart.      ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOWATER:&lt;br /&gt;
echo ****** You do not have any Holy Water in your %1 ******&lt;br /&gt;
echo ******       Please refill it, and restart the script.        ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOLIMB:&lt;br /&gt;
echo ******   You do not have a limb in your %2      ******&lt;br /&gt;
echo ****** Please get one and restart the script.  ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOCAST:&lt;br /&gt;
waitfor roundtime&lt;br /&gt;
goto BLESS&lt;br /&gt;
&lt;br /&gt;
GETWATER:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my %2&lt;br /&gt;
put get my %1&lt;br /&gt;
put look in my %1&lt;br /&gt;
match GETLIMB you see some holy water.&lt;br /&gt;
match NOWATER There is nothing in there.&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
GETLIMB:&lt;br /&gt;
pause 1&lt;br /&gt;
put get my limb&lt;br /&gt;
match NOLIMB What were you referring to?&lt;br /&gt;
match PREPLIMB limb from inside your&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PREPLIMB:&lt;br /&gt;
pause 1&lt;br /&gt;
put sprinkle %1 on my limb&lt;br /&gt;
put put %1 in %2&lt;br /&gt;
pause 1&lt;br /&gt;
put close %2&lt;br /&gt;
goto BLESS&lt;br /&gt;
&lt;br /&gt;
BLESS:&lt;br /&gt;
put prep bless 6&lt;br /&gt;
match CASTBLESS You feel fully prepared to cast your spell.&lt;br /&gt;
match NOCAST ...wait&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
CASTBLESS:&lt;br /&gt;
put cast my limb&lt;br /&gt;
pause 1&lt;br /&gt;
goto GETKNIFE&lt;br /&gt;
&lt;br /&gt;
GETKNIFE:&lt;br /&gt;
put get my carv knife&lt;br /&gt;
goto CARVE&lt;br /&gt;
&lt;br /&gt;
CARVE:&lt;br /&gt;
put carve my limb with my knife&lt;br /&gt;
match CARVE Roundtime&lt;br /&gt;
match BLOCK leaving you holding a&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
BLOCK:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my %2&lt;br /&gt;
put put my block in my %2&lt;br /&gt;
pause 1&lt;br /&gt;
put put my knife in my %3&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
END:&lt;br /&gt;
echo ALL DONE!!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 3 - Bead (animal) (tool location) (where to put the beads when done)&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script assists you in carving a bead from a block in your position.&lt;br /&gt;
#You may do so with or without a primer.&lt;br /&gt;
#Without a primer, empty your hands, and just run the syntax  .BEAD (animal) (tool contaier) (final bead container)&lt;br /&gt;
#With a primer, place the primer in your Right Hand and run the same syntax.&lt;br /&gt;
#This is the third and final of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match PRIMER1 You glance down to see a parchment&lt;br /&gt;
match GETTOOLS You glance down at your empty&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PRIMER:&lt;br /&gt;
pause 1&lt;br /&gt;
put study my primer&lt;br /&gt;
match PRIMERTURN Roundtime&lt;br /&gt;
match PRIMER0 But the primer is closed!&lt;br /&gt;
match PRIMER1 You should start on the first&lt;br /&gt;
match PRIMER2 You have already studied&lt;br /&gt;
match PRIMER3 You finish studying the last page&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PRIMERTURN:&lt;br /&gt;
pause 1&lt;br /&gt;
put turn my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER0:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER1:&lt;br /&gt;
pause 1&lt;br /&gt;
put close my primer&lt;br /&gt;
put open my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER2:&lt;br /&gt;
pause 1&lt;br /&gt;
put turn my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER3:&lt;br /&gt;
pause 1&lt;br /&gt;
put close my primer&lt;br /&gt;
put put my primer in my %2&lt;br /&gt;
goto GETTOOLS&lt;br /&gt;
&lt;br /&gt;
GETTOOLS:&lt;br /&gt;
pause 1&lt;br /&gt;
put get my shaper&lt;br /&gt;
put get my block&lt;br /&gt;
goto SHAPE&lt;br /&gt;
&lt;br /&gt;
SHAPE:&lt;br /&gt;
pause 1&lt;br /&gt;
put shape block to %1&lt;br /&gt;
match SHAPE Roundtime&lt;br /&gt;
match SHAPE You smile with satisfaction as you continue&lt;br /&gt;
match SHAPE With heavy strokes, &lt;br /&gt;
match SHAPE Trying your best,&lt;br /&gt;
match SHAPE block taking shape in the form of&lt;br /&gt;
match SHAPE Pursing your lips&lt;br /&gt;
match SHAPE You focus&lt;br /&gt;
match BEADDONE Your spirit soars with pride&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
BEADDONE:&lt;br /&gt;
pause 1&lt;br /&gt;
put put bead in my %3&lt;br /&gt;
put put my shaper in my %2&lt;br /&gt;
echo *****************************************&lt;br /&gt;
echo *           You have completed your bead.                 *&lt;br /&gt;
echo *****************************************&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>MYERSV</name></author>
	</entry>
	<entry>
		<id>https://elanthipedia.play.net/index.php?title=Necimar%27s_Bead_Scripts&amp;diff=496182</id>
		<title>Necimar&#039;s Bead Scripts</title>
		<link rel="alternate" type="text/html" href="https://elanthipedia.play.net/index.php?title=Necimar%27s_Bead_Scripts&amp;diff=496182"/>
		<updated>2018-11-17T21:42:03Z</updated>

		<summary type="html">&lt;p&gt;MYERSV: /* Script */&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Script&lt;br /&gt;
|fe=Stormfront&lt;br /&gt;
|cat=Crafting, Cleric&lt;br /&gt;
|auth=[[Necimar]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Collection of three simplistic scripts used by Clerics to find Limbs, Carve them into Blocks, and then shape the blocks into Beads.&lt;br /&gt;
Each script requires that the user have nothing in their hands, except for the final carving script.  You may use a primer if needed.&lt;br /&gt;
&lt;br /&gt;
The scripts are:&lt;br /&gt;
&lt;br /&gt;
  .forlimb (container to store the limbs)&lt;br /&gt;
  .block (holy water container) (limb/block container) (carving knife container)&lt;br /&gt;
  .bead (animal) (tool location) (where to put the beads when done)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Script==&lt;br /&gt;
 1 - FORLIMB&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script can be used to forage a specific common/uncommon/rare limb and store it in a container.&lt;br /&gt;
#Scroll down and UNCOMMENT the lines containing the wood type you want to keep.&lt;br /&gt;
#This script drops unwanted limbs, so the room may become Cluttered and need to be dealt with.&lt;br /&gt;
#It is the first of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match GETLIMB You glance down at your empty hands.&lt;br /&gt;
match NOTEMPTY You glance down to see&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
GETLIMB:&lt;br /&gt;
put forage limb&lt;br /&gt;
match CLUTTERED The room is too cluttered&lt;br /&gt;
#match STORE You manage to find a ash limb.&lt;br /&gt;
#match STORE You manage to find a aspen limb.&lt;br /&gt;
#match STORE You manage to find a balsa limb.&lt;br /&gt;
#match STORE You manage to find a bamboo limb.&lt;br /&gt;
#match STORE You manage to find a birch limb.&lt;br /&gt;
#match STORE You manage to find a cedar limb.&lt;br /&gt;
#match STORE You manage to find a fir limb.&lt;br /&gt;
#match STORE You manage to find a mangrove limb.&lt;br /&gt;
#match STORE You manage to find a maple limb.&lt;br /&gt;
#match STORE You manage to find a moabi limb.&lt;br /&gt;
#match STORE You manage to find a oak limb.&lt;br /&gt;
#match STORE You manage to find a pine limb.&lt;br /&gt;
#match STORE You manage to find a sandalwood limb.&lt;br /&gt;
#match STORE You manage to find a spruce limb.&lt;br /&gt;
#match STORE You manage to find a alder limb.&lt;br /&gt;
#match STORE You manage to find a apple limb.&lt;br /&gt;
#match STORE You manage to find a cypress limb.&lt;br /&gt;
#match STORE You manage to find a durian limb.&lt;br /&gt;
#match STORE You manage to find a elm limb.&lt;br /&gt;
#match STORE You manage to find a hemlock limb.&lt;br /&gt;
#match STORE You manage to find a larch limb.&lt;br /&gt;
#match STORE You manage to find a mahogany limb.&lt;br /&gt;
#match STORE You manage to find a teak limb.&lt;br /&gt;
#match STORE You manage to find a walnut limb.&lt;br /&gt;
#match STORE You manage to find a willow limb.&lt;br /&gt;
#match STORE You manage to find a bocote limb.&lt;br /&gt;
#match STORE You manage to find a cherry limb.&lt;br /&gt;
#match STORE You manage to find a ebony limb.&lt;br /&gt;
#match STORE You manage to find a hickory limb.&lt;br /&gt;
#match STORE You manage to find a ironwood limb.&lt;br /&gt;
#match STORE You manage to find a kapok limb.&lt;br /&gt;
#match STORE You manage to find a lelori limb.&lt;br /&gt;
#match STORE You manage to find a ramin limb.&lt;br /&gt;
#match STORE You manage to find a redwood limb.&lt;br /&gt;
#match STORE You manage to find a rosewood limb.&lt;br /&gt;
#match STORE You manage to find a tamarak limb.&lt;br /&gt;
#match STORE You manage to find a yew limb.&lt;br /&gt;
match DROP Roundtime&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
NOTEMPTY:&lt;br /&gt;
echo  EMPTY YOUR HANDS AND RESTART.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
STORE:&lt;br /&gt;
pause 1&lt;br /&gt;
put put my limb in my %1&lt;br /&gt;
goto GETLIMB&lt;br /&gt;
&lt;br /&gt;
DROP:&lt;br /&gt;
pause 1&lt;br /&gt;
put drop my limb&lt;br /&gt;
goto GETLIMB&lt;br /&gt;
&lt;br /&gt;
CLUTTERED:&lt;br /&gt;
echo ***************************************&lt;br /&gt;
echo ******      The room is to cluttered.         ******&lt;br /&gt;
echo ******     Resolve and restart script.        ******&lt;br /&gt;
echo ***************************************&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 2 - BLOCK&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script can be used to carve a Limb into a Block to make Payer Beads.&lt;br /&gt;
#It requires a container with Holy Water in it, a limb, and a carving knife.&lt;br /&gt;
#It is the second of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match GETWATER You glance down at your empty hands.&lt;br /&gt;
match NOTEMPTY You glance down to see&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
NOTEMPTY:&lt;br /&gt;
echo ******   Your hands are NOT empty.  ******&lt;br /&gt;
echo ******      Empty them and restart.      ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOWATER:&lt;br /&gt;
echo ****** You do not have any Holy Water in your %1 ******&lt;br /&gt;
echo ******       Please refill it, and restart the script.        ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOLIMB:&lt;br /&gt;
echo ******   You do not have a limb in your %2      ******&lt;br /&gt;
echo ****** Please get one and restart the script.  ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOCAST:&lt;br /&gt;
waitfor roundtime&lt;br /&gt;
goto BLESS&lt;br /&gt;
&lt;br /&gt;
GETWATER:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my %2&lt;br /&gt;
put get my %1&lt;br /&gt;
put look in my %1&lt;br /&gt;
match GETLIMB you see some holy water.&lt;br /&gt;
match NOWATER There is nothing in there.&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
GETLIMB:&lt;br /&gt;
pause 1&lt;br /&gt;
put get my limb&lt;br /&gt;
match NOLIMB What were you referring to?&lt;br /&gt;
match PREPLIMB limb from inside your&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PREPLIMB:&lt;br /&gt;
pause 1&lt;br /&gt;
put sprinkle %1 on my limb&lt;br /&gt;
put put %1 in %2&lt;br /&gt;
pause 1&lt;br /&gt;
put close %2&lt;br /&gt;
goto BLESS&lt;br /&gt;
&lt;br /&gt;
BLESS:&lt;br /&gt;
put prep bless 6&lt;br /&gt;
match CASTBLESS You feel fully prepared to cast your spell.&lt;br /&gt;
match NOCAST ...wait&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
CASTBLESS:&lt;br /&gt;
put cast my limb&lt;br /&gt;
pause 1&lt;br /&gt;
goto GETKNIFE&lt;br /&gt;
&lt;br /&gt;
GETKNIFE:&lt;br /&gt;
put get my carv knife&lt;br /&gt;
goto CARVE&lt;br /&gt;
&lt;br /&gt;
CARVE:&lt;br /&gt;
put carve my limb with my knife&lt;br /&gt;
match CARVE Roundtime&lt;br /&gt;
match BLOCK leaving you holding a&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
BLOCK:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my %2&lt;br /&gt;
put put my block in my %2&lt;br /&gt;
pause 1&lt;br /&gt;
put put my knife in my %3&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
END:&lt;br /&gt;
echo ALL DONE!!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 3 - Bead&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script assists you in carving a bead from a block in your position.&lt;br /&gt;
#You may do so with or without a primer.&lt;br /&gt;
#Without a primer, empty your hands, and just run the syntax  .BEAD (animal) (tool contaier) (final bead container)&lt;br /&gt;
#With a primer, place the primer in your Right Hand and run the same syntax.&lt;br /&gt;
#This is the third and final of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match PRIMER1 You glance down to see a parchment&lt;br /&gt;
match GETTOOLS You glance down at your empty&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PRIMER:&lt;br /&gt;
pause 1&lt;br /&gt;
put study my primer&lt;br /&gt;
match PRIMERTURN Roundtime&lt;br /&gt;
match PRIMER0 But the primer is closed!&lt;br /&gt;
match PRIMER1 You should start on the first&lt;br /&gt;
match PRIMER2 You have already studied&lt;br /&gt;
match PRIMER3 You finish studying the last page&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PRIMERTURN:&lt;br /&gt;
pause 1&lt;br /&gt;
put turn my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER0:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER1:&lt;br /&gt;
pause 1&lt;br /&gt;
put close my primer&lt;br /&gt;
put open my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER2:&lt;br /&gt;
pause 1&lt;br /&gt;
put turn my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER3:&lt;br /&gt;
pause 1&lt;br /&gt;
put close my primer&lt;br /&gt;
put put my primer in my %2&lt;br /&gt;
goto GETTOOLS&lt;br /&gt;
&lt;br /&gt;
GETTOOLS:&lt;br /&gt;
pause 1&lt;br /&gt;
put get my shaper&lt;br /&gt;
put get my block&lt;br /&gt;
goto SHAPE&lt;br /&gt;
&lt;br /&gt;
SHAPE:&lt;br /&gt;
pause 1&lt;br /&gt;
put shape block to %1&lt;br /&gt;
match SHAPE Roundtime&lt;br /&gt;
match SHAPE You smile with satisfaction as you continue&lt;br /&gt;
match SHAPE With heavy strokes, &lt;br /&gt;
match SHAPE Trying your best,&lt;br /&gt;
match SHAPE block taking shape in the form of&lt;br /&gt;
match SHAPE Pursing your lips&lt;br /&gt;
match SHAPE You focus&lt;br /&gt;
match BEADDONE Your spirit soars with pride&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
BEADDONE:&lt;br /&gt;
pause 1&lt;br /&gt;
put put bead in my %3&lt;br /&gt;
put put my shaper in my %2&lt;br /&gt;
echo *****************************************&lt;br /&gt;
echo *           You have completed your bead.                 *&lt;br /&gt;
echo *****************************************&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>MYERSV</name></author>
	</entry>
	<entry>
		<id>https://elanthipedia.play.net/index.php?title=Necimar%27s_Bead_Scripts&amp;diff=496181</id>
		<title>Necimar&#039;s Bead Scripts</title>
		<link rel="alternate" type="text/html" href="https://elanthipedia.play.net/index.php?title=Necimar%27s_Bead_Scripts&amp;diff=496181"/>
		<updated>2018-11-17T21:41:17Z</updated>

		<summary type="html">&lt;p&gt;MYERSV: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Script&lt;br /&gt;
|fe=Stormfront&lt;br /&gt;
|cat=Crafting, Cleric&lt;br /&gt;
|auth=[[Necimar]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Collection of three simplistic scripts used by Clerics to find Limbs, Carve them into Blocks, and then shape the blocks into Beads.&lt;br /&gt;
Each script requires that the user have nothing in their hands, except for the final carving script.  You may use a primer if needed.&lt;br /&gt;
&lt;br /&gt;
The scripts are:&lt;br /&gt;
&lt;br /&gt;
  .forlimb (container to store the limbs)&lt;br /&gt;
  .block (holy water container) (limb/block container) (carving knife container)&lt;br /&gt;
  .bead (animal) (tool location) (where to put the beads when done)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Script==&lt;br /&gt;
 1 - FORLIMB&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script can be used to forage a specific common/uncommon/rare limb and store it in a container.&lt;br /&gt;
#Scroll down and UNCOMMENT the lines containing the wood type you want to keep.&lt;br /&gt;
#It is the first of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match GETLIMB You glance down at your empty hands.&lt;br /&gt;
match NOTEMPTY You glance down to see&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
GETLIMB:&lt;br /&gt;
put forage limb&lt;br /&gt;
match CLUTTERED The room is too cluttered&lt;br /&gt;
#match STORE You manage to find a ash limb.&lt;br /&gt;
#match STORE You manage to find a aspen limb.&lt;br /&gt;
#match STORE You manage to find a balsa limb.&lt;br /&gt;
#match STORE You manage to find a bamboo limb.&lt;br /&gt;
#match STORE You manage to find a birch limb.&lt;br /&gt;
#match STORE You manage to find a cedar limb.&lt;br /&gt;
#match STORE You manage to find a fir limb.&lt;br /&gt;
#match STORE You manage to find a mangrove limb.&lt;br /&gt;
#match STORE You manage to find a maple limb.&lt;br /&gt;
#match STORE You manage to find a moabi limb.&lt;br /&gt;
#match STORE You manage to find a oak limb.&lt;br /&gt;
#match STORE You manage to find a pine limb.&lt;br /&gt;
#match STORE You manage to find a sandalwood limb.&lt;br /&gt;
#match STORE You manage to find a spruce limb.&lt;br /&gt;
#match STORE You manage to find a alder limb.&lt;br /&gt;
#match STORE You manage to find a apple limb.&lt;br /&gt;
#match STORE You manage to find a cypress limb.&lt;br /&gt;
#match STORE You manage to find a durian limb.&lt;br /&gt;
#match STORE You manage to find a elm limb.&lt;br /&gt;
#match STORE You manage to find a hemlock limb.&lt;br /&gt;
#match STORE You manage to find a larch limb.&lt;br /&gt;
#match STORE You manage to find a mahogany limb.&lt;br /&gt;
#match STORE You manage to find a teak limb.&lt;br /&gt;
#match STORE You manage to find a walnut limb.&lt;br /&gt;
#match STORE You manage to find a willow limb.&lt;br /&gt;
#match STORE You manage to find a bocote limb.&lt;br /&gt;
#match STORE You manage to find a cherry limb.&lt;br /&gt;
#match STORE You manage to find a ebony limb.&lt;br /&gt;
#match STORE You manage to find a hickory limb.&lt;br /&gt;
#match STORE You manage to find a ironwood limb.&lt;br /&gt;
#match STORE You manage to find a kapok limb.&lt;br /&gt;
#match STORE You manage to find a lelori limb.&lt;br /&gt;
#match STORE You manage to find a ramin limb.&lt;br /&gt;
#match STORE You manage to find a redwood limb.&lt;br /&gt;
#match STORE You manage to find a rosewood limb.&lt;br /&gt;
#match STORE You manage to find a tamarak limb.&lt;br /&gt;
#match STORE You manage to find a yew limb.&lt;br /&gt;
match DROP Roundtime&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
NOTEMPTY:&lt;br /&gt;
echo  EMPTY YOUR HANDS AND RESTART.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
STORE:&lt;br /&gt;
pause 1&lt;br /&gt;
put put my limb in my %1&lt;br /&gt;
goto GETLIMB&lt;br /&gt;
&lt;br /&gt;
DROP:&lt;br /&gt;
pause 1&lt;br /&gt;
put drop my limb&lt;br /&gt;
goto GETLIMB&lt;br /&gt;
&lt;br /&gt;
CLUTTERED:&lt;br /&gt;
echo ***************************************&lt;br /&gt;
echo ******      The room is to cluttered.         ******&lt;br /&gt;
echo ******     Resolve and restart script.        ******&lt;br /&gt;
echo ***************************************&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 2 - BLOCK&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script can be used to carve a Limb into a Block to make Payer Beads.&lt;br /&gt;
#It requires a container with Holy Water in it, a limb, and a carving knife.&lt;br /&gt;
#It is the second of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match GETWATER You glance down at your empty hands.&lt;br /&gt;
match NOTEMPTY You glance down to see&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
NOTEMPTY:&lt;br /&gt;
echo ******   Your hands are NOT empty.  ******&lt;br /&gt;
echo ******      Empty them and restart.      ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOWATER:&lt;br /&gt;
echo ****** You do not have any Holy Water in your %1 ******&lt;br /&gt;
echo ******       Please refill it, and restart the script.        ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOLIMB:&lt;br /&gt;
echo ******   You do not have a limb in your %2      ******&lt;br /&gt;
echo ****** Please get one and restart the script.  ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOCAST:&lt;br /&gt;
waitfor roundtime&lt;br /&gt;
goto BLESS&lt;br /&gt;
&lt;br /&gt;
GETWATER:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my %2&lt;br /&gt;
put get my %1&lt;br /&gt;
put look in my %1&lt;br /&gt;
match GETLIMB you see some holy water.&lt;br /&gt;
match NOWATER There is nothing in there.&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
GETLIMB:&lt;br /&gt;
pause 1&lt;br /&gt;
put get my limb&lt;br /&gt;
match NOLIMB What were you referring to?&lt;br /&gt;
match PREPLIMB limb from inside your&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PREPLIMB:&lt;br /&gt;
pause 1&lt;br /&gt;
put sprinkle %1 on my limb&lt;br /&gt;
put put %1 in %2&lt;br /&gt;
pause 1&lt;br /&gt;
put close %2&lt;br /&gt;
goto BLESS&lt;br /&gt;
&lt;br /&gt;
BLESS:&lt;br /&gt;
put prep bless 6&lt;br /&gt;
match CASTBLESS You feel fully prepared to cast your spell.&lt;br /&gt;
match NOCAST ...wait&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
CASTBLESS:&lt;br /&gt;
put cast my limb&lt;br /&gt;
pause 1&lt;br /&gt;
goto GETKNIFE&lt;br /&gt;
&lt;br /&gt;
GETKNIFE:&lt;br /&gt;
put get my carv knife&lt;br /&gt;
goto CARVE&lt;br /&gt;
&lt;br /&gt;
CARVE:&lt;br /&gt;
put carve my limb with my knife&lt;br /&gt;
match CARVE Roundtime&lt;br /&gt;
match BLOCK leaving you holding a&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
BLOCK:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my %2&lt;br /&gt;
put put my block in my %2&lt;br /&gt;
pause 1&lt;br /&gt;
put put my knife in my %3&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
END:&lt;br /&gt;
echo ALL DONE!!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 3 - Bead&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script assists you in carving a bead from a block in your position.&lt;br /&gt;
#You may do so with or without a primer.&lt;br /&gt;
#Without a primer, empty your hands, and just run the syntax  .BEAD (animal) (tool contaier) (final bead container)&lt;br /&gt;
#With a primer, place the primer in your Right Hand and run the same syntax.&lt;br /&gt;
#This is the third and final of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match PRIMER1 You glance down to see a parchment&lt;br /&gt;
match GETTOOLS You glance down at your empty&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PRIMER:&lt;br /&gt;
pause 1&lt;br /&gt;
put study my primer&lt;br /&gt;
match PRIMERTURN Roundtime&lt;br /&gt;
match PRIMER0 But the primer is closed!&lt;br /&gt;
match PRIMER1 You should start on the first&lt;br /&gt;
match PRIMER2 You have already studied&lt;br /&gt;
match PRIMER3 You finish studying the last page&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PRIMERTURN:&lt;br /&gt;
pause 1&lt;br /&gt;
put turn my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER0:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER1:&lt;br /&gt;
pause 1&lt;br /&gt;
put close my primer&lt;br /&gt;
put open my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER2:&lt;br /&gt;
pause 1&lt;br /&gt;
put turn my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER3:&lt;br /&gt;
pause 1&lt;br /&gt;
put close my primer&lt;br /&gt;
put put my primer in my %2&lt;br /&gt;
goto GETTOOLS&lt;br /&gt;
&lt;br /&gt;
GETTOOLS:&lt;br /&gt;
pause 1&lt;br /&gt;
put get my shaper&lt;br /&gt;
put get my block&lt;br /&gt;
goto SHAPE&lt;br /&gt;
&lt;br /&gt;
SHAPE:&lt;br /&gt;
pause 1&lt;br /&gt;
put shape block to %1&lt;br /&gt;
match SHAPE Roundtime&lt;br /&gt;
match SHAPE You smile with satisfaction as you continue&lt;br /&gt;
match SHAPE With heavy strokes, &lt;br /&gt;
match SHAPE Trying your best,&lt;br /&gt;
match SHAPE block taking shape in the form of&lt;br /&gt;
match SHAPE Pursing your lips&lt;br /&gt;
match SHAPE You focus&lt;br /&gt;
match BEADDONE Your spirit soars with pride&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
BEADDONE:&lt;br /&gt;
pause 1&lt;br /&gt;
put put bead in my %3&lt;br /&gt;
put put my shaper in my %2&lt;br /&gt;
echo *****************************************&lt;br /&gt;
echo *           You have completed your bead.                 *&lt;br /&gt;
echo *****************************************&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>MYERSV</name></author>
	</entry>
	<entry>
		<id>https://elanthipedia.play.net/index.php?title=Necimar%27s_Bead_Scripts&amp;diff=496180</id>
		<title>Necimar&#039;s Bead Scripts</title>
		<link rel="alternate" type="text/html" href="https://elanthipedia.play.net/index.php?title=Necimar%27s_Bead_Scripts&amp;diff=496180"/>
		<updated>2018-11-17T21:38:53Z</updated>

		<summary type="html">&lt;p&gt;MYERSV: Created page with &amp;quot;{{Script |fe=Stormfront |cat=Crafting, Cleric |auth=Necimar }}   ==Description== Collection of three simplistic scripts used by Clerics to find Limbs, Carve t...&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Script&lt;br /&gt;
|fe=Stormfront&lt;br /&gt;
|cat=Crafting, Cleric&lt;br /&gt;
|auth=[[User:Necimar|Necimar]]&lt;br /&gt;
}}&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Description==&lt;br /&gt;
Collection of three simplistic scripts used by Clerics to find Limbs, Carve them into Blocks, and then shape the blocks into Beads.&lt;br /&gt;
Each script requires that the user have nothing in their hands, except for the final carving script.  You may use a primer if needed.&lt;br /&gt;
&lt;br /&gt;
The scripts are:&lt;br /&gt;
&lt;br /&gt;
  .forlimb (container to store the limbs)&lt;br /&gt;
  .block (holy water container) (limb/block container) (carving knife container)&lt;br /&gt;
  .bead (animal) (tool location) (where to put the beads when done)&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
==Script==&lt;br /&gt;
 1 - FORLIMB&lt;br /&gt;
&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script can be used to forage a specific common/uncommon/rare limb and store it in a container.&lt;br /&gt;
#Scroll down and UNCOMMENT the lines containing the wood type you want to keep.&lt;br /&gt;
#It is the first of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match GETLIMB You glance down at your empty hands.&lt;br /&gt;
match NOTEMPTY You glance down to see&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
GETLIMB:&lt;br /&gt;
put forage limb&lt;br /&gt;
match CLUTTERED The room is too cluttered&lt;br /&gt;
#match STORE You manage to find a ash limb.&lt;br /&gt;
#match STORE You manage to find a aspen limb.&lt;br /&gt;
#match STORE You manage to find a balsa limb.&lt;br /&gt;
#match STORE You manage to find a bamboo limb.&lt;br /&gt;
#match STORE You manage to find a birch limb.&lt;br /&gt;
#match STORE You manage to find a cedar limb.&lt;br /&gt;
#match STORE You manage to find a fir limb.&lt;br /&gt;
#match STORE You manage to find a mangrove limb.&lt;br /&gt;
#match STORE You manage to find a maple limb.&lt;br /&gt;
#match STORE You manage to find a moabi limb.&lt;br /&gt;
#match STORE You manage to find a oak limb.&lt;br /&gt;
#match STORE You manage to find a pine limb.&lt;br /&gt;
#match STORE You manage to find a sandalwood limb.&lt;br /&gt;
#match STORE You manage to find a spruce limb.&lt;br /&gt;
#match STORE You manage to find a alder limb.&lt;br /&gt;
#match STORE You manage to find a apple limb.&lt;br /&gt;
#match STORE You manage to find a cypress limb.&lt;br /&gt;
#match STORE You manage to find a durian limb.&lt;br /&gt;
#match STORE You manage to find a elm limb.&lt;br /&gt;
#match STORE You manage to find a hemlock limb.&lt;br /&gt;
#match STORE You manage to find a larch limb.&lt;br /&gt;
#match STORE You manage to find a mahogany limb.&lt;br /&gt;
#match STORE You manage to find a teak limb.&lt;br /&gt;
#match STORE You manage to find a walnut limb.&lt;br /&gt;
#match STORE You manage to find a willow limb.&lt;br /&gt;
#match STORE You manage to find a bocote limb.&lt;br /&gt;
#match STORE You manage to find a cherry limb.&lt;br /&gt;
#match STORE You manage to find a ebony limb.&lt;br /&gt;
#match STORE You manage to find a hickory limb.&lt;br /&gt;
#match STORE You manage to find a ironwood limb.&lt;br /&gt;
#match STORE You manage to find a kapok limb.&lt;br /&gt;
#match STORE You manage to find a lelori limb.&lt;br /&gt;
#match STORE You manage to find a ramin limb.&lt;br /&gt;
#match STORE You manage to find a redwood limb.&lt;br /&gt;
#match STORE You manage to find a rosewood limb.&lt;br /&gt;
#match STORE You manage to find a tamarak limb.&lt;br /&gt;
#match STORE You manage to find a yew limb.&lt;br /&gt;
match DROP Roundtime&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
NOTEMPTY:&lt;br /&gt;
echo  EMPTY YOUR HANDS AND RESTART.&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
STORE:&lt;br /&gt;
pause 1&lt;br /&gt;
put put my limb in my %1&lt;br /&gt;
goto GETLIMB&lt;br /&gt;
&lt;br /&gt;
DROP:&lt;br /&gt;
pause 1&lt;br /&gt;
put drop my limb&lt;br /&gt;
goto GETLIMB&lt;br /&gt;
&lt;br /&gt;
CLUTTERED:&lt;br /&gt;
echo ***************************************&lt;br /&gt;
echo ******      The room is to cluttered.         ******&lt;br /&gt;
echo ******     Resolve and restart script.        ******&lt;br /&gt;
echo ***************************************&lt;br /&gt;
end&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
 2 - BLOCK&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script can be used to carve a Limb into a Block to make Payer Beads.&lt;br /&gt;
#It requires a container with Holy Water in it, a limb, and a carving knife.&lt;br /&gt;
#It is the second of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match GETWATER You glance down at your empty hands.&lt;br /&gt;
match NOTEMPTY You glance down to see&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
NOTEMPTY:&lt;br /&gt;
echo ******   Your hands are NOT empty.  ******&lt;br /&gt;
echo ******      Empty them and restart.      ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOWATER:&lt;br /&gt;
echo ****** You do not have any Holy Water in your %1 ******&lt;br /&gt;
echo ******       Please refill it, and restart the script.        ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOLIMB:&lt;br /&gt;
echo ******   You do not have a limb in your %2      ******&lt;br /&gt;
echo ****** Please get one and restart the script.  ******&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
NOCAST:&lt;br /&gt;
waitfor roundtime&lt;br /&gt;
goto BLESS&lt;br /&gt;
&lt;br /&gt;
GETWATER:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my %2&lt;br /&gt;
put get my %1&lt;br /&gt;
put look in my %1&lt;br /&gt;
match GETLIMB you see some holy water.&lt;br /&gt;
match NOWATER There is nothing in there.&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
GETLIMB:&lt;br /&gt;
pause 1&lt;br /&gt;
put get my limb&lt;br /&gt;
match NOLIMB What were you referring to?&lt;br /&gt;
match PREPLIMB limb from inside your&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PREPLIMB:&lt;br /&gt;
pause 1&lt;br /&gt;
put sprinkle %1 on my limb&lt;br /&gt;
put put %1 in %2&lt;br /&gt;
pause 1&lt;br /&gt;
put close %2&lt;br /&gt;
goto BLESS&lt;br /&gt;
&lt;br /&gt;
BLESS:&lt;br /&gt;
put prep bless 6&lt;br /&gt;
match CASTBLESS You feel fully prepared to cast your spell.&lt;br /&gt;
match NOCAST ...wait&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
CASTBLESS:&lt;br /&gt;
put cast my limb&lt;br /&gt;
pause 1&lt;br /&gt;
goto GETKNIFE&lt;br /&gt;
&lt;br /&gt;
GETKNIFE:&lt;br /&gt;
put get my carv knife&lt;br /&gt;
goto CARVE&lt;br /&gt;
&lt;br /&gt;
CARVE:&lt;br /&gt;
put carve my limb with my knife&lt;br /&gt;
match CARVE Roundtime&lt;br /&gt;
match BLOCK leaving you holding a&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
BLOCK:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my %2&lt;br /&gt;
put put my block in my %2&lt;br /&gt;
pause 1&lt;br /&gt;
put put my knife in my %3&lt;br /&gt;
goto END&lt;br /&gt;
&lt;br /&gt;
END:&lt;br /&gt;
echo ALL DONE!!&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;br /&gt;
&lt;br /&gt;
 3 - Bead&lt;br /&gt;
&amp;lt;pre&amp;gt;&lt;br /&gt;
#This script assists you in carving a bead from a block in your position.&lt;br /&gt;
#You may do so with or without a primer.&lt;br /&gt;
#Without a primer, empty your hands, and just run the syntax  .BEAD (animal) (tool contaier) (final bead container)&lt;br /&gt;
#With a primer, place the primer in your Right Hand and run the same syntax.&lt;br /&gt;
#This is the third and final of 3 sequential scripts.&lt;br /&gt;
&lt;br /&gt;
Start:&lt;br /&gt;
put glance&lt;br /&gt;
match PRIMER1 You glance down to see a parchment&lt;br /&gt;
match GETTOOLS You glance down at your empty&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PRIMER:&lt;br /&gt;
pause 1&lt;br /&gt;
put study my primer&lt;br /&gt;
match PRIMERTURN Roundtime&lt;br /&gt;
match PRIMER0 But the primer is closed!&lt;br /&gt;
match PRIMER1 You should start on the first&lt;br /&gt;
match PRIMER2 You have already studied&lt;br /&gt;
match PRIMER3 You finish studying the last page&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
PRIMERTURN:&lt;br /&gt;
pause 1&lt;br /&gt;
put turn my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER0:&lt;br /&gt;
pause 1&lt;br /&gt;
put open my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER1:&lt;br /&gt;
pause 1&lt;br /&gt;
put close my primer&lt;br /&gt;
put open my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER2:&lt;br /&gt;
pause 1&lt;br /&gt;
put turn my primer&lt;br /&gt;
goto PRIMER&lt;br /&gt;
&lt;br /&gt;
PRIMER3:&lt;br /&gt;
pause 1&lt;br /&gt;
put close my primer&lt;br /&gt;
put put my primer in my %2&lt;br /&gt;
goto GETTOOLS&lt;br /&gt;
&lt;br /&gt;
GETTOOLS:&lt;br /&gt;
pause 1&lt;br /&gt;
put get my shaper&lt;br /&gt;
put get my block&lt;br /&gt;
goto SHAPE&lt;br /&gt;
&lt;br /&gt;
SHAPE:&lt;br /&gt;
pause 1&lt;br /&gt;
put shape block to %1&lt;br /&gt;
match SHAPE Roundtime&lt;br /&gt;
match SHAPE You smile with satisfaction as you continue&lt;br /&gt;
match SHAPE With heavy strokes, &lt;br /&gt;
match SHAPE Trying your best,&lt;br /&gt;
match SHAPE block taking shape in the form of&lt;br /&gt;
match SHAPE Pursing your lips&lt;br /&gt;
match SHAPE You focus&lt;br /&gt;
match BEADDONE Your spirit soars with pride&lt;br /&gt;
matchwait&lt;br /&gt;
&lt;br /&gt;
&lt;br /&gt;
BEADDONE:&lt;br /&gt;
pause 1&lt;br /&gt;
put put bead in my %3&lt;br /&gt;
put put my shaper in my %2&lt;br /&gt;
echo *****************************************&lt;br /&gt;
echo *           You have completed your bead.                 *&lt;br /&gt;
echo *****************************************&lt;br /&gt;
&amp;lt;/pre&amp;gt;&lt;/div&gt;</summary>
		<author><name>MYERSV</name></author>
	</entry>
	<entry>
		<id>https://elanthipedia.play.net/index.php?title=Necimar&amp;diff=493509</id>
		<title>Necimar</title>
		<link rel="alternate" type="text/html" href="https://elanthipedia.play.net/index.php?title=Necimar&amp;diff=493509"/>
		<updated>2018-10-30T10:42:32Z</updated>

		<summary type="html">&lt;p&gt;MYERSV: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Player character&lt;br /&gt;
|Player Name=Necimar Demonan&lt;br /&gt;
|Status=a&lt;br /&gt;
|Race=Elothean&lt;br /&gt;
|Gender=Male&lt;br /&gt;
|Guild=Cleric&lt;br /&gt;
|Instance=Prime&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-=[ Description ]=-&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
You see Merbanal a Vulo Necimar Demonan, an Elothean Cleric.&lt;br /&gt;
Necimar has an angular face and tilted almond-shaped grey eyes.  His silver-streaked black hair is short and fine, and is worn in a simple, loose style.  He has translucent skin and a brawny build.&lt;br /&gt;
He is very tall for an Elothean.&lt;br /&gt;
He has an eerie illusion of a grinning Elothean skull painted on his face.&lt;br /&gt;
He appears to be middle-aged.&lt;br /&gt;
He has a tattoo of a dark-robed priest kneeling before a dusty altar on his back.&lt;br /&gt;
He is in good shape.&lt;br /&gt;
&lt;br /&gt;
He is holding a large grimoire bound in supple black leather with a silver scorpion clasp in his right hand.&lt;br /&gt;
He is wearing an anloral scorpion pin, a shoulder-slung tackle box carved with the image of an Elothean fighting a fish, a soft black leather fisherman&#039;s tunic with hook and lure straps, a pilgrim&#039;s badge, a small gargoyle-hide shield sealed with protective wax, a darkly enameled bronze badge depicting a priest kneeling amidst corpses, a sturdy silver backpack, some nightmare black leathers, a light lumium plate mask crafted from tempered plates, a lumium ring helm crafted from tempered links, some lumium scale gloves crafted from tempered scales, some steel spiked knuckles with a tempered finish, some steel elbow spikes with a tempered finish, some steel knee spikes with a tempered finish, a lumpy bundle, a black leather sheath with a brass throat and tip, a lapis lazuli lockpick ring, a small steel skinning knife with a leather-wrapped hilt, a simple steel parry stick with a tempered finish, a black satin gem pouch clasped with a silver ruby-eyed scorpion, a jadeite gwethdesuan, a flowing black weathered clerical robe stitched with tiny silver scorpions on the hem, a flowing shadowy black silk cloak bearing a silver scorpion upon the shoulders, a silver cloak pin inlaid with an obsidian scorpion, some black suede boots with tiny scorpion-shaped rubies, a polished obsidian signet ring bearing the crest of the Demonan family, a gold medallion symbolizing dedication to Urrem&#039;tier, an obsidian black scorpion forehead emblem, a scrimshawed ivory pendant hand-etched with the image of a skittering scorpion, an onyx ring inset with a cambrinth scorpion, some onyx prayer beads with a golden scorpion charm, a polished leather belt with a bastard sword and a throwing hammer hanging from it and an ebony silk devotional pouch beaded with tiny ruby scorpions.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-=[ RolePlay ]=-&lt;br /&gt;
*-Necimar was among the first few Clerics brave enough to adventure in the realms.  He took up worship of the much misunderstood God Urrem&#039;tier, even in the face of mockery and disdain by his peers.  For many years he went where his God told him, did what his God asked of him, and consistently kept his faith. &lt;br /&gt;
*-For a brief period of time Necimar held the actual Pre Title of &amp;quot;Hand of Urrem&#039;tier&amp;quot; at which some argued belong to Kraelyst.  Those were reminded that each body has two hands, and while Kraelyst held the title for exerting Urrem&#039;tier&#039;s physical will, it was Necimar whom held it for exerting the spiritual.&lt;br /&gt;
*-He holds a great disdain for those in any position of &amp;quot;Official Power&amp;quot; over others, believing that all Peoples are servants of the Gods and not to other Mortals.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-=[ History ]=-&lt;br /&gt;
*-Necimar was first created during the Beta stage of Dragonrealms and was among the last of the Trailblazers.&lt;br /&gt;
*-He has rerolled one time.&lt;br /&gt;
*-He is the adopted brother to Branwen, and Father of Alisianna and Mahwel.&lt;br /&gt;
*-He was the first Cleric to follow Urrem&#039;tier.&lt;br /&gt;
*-He was mocked for choosing to wear platemail and use 2HE.&lt;br /&gt;
*-Assisted in the Explorations of Leth Deriel and Riverhaven.&lt;br /&gt;
*-He was the 9th Cleric to receive the Resurrection spell, alongside Ivjames and Kharsih.&lt;br /&gt;
*-Moved to Riverhaven for two years. &lt;br /&gt;
*-Married the Empath Athiane. (Alisianna was ICly inducted as child.)[Athiane left months later.]&lt;br /&gt;
*-Moved around with Slaughterangel, Branwen, Wyett, Fenance, Ivjames, and Kharsih to explore the lands.&lt;br /&gt;
*-Became unsatisfied with the disrespect the Gods were shown by Mortals and began to lash out violently against heretics.&lt;br /&gt;
*-Led a small force of Clerics known as the &amp;quot;Clerics of Darkness.&amp;quot;&lt;br /&gt;
*-Married the Empath Damaria(Who ended up walking the starry road.)&lt;br /&gt;
*-Was convinced by Branwen to return to the fold of peace.&lt;br /&gt;
*-Married the Cleric Dianalanthalasa. Divorced 5 months later.&lt;br /&gt;
*-Took an OOC break for just shy of 2 years.&lt;br /&gt;
*-Returned to find many people were gone.&lt;br /&gt;
*-Married the Barbarian Finnae(Who ended up walking the starry road.)&lt;br /&gt;
*-Met and courted Clia. Clia retired from the realms.&lt;br /&gt;
*-Joined the &amp;quot;Oblique&amp;quot; briefly before choosing to disassociate. &lt;br /&gt;
*-Married Clia&#039;s sister Cyiarriah.&lt;br /&gt;
*-Found the &amp;quot;Web Transition&amp;quot; frustrating and moved to Shard.&lt;br /&gt;
*-Fought in the Gorbesh War alongside his wife.&lt;br /&gt;
*-Fought in the Outcast War against Raenilar.&lt;br /&gt;
*-Joined the Zoluren Dragoons under the Co-Commandership of Xixist and Elriic(Unit split into Ulf&#039;hara&#039;s Fist/Dragoons.)&lt;br /&gt;
*-Became a Lieutenant under his wife, Commander Cyiarriah.&lt;br /&gt;
*-Fought off Naarg in the West.&lt;br /&gt;
*-Investigated Mawitherarra.&lt;br /&gt;
*-Donated materials to the construction of the Zoluren Orphanage.&lt;br /&gt;
*-Retired from service when the Infantry was disbanded.&lt;br /&gt;
*-Was an Article Writer for the Hentaraen Newsletter.&lt;br /&gt;
*-Divorced Cyiarriah.&lt;br /&gt;
*-Wandered off into the Wilds for a decade-long OOC sleep.&lt;br /&gt;
*-Returned(2018) to find the world a much different place. Many of his friends and family missing.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>MYERSV</name></author>
	</entry>
	<entry>
		<id>https://elanthipedia.play.net/index.php?title=Necimar&amp;diff=493505</id>
		<title>Necimar</title>
		<link rel="alternate" type="text/html" href="https://elanthipedia.play.net/index.php?title=Necimar&amp;diff=493505"/>
		<updated>2018-10-30T08:51:13Z</updated>

		<summary type="html">&lt;p&gt;MYERSV: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Player character&lt;br /&gt;
|Player Name=Necimar Demonan&lt;br /&gt;
|Status=a&lt;br /&gt;
|Race=Elothean&lt;br /&gt;
|Gender=Male&lt;br /&gt;
|Guild=Cleric&lt;br /&gt;
|Instance=Prime&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-=[ Description ]=-&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
You see Merbanal a Vulo Necimar Demonan, an Elothean Cleric.&lt;br /&gt;
Necimar has an angular face and tilted almond-shaped grey eyes.  His silver-streaked black hair is short and fine, and is worn in a simple, loose style.  He has translucent skin and a brawny build.&lt;br /&gt;
He is very tall for an Elothean.&lt;br /&gt;
He has an eerie illusion of a grinning Elothean skull painted on his face.&lt;br /&gt;
He appears to be middle-aged.&lt;br /&gt;
He has a tattoo of a dark-robed priest kneeling before a dusty altar on his back.&lt;br /&gt;
He is in good shape.&lt;br /&gt;
&lt;br /&gt;
He is holding a large grimoire bound in supple black leather with a silver scorpion clasp in his right hand.&lt;br /&gt;
He is wearing an anloral scorpion pin, a shoulder-slung tackle box carved with the image of an Elothean fighting a fish, a soft black leather fisherman&#039;s tunic with hook and lure straps, a pilgrim&#039;s badge, a small gargoyle-hide shield sealed with protective wax, a darkly enameled bronze badge depicting a priest kneeling amidst corpses, a sturdy silver backpack, some nightmare black leathers, a light lumium plate mask crafted from tempered plates, a lumium ring helm crafted from tempered links, some lumium scale gloves crafted from tempered scales, some steel spiked knuckles with a tempered finish, some steel elbow spikes with a tempered finish, some steel knee spikes with a tempered finish, a lumpy bundle, a black leather sheath with a brass throat and tip, a lapis lazuli lockpick ring, a small steel skinning knife with a leather-wrapped hilt, a simple steel parry stick with a tempered finish, a black satin gem pouch clasped with a silver ruby-eyed scorpion, a jadeite gwethdesuan, a flowing black weathered clerical robe stitched with tiny silver scorpions on the hem, a flowing shadowy black silk cloak bearing a silver scorpion upon the shoulders, a silver cloak pin inlaid with an obsidian scorpion, some black suede boots with tiny scorpion-shaped rubies, a polished obsidian signet ring bearing the crest of the Demonan family, a gold medallion symbolizing dedication to Urrem&#039;tier, an obsidian black scorpion forehead emblem, a scrimshawed ivory pendant hand-etched with the image of a skittering scorpion, an onyx ring inset with a cambrinth scorpion, some onyx prayer beads with a golden scorpion charm, a polished leather belt with a bastard sword and a throwing hammer hanging from it and an ebony silk devotional pouch beaded with tiny ruby scorpions.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-=[ RolePlay ]=-&lt;br /&gt;
*-Necimar was among the first few Clerics brave enough to adventure in the realms.  He took up worship of the much misunderstood God Urrem&#039;tier, even in the face of mockery and disdain by his peers.  For many years he went where his God told him, did what his God asked of him, and consistently kept his faith. &lt;br /&gt;
*-For a brief period of time Necimar held the actual Pre Title of &amp;quot;Hand of Urrem&#039;tier&amp;quot; at which some argued belong to Kraelyst.  Those were reminded that each body has two hands, and while Kraelyst held the title for exerting Urrem&#039;tier&#039;s physical will, it was Necimar whom held it for exerting the spiritual.&lt;br /&gt;
*-He holds a great disdain for those in any position of &amp;quot;Official Power&amp;quot; over others, believing that all Peoples are servants of the Gods and not to other Mortals.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-=[ History ]=-&lt;br /&gt;
*-Necimar was first created during the Beta stage of Dragonrealms and was among the last of the Trailblazers.&lt;br /&gt;
*-He has rerolled one time.&lt;br /&gt;
*-He is the adopted brother to Branwen, and Father of Alisianna and Mahwel.&lt;br /&gt;
*-He was the first Cleric to follow Urrem&#039;tier.&lt;br /&gt;
*-He was mocked for choosing to wear platemail and use 2HE.&lt;br /&gt;
*-Assisted in the Explorations of Leth Deriel and Riverhaven.&lt;br /&gt;
*-He was the 9th Cleric to receive the Resurrection spell, alongside Ivjames and Kharsih.&lt;br /&gt;
*-Moved to Riverhaven for two years. &lt;br /&gt;
*-Married the Empath Athiane. (Alisianna was ICly inducted as child.)[Athiane left months later.]&lt;br /&gt;
*-Moved around with Slaughterangel, Branwen, Wyett, Fenance, Ivjames, and Kharsih to explore the lands.&lt;br /&gt;
*-Became unsatisfied with the disrespect the Gods were shown by Mortals and began to lash out violently against heretics.&lt;br /&gt;
*-Led a small force of Clerics known as the &amp;quot;Clerics of Darkness.&amp;quot;&lt;br /&gt;
*-Married the Empath Damaria(Who ended up walking the starry road.)&lt;br /&gt;
*-Was convinced by Branwen to return to the fold of peace.&lt;br /&gt;
*-Married the Cleric Dianalanthalasa. Divorced 5 months later.&lt;br /&gt;
*-Took an OOC break for just shy of 2 years.&lt;br /&gt;
*-Returned to find many people were gone.&lt;br /&gt;
*-Married the Barbarian Finnae(Who ended up walking the starry road.)&lt;br /&gt;
*-Met and courted Clia. Clia retired from the realms.&lt;br /&gt;
*-Joined the &amp;quot;Oblique&amp;quot; briefly before choosing to disassociate. &lt;br /&gt;
*-Married Clia&#039;s sister Cyiarriah.&lt;br /&gt;
*-Found the &amp;quot;Web Transition&amp;quot; frustrating and moved to Shard.&lt;br /&gt;
*-Fought in the Gorbesh War alongside his wife.&lt;br /&gt;
*-Fought in the Outcast War against Raenilar.&lt;br /&gt;
*-Joined the Zoluren Dragoons under the Co-Commandership of Xixist and Elriic(Unit split into Ulf&#039;hara&#039;s Fist/Dragoons.)&lt;br /&gt;
*-Became a Lieutenant under his wife, Commander Cyiarriah.&lt;br /&gt;
*-Fought off Naarg in the West.&lt;br /&gt;
*-Investigated Mawitherarra.&lt;br /&gt;
*-Donated materials to the construction of the Zoluren Orphanage.&lt;br /&gt;
*-Retired from service when the Infantry was disbanded.&lt;br /&gt;
*-Was an Article Writer for the Herald Newsletter.&lt;br /&gt;
*-Divorced Cyiarriah.&lt;br /&gt;
*-Wandered off into the Wilds for a decade-long OOC sleep.&lt;br /&gt;
*-Returned(2018) to find the world a much different place. Many of his friends and family missing.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>MYERSV</name></author>
	</entry>
	<entry>
		<id>https://elanthipedia.play.net/index.php?title=Necimar&amp;diff=492801</id>
		<title>Necimar</title>
		<link rel="alternate" type="text/html" href="https://elanthipedia.play.net/index.php?title=Necimar&amp;diff=492801"/>
		<updated>2018-10-26T06:08:04Z</updated>

		<summary type="html">&lt;p&gt;MYERSV: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Player character&lt;br /&gt;
|Player Name=Necimar Demonan&lt;br /&gt;
|Status=a&lt;br /&gt;
|Race=Elothean&lt;br /&gt;
|Gender=Male&lt;br /&gt;
|Guild=Cleric&lt;br /&gt;
|Instance=Prime&lt;br /&gt;
}}&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-=[ Description ]=-&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
To be Edited.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-=[ RolePlay ]=-&lt;br /&gt;
*-Necimar was among the first few Clerics brave enough to adventure in the realms.  He took up worship of the much misunderstood God Urrem&#039;tier, even in the face of mockery and disdain by his peers.  For many years he went where his God told him, did what his God asked of him, and consistently kept his faith. &lt;br /&gt;
*-For a brief period of time Necimar held the actual Pre Title of &amp;quot;Hand of Urrem&#039;tier&amp;quot; at which some argued belong to Kraelyst.  Those were reminded that each body has two hands, and while Kraelyst held the title for exerting Urrem&#039;tier&#039;s physical will, it was Necimar whom held it for exerting the spiritual.&lt;br /&gt;
*-He holds a great disdain for those in any position of &amp;quot;Official Power&amp;quot; over others, believing that all Peoples are servants of the Gods and not to other Mortals.&lt;br /&gt;
&amp;lt;br&amp;gt;&lt;br /&gt;
-=[ History ]=-&lt;br /&gt;
*-Necimar was first created during the Beta stage of Dragonrealms and was among the last of the Trailblazers.&lt;br /&gt;
*-He has rerolled one time.&lt;br /&gt;
*-He is the adopted brother to Branwen, and Father of Alisianna and Mahwel.&lt;br /&gt;
*-He was the first Cleric to follow Urrem&#039;tier.&lt;br /&gt;
*-He was mocked for choosing to wear platemail and use 2HE.&lt;br /&gt;
*-Assisted in the Explorations of Leth Deriel and Riverhaven.&lt;br /&gt;
*-He was the 9th Cleric to receive the Resurrection spell, alongside Ivjames and Kharsih.&lt;br /&gt;
*-Moved to Riverhaven for two years. &lt;br /&gt;
*-Married the Empath Athiane. (Alisianna was ICly inducted as child.)[Athiane left months later.]&lt;br /&gt;
*-Moved around with Slaughterangel, Branwen, Wyett, Fenance, Ivjames, and Kharsih to explore the lands.&lt;br /&gt;
*-Became unsatisfied with the disrespect the Gods were shown by Mortals and began to lash out violently against heretics.&lt;br /&gt;
*-Led a small force of Clerics known as the &amp;quot;Clerics of Darkness.&amp;quot;&lt;br /&gt;
*-Married the Empath Damaria(Who ended up walking the starry road.)&lt;br /&gt;
*-Was convinced by Branwen to return to the fold of peace.&lt;br /&gt;
*-Married the Cleric Dianalanthalasa. Divorced 5 months later.&lt;br /&gt;
*-Took an OOC break for just shy of 2 years.&lt;br /&gt;
*-Returned to find many people were gone.&lt;br /&gt;
*-Married the Barbarian Finnae(Who ended up walking the starry road.)&lt;br /&gt;
*-Met and courted Clia. Clia retired from the realms.&lt;br /&gt;
*-Joined the &amp;quot;Oblique&amp;quot; briefly before choosing to disassociate. &lt;br /&gt;
*-Married Clia&#039;s sister Cyiarriah.&lt;br /&gt;
*-Found the &amp;quot;Web Transition&amp;quot; frustrating and moved to Shard.&lt;br /&gt;
*-Fought in the Gorbesh War alongside his wife.&lt;br /&gt;
*-Fought in the Outcast War against Raenilar.&lt;br /&gt;
*-Joined the Zoluren Dragoons under the Co-Commandership of Xixist and Elriic(Unit split into Ulf&#039;hara&#039;s Fist/Dragoons.)&lt;br /&gt;
*-Became a Lieutenant under his wife, Commander Cyiarriah.&lt;br /&gt;
*-Fought off Naarg in the West.&lt;br /&gt;
*-Investigated Mawitherarra.&lt;br /&gt;
*-Donated materials to the construction of the Zoluren Orphanage.&lt;br /&gt;
*-Retired from service when the Infantry was disbanded.&lt;br /&gt;
*-Was an Article Writer for the Herald Newsletter.&lt;br /&gt;
*-Divorced Cyiarriah.&lt;br /&gt;
*-Wandered off into the Wilds for a decade-long OOC sleep.&lt;br /&gt;
*-Returned(2018) to find the world a much different place. Many of his friends and family missing.&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>MYERSV</name></author>
	</entry>
	<entry>
		<id>https://elanthipedia.play.net/index.php?title=Necimar&amp;diff=492800</id>
		<title>Necimar</title>
		<link rel="alternate" type="text/html" href="https://elanthipedia.play.net/index.php?title=Necimar&amp;diff=492800"/>
		<updated>2018-10-26T05:22:10Z</updated>

		<summary type="html">&lt;p&gt;MYERSV: Created page with &amp;quot;{{Player character |Player Name=Necimar Demonan |Status=a |Race=Elothean |Gender=Male |Guild=Cleric |Instance=Prime }} {| class=&amp;quot;wikitable&amp;quot; |-  |}&amp;quot;&lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;{{Player character&lt;br /&gt;
|Player Name=Necimar Demonan&lt;br /&gt;
|Status=a&lt;br /&gt;
|Race=Elothean&lt;br /&gt;
|Gender=Male&lt;br /&gt;
|Guild=Cleric&lt;br /&gt;
|Instance=Prime&lt;br /&gt;
}}&lt;br /&gt;
{| class=&amp;quot;wikitable&amp;quot;&lt;br /&gt;
|-&lt;br /&gt;
&lt;br /&gt;
|}&lt;/div&gt;</summary>
		<author><name>MYERSV</name></author>
	</entry>
	<entry>
		<id>https://elanthipedia.play.net/index.php?title=Trailblazers&amp;diff=492799</id>
		<title>Trailblazers</title>
		<link rel="alternate" type="text/html" href="https://elanthipedia.play.net/index.php?title=Trailblazers&amp;diff=492799"/>
		<updated>2018-10-26T05:13:55Z</updated>

		<summary type="html">&lt;p&gt;MYERSV: &lt;/p&gt;
&lt;hr /&gt;
&lt;div&gt;Around the time of the first festival (well before the [[Gorbesh War]] or the [[Web Migration]]), all of the players who had been involved in the beta testing months (available only on GEnie) were awarded Trailblazer Badges.  The following list should be complete:&lt;br /&gt;
*[[Aazel]]&lt;br /&gt;
*[[Aewyn]]&lt;br /&gt;
*[[Ahira]]&lt;br /&gt;
*[[Aiax]]&lt;br /&gt;
*[[Aivylark]]&lt;br /&gt;
*[[Aleysian]]&lt;br /&gt;
*[[Alfred]]&lt;br /&gt;
*[[Anfindel]]&lt;br /&gt;
*[[Angmar]]&lt;br /&gt;
*[[Anne]]&lt;br /&gt;
*[[Anski]]&lt;br /&gt;
*[[Anwyn]]&lt;br /&gt;
*[[Arden]]&lt;br /&gt;
*[[Argo]]&lt;br /&gt;
*[[Ari]]&lt;br /&gt;
*[[Asarian]]&lt;br /&gt;
*[[Atanamir]]&lt;br /&gt;
*[[Auran]]&lt;br /&gt;
*[[Barthemeau]]&lt;br /&gt;
*[[Belle]]&lt;br /&gt;
*[[Bevan]]&lt;br /&gt;
*[[Bleys]]&lt;br /&gt;
*[[Bragi]]&lt;br /&gt;
*[[Branwen]]&lt;br /&gt;
*[[Bryan]]&lt;br /&gt;
*[[Caelric]]&lt;br /&gt;
*[[Cahir]]&lt;br /&gt;
*[[Calanthe]]&lt;br /&gt;
*[[Callah]]&lt;br /&gt;
*[[Caretaker (character)|Caretaker]]&lt;br /&gt;
*[[Carynn]]&lt;br /&gt;
*[[Cassi]]&lt;br /&gt;
*[[Cheech]]&lt;br /&gt;
*[[Chuan]]&lt;br /&gt;
*[[Claudia]]&lt;br /&gt;
*[[Cloud]]&lt;br /&gt;
*[[Colin]]&lt;br /&gt;
*[[Corey]]&lt;br /&gt;
*[[Crim]]&lt;br /&gt;
*[[Crysmeth]]&lt;br /&gt;
*[[Cygna]]&lt;br /&gt;
*[[Dangelo]]&lt;br /&gt;
*[[Diancecht]]&lt;br /&gt;
*[[Draete]]&lt;br /&gt;
*[[Dreamweaver (character)|Dreamweaver]]&lt;br /&gt;
*[[Duh]]&lt;br /&gt;
*[[Eben]]&lt;br /&gt;
*[[Elex]]&lt;br /&gt;
*[[Elriic]]&lt;br /&gt;
*[[Enegue]]&lt;br /&gt;
*[[Fargo]]&lt;br /&gt;
*[[Flameheart]]&lt;br /&gt;
*[[Gabriel]]&lt;br /&gt;
*[[Ged]]&lt;br /&gt;
*[[Glenlivet]]&lt;br /&gt;
*[[Greywulf]]&lt;br /&gt;
*[[Gweedo]]&lt;br /&gt;
*[[Gyre]]&lt;br /&gt;
*[[Harlin]]&lt;br /&gt;
*[[Havok]]&lt;br /&gt;
*[[Hiro]]&lt;br /&gt;
*[[Hope]]&lt;br /&gt;
*[[Imbrex]]&lt;br /&gt;
*[[Imbrielle]]&lt;br /&gt;
*[[Impalire]]&lt;br /&gt;
*[[Itharr]]&lt;br /&gt;
*[[Jaina]]&lt;br /&gt;
*[[Jakester]]&lt;br /&gt;
*[[Jasmine]]&lt;br /&gt;
*[[Jebadiah]]&lt;br /&gt;
*[[Jet (character)|Jet]]&lt;br /&gt;
*[[Jolinda]]&lt;br /&gt;
*[[Kalidari]]&lt;br /&gt;
*[[Kallistria]]&lt;br /&gt;
*[[Kenner]]&lt;br /&gt;
*[[Kitiara]]&lt;br /&gt;
*[[Kitija]]&lt;br /&gt;
*[[Kolos]]&lt;br /&gt;
*[[Kruass]]&lt;br /&gt;
*[[Kryvar]]&lt;br /&gt;
*[[Lacy]]&lt;br /&gt;
*[[Lain]]&lt;br /&gt;
*[[Lance (character)|Lance]]&lt;br /&gt;
*[[Lathaen]]&lt;br /&gt;
*[[Leo]]&lt;br /&gt;
*[[Lligent]]&lt;br /&gt;
*[[Logan]]&lt;br /&gt;
*[[Lothar]]&lt;br /&gt;
*[[Lotus (character)|Lotus]]&lt;br /&gt;
*[[Luigi]]&lt;br /&gt;
*[[Lynet]]&lt;br /&gt;
*[[Macavity]]&lt;br /&gt;
*[[Magus (character)|Magus]]&lt;br /&gt;
*[[Malleus]]&lt;br /&gt;
*[[Manning]]&lt;br /&gt;
*[[Martee]]&lt;br /&gt;
*[[Maryn]]&lt;br /&gt;
*[[Mazel]]&lt;br /&gt;
*[[Meave]]&lt;br /&gt;
*[[Miranda]]&lt;br /&gt;
*[[Mirelle]]&lt;br /&gt;
*[[Misty]]&lt;br /&gt;
*[[Mithras]]&lt;br /&gt;
*[[Mokikikako]]&lt;br /&gt;
*[[Mordoc]]&lt;br /&gt;
*[[Murmur]]&lt;br /&gt;
*[[Necimar]]&lt;br /&gt;
*[[Nestor]]&lt;br /&gt;
*[[Nexas]]&lt;br /&gt;
*[[Nimue]]&lt;br /&gt;
*[[Norma]]&lt;br /&gt;
*[[Nrakda]]&lt;br /&gt;
*[[Nyctasia]]&lt;br /&gt;
*[[Ohr]]&lt;br /&gt;
*[[Outlaw (character)|Outlaw]]&lt;br /&gt;
*[[Phangor]]&lt;br /&gt;
*[[Phelgi]]&lt;br /&gt;
*[[Pip]]&lt;br /&gt;
*[[Psalter]]&lt;br /&gt;
*[[Rain]]&lt;br /&gt;
*[[Rand]]&lt;br /&gt;
*[[Ravenstorm]]&lt;br /&gt;
*[[Redtail]]&lt;br /&gt;
*[[Revenge]]&lt;br /&gt;
*[[Rhys]]&lt;br /&gt;
*[[Richard]]&lt;br /&gt;
*[[Rien]]&lt;br /&gt;
*[[Riggles]]&lt;br /&gt;
*[[Sakahr]]&lt;br /&gt;
*[[Salius]]&lt;br /&gt;
*[[Sam]]&lt;br /&gt;
*[[Samantha]]&lt;br /&gt;
*[[Samson]]&lt;br /&gt;
*[[Seregor]]&lt;br /&gt;
*[[Seth]]&lt;br /&gt;
*[[Shadowvixen]]&lt;br /&gt;
*[[Shargs]]&lt;br /&gt;
*[[Shaydrain]]&lt;br /&gt;
*[[Sheshe]]&lt;br /&gt;
*[[Shkal]]&lt;br /&gt;
*[[Slaughterangel]]&lt;br /&gt;
*[[Smahsh]]&lt;br /&gt;
*[[Spartan]]&lt;br /&gt;
*[[Starr]]&lt;br /&gt;
*[[Steph]]&lt;br /&gt;
*[[Stormbird]]&lt;br /&gt;
*[[Stryder]]&lt;br /&gt;
*[[Syress]]&lt;br /&gt;
*[[Suntoucher]]&lt;br /&gt;
*[[Tacit]]&lt;br /&gt;
*[[Tedra]]&lt;br /&gt;
*[[Terin]]&lt;br /&gt;
*[[Theophrastus]]&lt;br /&gt;
*[[Thim]]&lt;br /&gt;
*[[Threads]]&lt;br /&gt;
*[[Thunder]]&lt;br /&gt;
*[[Tim]]&lt;br /&gt;
*[[Trag]]&lt;br /&gt;
*[[Valpor]]&lt;br /&gt;
*[[Vicelly]]&lt;br /&gt;
*[[Whilder]]&lt;br /&gt;
*[[Wildluck]]&lt;br /&gt;
*[[Xavier]]&lt;br /&gt;
*[[Yob]]&lt;br /&gt;
*[[Yuki]]&lt;br /&gt;
*[[Zepath]]&lt;br /&gt;
[[page type is::organization| ]]{{Cat|Organizations}}&lt;/div&gt;</summary>
		<author><name>MYERSV</name></author>
	</entry>
</feed>