mirror of
https://github.com/OTCv8/otclientv8.git
synced 2025-05-16 18:59:20 +02:00
23 lines
388 B
Lua
23 lines
388 B
Lua
-- main tab
|
|
VERSION = "1.1"
|
|
|
|
UI.Label("Config version: " .. VERSION)
|
|
|
|
UI.Separator()
|
|
|
|
|
|
|
|
UI.Separator()
|
|
|
|
UI.Button("Discord", function()
|
|
g_platform.openUrl("https://discord.gg/yhqBE4A")
|
|
end)
|
|
|
|
UI.Button("Forum", function()
|
|
g_platform.openUrl("https://otland.net/forums/otclient.494/")
|
|
end)
|
|
|
|
UI.Button("Help & Tutorials", function()
|
|
g_platform.openUrl("http://bot.otclient.ovh/")
|
|
end)
|