Advertisement
Guest User

Untitled

a guest
Aug 21st, 2019
281
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
text 1.42 KB | None | 0 0
  1. MyArray := ["_", "_", "_", "_", "_", "_", "_", "_", "_", "_", "_", "_", "┏", "━", "━", "━", "━", "━", "┓", "_", "_", "_", "_", "_", "_", "_", "_", "┏", "━", "━", "┓", "_", "_", "_", "_", "_", "_", "_", "_", "_", "_", "_", "┏", "━"]
  2. MyArray2 := ["_", "_", "_", "_", "_", "_", "_", "_", "_", "_", "_", "_", "┏", "━", "━", "━", "━", "━", "┓", "_", "_", "_", "_", "_", "_", "_", "_", "┏", "━", "━", "┓", "_", "_", "_", "_", "_", "_", "_", "_", "_", "_", "_", "┏", "━"]
  3.  
  4. Count := 2
  5.  
  6. Loop
  7. {
  8. ArrayCount := 55
  9. ArrayIndex := 0
  10. Character := 1
  11.  
  12. if GetKeyState("F2")
  13. {
  14. Send {Up}
  15. Sleep, 100
  16. Send ^a
  17. Sleep, 100
  18.  
  19. Loop %ArrayCount%
  20. {
  21.  
  22. ArrayCount -= 1
  23. ArrayIndex += 1
  24.  
  25. if (Character = 1)
  26. {
  27. MyArray[Count + 0] := MyArray2[Count + 0]
  28. MyArray[Count + 1] := "╰"
  29. MyArray[Count + 2] := "("
  30. MyArray[Count + 3] := "°"
  31. MyArray[Count + 4] := "□"
  32. MyArray[Count + 5] := "°"
  33. MyArray[Count + 6] := ")"
  34. MyArray[Count + 7] := "╯"
  35.  
  36. Character = 0
  37. }
  38.  
  39. Send, % MyArray[ArrayIndex]
  40. }
  41.  
  42. Send {Enter}
  43. Sleep, 100
  44.  
  45. Count += 1
  46. }
  47. }
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement