Seal (script)

From Elanthipedia
Jump to navigation Jump to search
Seal (script)
Category crafting,Outfitting
Front-end StormFront,Wizard,Genie
Author Pfanston


Description

You can find the Tailor guide here Tailoring player guide.

This script will allow you to seal cloth or leather armor or shield. It puts wax on the item then rubs it in and continues this process until the item is completely sealed with wax, which improves its durability. You need wax and a slickstone to seal an item.

This script will run as is in stormfront, wizard, and genie.

Other Tailor Scripts

The Seal.cmd script is part of a group of tailoring scripts as follows:

sew.cmd
spin.cmd
weave.cmd
reinforce.cmd
lighten.cmd
knit.cmd

Instructions

The tailoring book Chapter 1 is used to seal the item. So you will need it and set it to the correct page for this script.

usage : .seal <sealitem> <sealcontainer> <sealbookcontainer>

where <sealitem> is the item to be sealed like gloves, cowl, etc.
<sealcontainer> is where you keep tools and the items to be sealed.
<sealbookcontainer> is where you keep the tailoring book turned to the right page for sealing items. And yes this can be the same as the first container.

Example - .seal tasset bag pack
.seal vest bag pack
.seal cowl bag pack
.seal gloves bag pack
.seal shield bag pack
.seal greaves bag pack

Script

#Seal
#  usage : .seal <sealitem> <sealcontainer> <sealbookcontainer>
#    where <sealitem> is the item to be sealed like gloves, cowl, etc.
#          <sealcontainer> is where you keep tools and the items to be sealed.
#          <sealbookcontainer> is where you keep the tailoring book turned 
#                              to the right page for sealing items.

Start:
  put get tailoring book from my %3
waitfor You get
  put study my book
waitfor Roundtime
  put put my tailoring book in my %3
waitfor You put
  put get %1 from my %2
waitfor You get

Wax:
  pause 1
  put get my wax from my %2
waitfor You get
  pause 1
  put apply my wax to my %1
  match Done You cannot figure out
  match Done material shows improved signs of durability and wear resistance
  match Slickstone Roundtime
matchwait

Slickstone:
  pause 1
  put put my wax in my %2
waitfor You put
  put get my slickstone from my %2
waitfor You get
  put rub my %1 with my slickstone
waitfor Roundtime
  pause 1
  put put my slickstone in my %2
waitfor You put
goto Wax

Done:
  pause 1
  put put my wax in my %2
echo -------------------------------
echo =  One %1 has been sealed.
echo -------------------------------
exit