Version 2.6.1

This commit is contained in:
OTCv8
2021-01-18 00:46:05 +01:00
parent 8fa45f387d
commit b938520faf
100 changed files with 1812 additions and 4267 deletions

View File

@@ -0,0 +1,16 @@
local vocation = player:getVocation()
local vocText = ""
if vocation == 1 or vocation == 11 then
vocText = "- EK"
elseif vocation == 2 or vocation == 12 then
vocText = "- RP"
elseif vocation == 3 or vocation == 13 then
vocText = "- MS"
elseif vocation == 4 or vocation == 14 then
vocText = "- ED"
end
macro(10000, function()
g_window.setTitle("Tibia - " .. player:getName() .. " - " .. lvl() .. "lvl " .. vocText)
end, batTab)