Advertisement
Nevinyrral

Harvie 2 Controller

Apr 10th, 2022
3,283
0
Never
Not a member of Pastebin yet? Sign Up, it unlocks many cool features!
ARM 1.28 KB | None | 0 0
  1. <?xml version="1.0" encoding="utf-8"?>
  2. <InstructionData xmlns:xsd="http://www.w3.org/2001/XMLSchema" xmlns:xsi="http://www.w3.org/2001/XMLSchema-instance">
  3.   <DateTime>132699814472341897</DateTime>
  4.   <GameVersion>0.2.2891.14453</GameVersion>
  5.   <Title>Harvie 2 Controller</Title>
  6.   <Description />
  7.   <Author>Linver</Author>
  8.   <WorkshopFileHandle>0</WorkshopFileHandle>
  9.   <Instructions># Harvie controller
  10. # Do you want Harvie to harvest seeds?
  11. define HARVESTSEEDS 5 # Number to harvest
  12. #----------------------------------------
  13.  
  14. define PLANTSLOT 0
  15. define INPUTSLOT 0
  16.  
  17. s db Setting 1
  18.  
  19. move r10 HARVESTSEEDS
  20. move r11 HARVESTSEEDS
  21.  
  22. start:
  23. alias harvie d0
  24. alias hydroponics d3
  25. alias seeds r10
  26. jal checkHydroponics
  27. alias harvie d1
  28. alias hydroponics d4
  29. alias seeds r11
  30. jal checkHydroponics
  31. sleep 8
  32. j start
  33.  
  34. checkHydroponics:
  35. bdns hydroponics ra
  36. bdns harvie ra
  37. ls r0 hydroponics PLANTSLOT Seeding
  38. bgtz r0 getSeeds
  39. ls r0 hydroponics PLANTSLOT Mature
  40. beq r0 -1 plant
  41. beqz r0 ra
  42. s harvie Harvest 1
  43. j ra
  44.  
  45. plant:
  46. ls r0 harvie INPUTSLOT Quantity
  47. beqz r0 ra
  48. l r0 hydroponics TotalMoles
  49. beqz r0 ra
  50. l r0 db Setting
  51. beqz r0 ra
  52. s harvie Plant 1
  53. move seeds HARVESTSEEDS
  54. j ra
  55.  
  56. getSeeds:
  57. beqz seeds ra
  58. s harvie Harvest 1
  59. sub seeds seeds 1
  60. j ra</Instructions>
  61. </InstructionData>
Advertisement
Add Comment
Please, Sign In to add comment
Advertisement