Me fale qual sistema vip você usa... de preferência coloque o tópico dele.
Si ajudar tá aí, única coisa que não consegui é colocar no mesmo script pra você ver seu próprio skill.
-- By Beyond Sky / Xapinhal
function onSay(cid, words, param, channel)
if(param == '') then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Este comando requer o nome do alvo.")
return true
end
local pid = getPlayerByNameWildcard(param)
if(not pid or (isPlayerGhost(pid) and getPlayerGhostAccess(pid) > getPlayerGhostAccess(cid))) then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Jogador " .. param .. " não encontrado.")
return true
end
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "".. getCreatureName(pid) ..", skill club ".. getPlayerSkillLevel(pid, SKILL_CLUB) ..".")
return true
end