isso e uma configuraçao que tem na maioria das bases que retira o nome shiny dos pokemons
vai em lib/level system.lua
Aperta (CTRL+F) e procura por:
if string.find(tostring(nick), "Shiny") then
ou
if string.find(tostring(getCreatureName(cid)), "Shiny") then
vai ter:
if string.find(tostring(nick), "Shiny") then
nick = tostring(nick):match("Shiny (.*)")
end
OU
if string.find(tostring(getCreatureName(cid)), "Shiny") then
local newName = tostring(getCreatureName(cid)):match("Shiny (.*)")
return newName
end
So excluir e ser feliz