0% found this document useful (0 votes)
45 views1 page

Lua Script for Clear Island in Bothax

The document contains a script for a game that automates certain actions, specifically targeting tiles with specific background and foreground values. It includes functions to send packets and manipulate game state, as well as a loop that continuously executes the main function 'IkanCommunity'. Additionally, there are messages sent to a chat indicating the script's purpose and a Discord invite link.

Uploaded by

jusmeletup
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
45 views1 page

Lua Script for Clear Island in Bothax

The document contains a script for a game that automates certain actions, specifically targeting tiles with specific background and foreground values. It includes functions to send packets and manipulate game state, as well as a loop that continuously executes the main function 'IkanCommunity'. Additionally, there are messages sent to a chat indicating the script's purpose and a Discord invite link.

Uploaded by

jusmeletup
Copyright
© All Rights Reserved
We take content rights seriously. If you suspect this is your content, claim it here.
Available Formats
Download as TXT, PDF, TXT or read online on Scribd

-- Please dont edit WM , stupid !

-- Join Discord
-- [Link]

local delay = 20000000000000000000

function ikan(x, y, state)


SendPacketRaw(false, {state = state, px = x,py = y, x = x*32, y = y*32})
end
function tampan(x, y, id)
SendPacketRaw(false,{type = 3, value = id, px = x, py = y, x = x*32, y= y*32})
end
function IkanCommunity()
for y = 193, 0, -1 do
for x = 0, 199, 1 do
if (GetTile( x, y).bg == 14) or (GetTile( x, y).bg == 1102) or (GetTile( x, y).fg
== 1104) then
ikan(x, y, 32)
Sleep(delay)
tampan(x, y, 18)
Sleep(delay)
end
end
end
end
EditToggle("ModFly", true)
SendPacket(2, "action|input\n|text|`9Clear Island `2BY : ikanCommunity")
Sleep(2000)
SendPacket(2, "action|input\n|text|`9Script ini `2FREE `0[ Ngejual = `4TOLOL`0]")
Sleep(2000)
while true do
IkanCommunity()
Sleep(500)
end

You might also like