MechLore (script): Difference between revisions

From Elanthipedia
Jump to navigation Jump to search
(Created page with "{{Script |cat=training |fe=StormFront |auth=Seped }} <p> A Script for training mechanical lore. Braids until your current skill starts failing and then pulls a...")
 
(Added check so the script ends when mind locked)
Line 2: Line 2:
|cat=training
|cat=training
|fe=StormFront
|fe=StormFront
|auth=[[User:Seped|Seped]]
|auth=[[User:Seped|Seped]], [[User:Sheltim|Sheltim]]
}}
}}


Line 12: Line 12:


#%1 container to place completed ropes in, otherwise drops them on the ground
#%1 container to place completed ropes in, otherwise drops them on the ground

CHECK_IF_DONE:
match FORAGE EXP HELP
match DONE mind lock
put exp mechanical lore
matchwait


FORAGE:
FORAGE:
Line 20: Line 26:


BRAID:
BRAID:

MATCH PULL You fumble around
MATCH PULL You fumble around
MATCH PULL Frustration wells
MATCH PULL Frustration wells
Line 38: Line 43:
put pull my vine
put pull my vine
MATCHWAIT
MATCHWAIT

DROP:
DROP:
pause 1
pause 1
Line 44: Line 50:
put put rope in %1
put put rope in %1
put drop rope
put drop rope
GOTO FORAGE
GOTO CHECK_IF_DONE

DONE:
exit

</pre>
</pre>

Revision as of 11:19, 15 September 2015

MechLore (script)
Category training
Front-end StormFront
Author Seped, Sheltim


A Script for training mechanical lore. Braids until your current skill starts failing and then pulls and drops the rope. If an argument is provided it will dispose of ropes in that object.


#%1 container to place completed ropes in, otherwise drops them on the ground

CHECK_IF_DONE:
match FORAGE EXP HELP
match DONE mind lock
put exp mechanical lore
matchwait

FORAGE:
MATCH BRAID you manage to f
MATCH FORAGE ...wait
put forage vine
MATCHWAIT

BRAID:
MATCH PULL You fumble around
MATCH PULL Frustration wells
MATCH PULL but you aren't sure that you are making progress
MATCH BRAID You carefully splice
MATCH BRAID Roundtime
MATCH BRAID You begin to carefully
MATCH BRAID isn't usable for anything
MATCH FORAGE You need to have more
MATCH BRAID ...wait
put braid my vine
MATCHWAIT

PULL:
MATCH PULL ...wait
MATCH DROP Roundtime
put pull my vine
MATCHWAIT

DROP:
pause 1
put put rope in %1
pause 1
put put rope in %1
put drop rope
GOTO CHECK_IF_DONE

DONE:
exit