diff --git a/vBot/extras.lua b/vBot/extras.lua index bd1a3fb..668b245 100644 --- a/vBot/extras.lua +++ b/vBot/extras.lua @@ -569,7 +569,7 @@ if true then guild = guild:sub(1,10) -- change to proper (last) values guild = guild.."..." end - local voc + local voc = "" if text:lower():find("sorcerer") then voc = "MS" elseif text:lower():find("druid") then @@ -578,6 +578,8 @@ if true then voc = "EK" elseif text:lower():find("paladin") then voc = "RP" + elseif text:lower():find("monk") then + voc = "EM" end local creature = getCreatureByName(name) if creature then @@ -641,4 +643,4 @@ if true then forceMarked(newCreature) end end) -end \ No newline at end of file +end