Advertisement
Guest User

Astroneer Terrain toggle script

a guest
Feb 15th, 2018
202
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
  1. ;-----------------------------------------------------------------------------------------------------------------------------------------
  2. ;Astroneer Toggle Script By Hellbent
  3. ;Date Written: Feb 13th 2018
  4.  
  5. #SingleInstance,Force
  6. Move_Forward_Slow:
  7.     Send, {Up Down}
  8.     sleep,30
  9.     Send, {Up Up}
  10.     return
  11.    
  12. *Numpad1::
  13.     Send, {Ctrl Down}
  14.     ;Send,{1 Down}   ;I use the "1" key to flatten.
  15.     return
  16.  
  17. /*  ;I have commented this out, If you want to use the auto walk hotkey just remove the comment block.
  18.         ; The speed of the walk is adjustable to walk as fast or slow as you need.
  19. *Numpad2::
  20. *2::
  21.     Walk:=!Walk
  22.     if(Walk)
  23.         {
  24.             SetTimer,Move_Forward_Slow,300
  25.         }
  26.     else   
  27.         {
  28.             SetTimer,Move_Forward_Slow,Off
  29.         }
  30.     return
  31. */
  32.  
  33.    
  34. *Numpad3::
  35.     Send, {LButton Down}
  36.     return
  37.    
  38. *Numpad4::
  39.     Send, {Alt Down}
  40.     return
  41.    
  42. *^Esc::ExitApp     ;Press Control + Esc To Exit the Script
  43. ;-----------------------------------------------------------------------------------------------------------------------------------------
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement