YASSE Climbing (script): Difference between revisions

From Elanthipedia
Jump to navigation Jump to search
m (Created page with 'Simple climbing script for YASSE. Find an object you can practice climb and run script as <name> <climbing object> <humming level> <pre> set predefined on counter set 0 put hum…')
 
mNo edit summary
Line 30: Line 30:
boxmessage You climbed %1 %c times to get to %report/34.
boxmessage You climbed %1 %c times to get to %report/34.
</pre>
</pre>
[[Category:Scripts]]

Revision as of 13:58, 12 March 2011

Simple climbing script for YASSE.

Find an object you can practice climb and run script as <name> <climbing object> <humming level>

set predefined on
counter set 0
put hum %2

climbit:
counter inc
put climb practice %1
waitfor take a well-earned break

humit:
pause
put hum %2
goto expcheck

expcheck:
pause
put exp skill climbing
waitfor Overall state of mind
getinfo climbingState 
if %result >= 30 goto report
if %result < 30 
	goto climbit

report:
boxmessage You climbed %1 %c times to get to %report/34.