Script Example - Rann-Studio/PowerKuy_Lib GitHub Wiki

Find Game Grave + Add In Magplant ( Loop )

local AIO = io.input("/storage/emulated/0/Download/PowerKuy_Lib-1.0.0/All In One.lua"):read("*a")
load(AIO)()

while true do
  find_item{ item_id = 1656 }
  Sleep(1000)

  add_magplant{position = "top"}
  Sleep(1000)
end

Retrieve Magplant + Recycle ( Loop )

local AIO = io.input("/storage/emulated/0/Download/PowerKuy_Lib-1.0.0/All In One.lua"):read("*a")
load(AIO)()

while true do
  retrieve_magplant{position = "top"}
  Sleep(1000)

  recycle_item{item_id = 1656, amount = 250 }
  Sleep(1000)
end

Retrieve Magplant + Drop ( Loop )

local AIO = io.input("/storage/emulated/0/Download/PowerKuy_Lib-1.0.0/All In One.lua"):read("*a")
load(AIO)()

while true do
  retrieve_magplant{position = "top"}
  Sleep(1000)

  drop_item{item_id = 1656, amount = 250 }
  Sleep(5000)
end

Clear World Island

local AIO = io.input("/storage/emulated/0/Download/PowerKuy_Lib-1.0.0/All In One.lua"):read("*a")
load(AIO)()

EditToggle("ModFly", true)
clear_island()

:information_source: Info:
Break all blocks and background from the top left to the top right.
This script will clear the world from the top.

Find Food + Grind (Loop)

local AIO = io.input("/storage/emulated/0/Download/PowerKuy_Lib-1.0.0/All In One.lua"):read("*a")
load(AIO)()

while true do
  find_item{item_id = 880}
  Sleep(300)

  grind_food{position = "left", item_id = 880, amount = 5}
  Sleep(1000)
end