0% found this document useful (0 votes)
1K views

GT Proxy Base - Lua

This document contains the code for a Growtopia proxy script. It includes commands for displaying a proxy list and information dialog boxes. The script was created by Nubiza#9564 and includes a request not to remove their credit if the code is reused.

Uploaded by

Bahrun Muhid
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
0% found this document useful (0 votes)
1K views

GT Proxy Base - Lua

This document contains the code for a Growtopia proxy script. It includes commands for displaying a proxy list and information dialog boxes. The script was created by Nubiza#9564 and includes a request not to remove their credit if the code is reused.

Uploaded by

Bahrun Muhid
Copyright
© © All Rights Reserved
Available Formats
Download as TXT, PDF, TXT or read online on Scribd
You are on page 1/ 1

-- Growtopia Proxy Lua Base

-- Made By Nubiza#9564
-- https://dsc.gg/nubiza
-- Please don't delete credit!

proxylist = "\nadd_label_with_icon|big|`2Proxy Commands Gazette|left|32|" ..


"\nadd_image_button|banner|interface/large/news_bannerrttex|
bannerlayout|||"..
"\nadd_textbox|`0/proxy `9(Proxy List)|left|2480|"..
"\nadd_textbox|`0/info `9(Information)|left|2480|"..
"\nadd_quick_exit|"..
"\nend_dialog|end|Cancel|Okay|"

info = "\nadd_label_with_icon|big|`2Information|left|32|" ..
"\nadd_textbox|`0Credit :)|left|2480|"..
"\nadd_textbox|`9- Nubiza (Gt Proxy Base)|left|2480|"..
"\nadd_textbox|`2*Note : `0If u want re-code this don't delete the
credit :)|left|2480|"..
"\nadd_quick_exit|"..
"\nend_dialog|end|Cancel|Okay|"

LogToConsole("`9[Running Proxy] `2Base Proxy by `0Nubiza#9564")


nubizaproxy = "`7[`2NubizaProxy`7]`9 "

----------------------------------------
-- Start The Proxy
----------------------------------------
function on_sendpacket(type, packet)
inputt = "action|input\n|text|"
function log(str)
LogToConsole(nubizaproxy .. str)
end
----------------------------------------
-- Proxy Commands
----------------------------------------
if packet:find(inputt .. "/proxy") then
var = {}
var.v0 = "OnDialogRequest"
var.v1 = proxylist
SendVariant (var);
log("Proxy List")
end

if packet:find(inputt .. "/info") then


var = {}
var.v0 = "OnDialogRequest"
var.v1 = info
SendVariant (var);
log("Information")
end

----------------------------------------
-- End Of Proxy Commands
----------------------------------------
end
AddHook (on_sendpacket, "OnSendPacket")

You might also like