mirror of
https://github.com/OTCv8/otclientv8.git
synced 2025-05-04 04:59:19 +02:00
23 lines
369 B
Lua
23 lines
369 B
Lua
-- main tab
|
|
VERSION = "1.3"
|
|
|
|
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("http://otclient.net/")
|
|
end)
|
|
|
|
UI.Button("Help & Tutorials", function()
|
|
g_platform.openUrl("http://bot.otclient.ovh/")
|
|
end)
|