Advertisement
MiraMiraMira

i8_YPos

Dec 13th, 2015
102
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. $${
  2. //Move up one block
  3. #y = %YPOS%+1
  4.  
  5. //Move to certain height
  6. //#y = 100
  7.  
  8. done = false
  9. DO
  10.     #ypos = %YPOS%
  11.     IF(#ypos<#y)
  12.         KEYUP(SNEAK)
  13.         KEYDOWN(JUMP)
  14.     ELSEIF(#ypos>#y)
  15.         KEYUP(JUMP)
  16.         KEYDOWN(SNEAK)
  17.     ELSEIF(#ypos=#y)
  18.         KEYUP(JUMP)
  19.         KEYUP(SNEAK)
  20.         WAIT(300ms)
  21.         #ypos = %YPOS%
  22.         IF(#ypos=#y)
  23.             done = "true"
  24.         ENDIF
  25.     ENDIF
  26. UNTIL(done)
  27. }$$
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement