Estou com o seguinte problema, adicionei os retro outfits no meu servidor 8.60, porem apenas os 2 primeiros aparecem no char para trocar.
Ja pesquisei muito e vi algumas coisas relacionadas a newtype.lua
Citarfunction onSay(cid, words, param, channel)
if(param == '') then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires param.")
return true
endlocal t = string.explode(param, ",")
t[1] = tonumber(t[1])
if(not t[1]) then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires numeric param.")
return true
endlocal pid = cid
if(t[2]) then
pid = getPlayerByNameWildcard(t[2])
if(not pid or (isPlayerGhost(pid) and getPlayerGhostAccess(pid) > getPlayerGhostAccess(cid))) then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Player " .. t[2] .. " not found.")
return true
end
endif(t[1] <= 1 or t[1] == 135 or (t[1] > 172 and t[1] < 192) or t[1] > 367) then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Such outfit does not exist.")
return true
endlocal tmp = getCreatureOutfit(pid)
tmp.lookType = t[1]doCreatureChangeOutfit(pid, tmp)
return true
end