Ir para conteúdo
  • 0

Como aumentar o numero de outfits ?


Treevo

Pergunta

Como aumenta o numero maximo de outfits ?? no meu ot no caso tem 400 outfits , eu fiz outras novas mas n sei como aumentar o numero maximo de outfits .. alguem pode me ajudar ?

Link para o comentário
Compartilhar em outros sites

14 respostass a esta questão

Posts Recomendados

  • 0

você quer saber como adiciona novas outfits?

cara para adicionar mais outfits para o player escolher é so alterar no xml (data/XML/outfit.xml) vai estar lá premium = "yes" você coloca "no" assim os players normais poderam escolher mais outfits

agora para add novas é so por a outfit no client e depois no xml!

Link para o comentário
Compartilhar em outros sites

  • 0

Pasta do seu ot/data/talkacations/scripts/newtype

 

Apaga tudo oque tem nele e ponha isso

 

 

tion onSay(cid, words, param, channel)
if(param == '') then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires param.")
return true
end
 
local 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
end
 
local 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
end
 
if(t[1] <= 1 or t[1] == 135 or (t[1] > 160 and t[1] < 192) or t[1] > 520) then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Such outfit does not exist.")
return true
end
 
local tmp = getCreatureOutfit(pid)
tmp.lookType = t[1]
 
doCreatureChangeOutfit(pid, tmp)
return true
end
Link para o comentário
Compartilhar em outros sites

  • 0

cara n e isso , olha eu criei novas outfits e botei no client, ai eu queria saber como aumenta o numero de outfits para elas aparecerem no /newtype, por que o numero maximo e 400, portanto n tem como mais colocar ..

 

 

12:50 /newtype 401
12:50 Such outfit does not exist. << olha
Editado por Treevo
Link para o comentário
Compartilhar em outros sites

  • 0

Tenta esse:

 

 

 

function onSay(cid, words, param, channel)
if(param == '') then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command requires param.")
return true
end
local 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
end
local 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
end
if(t[1] <= 1 or t[1] == 135 or (t[1] > 160 and t[1] < 192) or t[1] > 351) then
doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Such outfit does not exist.")
return true
end
local tmp = getCreatureOutfit(pid)
tmp.lookType = t[1]
doCreatureChangeOutfit(pid, tmp)
return true
end

Link para o comentário
Compartilhar em outros sites

×
×
  • Criar Novo...