Shapeshaft (script)

From Elanthipedia
Revision as of 06:20, 2 September 2015 by LAWREYJRJ7 (talk | contribs) (Created page with "{{Script |cat=crafting |fe=StormFront, Wizard, Genie, |auth=Pfanston }} ==Description== This script assumes you have some lumber to turn into shafts in t...")
(diff) ← Older revision | Latest revision (diff) | Newer revision → (diff)
Jump to navigation Jump to search
Shapeshaft (script)
Category crafting
Front-end StormFront,Wizard,Genie
Author Pfanston


Description

This script assumes you have some lumber to turn into shafts in the container that you keep your tools in. Only have as much in one stack of lumber as you want to turn into shafts. Right now it does not appear you need the shaping book to make shafts. I will not set up anything to stamp shafts if they can be stamped.

Note this script is set up for stormfront, wizard and genie. I have run it in all 3 front ends.

In the script I tend to put items in containers. But you can easily use stow left and stow right if your store help variables are set up I have the stow lefts and rights in here but they are commented out for the lines I tend to use. This script will also use all the lumber you have in your container1 so if you don't want it all turned into shafts don't put it all in the container1.

Instructions

parameters are .shapeshaft <container1>

example .shapeshaft bag

Step 1 - Get shaper fron container, get lumber from container, shape lumber into shaft.
Step 2 - put shaper away, All shafts are done.

To run type .shapeshaft bag


The only tool required to make shafts for arrows is a shaper. Your <container1> must be where you keep the tool and the lumber. Remember one thing in making shafts. Your shafts will be perfect if the lumber you use has a workability number that when you make the shafts they end up masterfully created. Second each shaft will handle 5 arrows. So if you use 20 count of lumber you will make enough shafts to handle the making of 100 arrows. I dont recommend having your lumber larger than 20 count for this. Even that may too heavy for younger folks. Do what you can put in the container and hold it. If you cant hold it. Mark my lumber at x pieces, get your scissors out, and cut lumber with my scissors. That will reduce the amount of Lumber used.

Script

<prep># example .shapeshaft bag

  1. This script assumes you have some lumber to turn into shafts in the container
  2. that you keep your tools in. Only have as much in one stack of lumber as you want
  3. to turn into shafts. Right now it does not appear you need the shaping book to make
  4. shafts. I will not set up anything to stamp shafts if they can be stamped.
  5. Step 1 - Get shaper fron container, get lumber from container,
  6. shape lumber into shaft.
  7. Step 2 - put shaper away, All shafts are done.
  8. To run type .shapeshaft bag
  9. The only tool required to make shafts for arrows is a shaper. Your <container1>
  10. must be where you keep the tool and the lumber. Remember one thing in making
  11. shafts. Your shafts will be perfect if the lumber you use has a workability number
  12. that when you make the shafts they end up masterfully created. Second each shaft
  13. will handle 5 arrows. So if you use 20 count of lumber you will make enough shafts
  14. to handle the making of 100 arrows. I dont recommend having your lumber larger than
  15. 20 count for this. Even that may too heavy for younger folks. Do what you can put
  16. in the container and hold. If you cant hold it. Mark my lumber at x pieces, get
  17. your scissors out, and cut lumber with my scissors. That will reduce the amount of
  18. lumber used.
  19. This script has nothing special in it, so it should work in the wizard front end,
  20. stormfront, and genie. In the script I tend to put items in containers. But you
  21. can easily use stow left and stow right if your store help variables are set up
  22. I have the stow lefts and rights in here but they are commented out for the lines
  23. I tend to use. This script will also use all the lumber you have in your container1
  24. so if you dont want it all turned into shafts dont put it all in the container1.

Start:

 put glance
 match tool You glance down at your empty hands
 match stowboth You glance down to see

matchwait

tool:

 pause 1
 put get my shaper from my %1
 match shaftend1 What were you referring to?
 match shapeshaft You get
 match tool ...wait

matchwait

shapeshaft:

 pause 1
 put get my lumb from my %1
 match shaftend2 What were you referring to?
 match shapeshaft2 You get
 match shapeshaft ...wait

matchwait

shapeshaft2:

 pause 1
 put shape my lumber into shaft
 match stowleft Roundtime
 match shapeshaft2 ...wait

matchwait

stowleft:

 pause 1
  1. put stow left
 put put my shafts in my %1
 match shaftend2 What were you referring to?
 match shapeshaft You put
 match stowleft ...wait

matchwait

stowboth:

 pause .5
 put stow left
 pause .5
 put stow right
 pause .5

goto start

shaftend1:

 pause 1
 echo *** NO SHAPER TOOL IN %1 ***

exit

shaftend2:

 pause 1
  1. put stow right
 put put my shaper in my %1

waitfor You put

 pause .5
 echo *** OUT OF LUMBER ***

exit