Ir para conteúdo

caarolina12

Campones
  • Total de itens

    19
  • Registro em

  • Última visita

1 Seguidor

Sobre caarolina12

Informações

  • Forma que conheci o xTibia
    Sites de Busca
  • Sou
    XTibiano

caarolina12's Achievements

  1. É impossível, a versão 8.6 trouxe vários bugs que so existe nela, então se você arrumar os bugs na versão 8.6, na versão 8.57 téra vários bugs. Recomendo só colocar para logar 8.6, aqui está um tutorial. http://www.xtibia.com/forum/topic/137248-passando-um-otserv-para-860/
  2. No TFS 0.4 está 25 e no We Do/Real Server está 26. Tenta mudar para 26 =D
  3. Aquela versão não foi vazada, a TFS liberou no outro fórum. Esses outfits sempre existiram desde a versão 8.1 eu acho. E como a TFS mesmo disse, essa versão é cheia de bugs por isso eles retiraram ela. Só é possível colocar 25 outfits. Pelo menos aqui só funciona 25. Nas sources vai em outfit.h e procura por isso: #define OUTFITS_MAX_NUMBER 25 Mude para: #define OUTFITS_MAX_NUMBER 29 Em data/lib/000-constant.lua procure por: maleOutfits = {128, 129, 130, 131, 132, 133, 134, 143, 144, 145, 146, 151, 152, 153, 154, 251, 268, 273, 278, 289, 325, 328, 335, 367} femaleOutfits = {136, 137, 138, 139, 140, 141, 142, 147, 148, 149, 150, 155, 156, 157, 158, 252, 269, 270, 279, 288, 324, 329, 336, 366} Se não der certo procure por: maleOutfits = {128, 129, 130, 131, 132, 133, 134, 143, 144, 145, 146, 151, 152, 153, 154, 251, 268, 273, 278, 289, 325, 328, 335} femaleOutfits = {136, 137, 138, 139, 140, 141, 142, 147, 148, 149, 150, 155, 156, 157, 158, 252, 269, 270, 279, 288, 324, 329, 336} Mude para: maleOutfits = {128, 129, 130, 131, 132, 133, 134, 143, 144, 145, 146, 151, 152, 153, 154, 194, 251, 253, 254, 255, 268, 264, 273, 278, 289, 325, 328, 335, 367} femaleOutfits = {136, 137, 138, 139, 140, 141, 142, 147, 148, 149, 150, 155, 156, 157, 158, 194, 252, 253, 254, 255, 264, 269, 270, 279, 288, 324, 329, 336, 366} OBS.: É quase certeza que não vai funcionar :S
  4. Eu baixei aqui e veio com formato. Se ai não aparece nome.dll tenta coloca você mesmo a extensão .dll e ligue o server, se não funcionar o problema é com o windows eu acho.
  5. data/xml/vocations.xml Na vocation da second promotion mude: needpremium="0" Para: needpremium="1" O player ser kickado para o templo quando a premium acaba, tem que fazer um script de login na pasta creaturescripts. Não sei fazer scipts, pede para alguém te ajudar.
  6. Tenta usar essas Dll's: http://www.4shared.com/file/226036045/ad2bae56/otdllv14.html Os itens novos, tenta colocar o items.otb do seu map editor no otserv.
  7. Lugar certo! Não aparece nada no distro? edit: lugar ta errado msm rsrs o certo é na área de dúvidas..
  8. Qual versão é seu server? Se for 8.54+ vá em data/creaturescripts/script/login.lua se não tiver o script crie um arquivo chamado login.lua e coloque isso dentro: local config = { loginMessage = getConfigValue('loginMessage'), useFragHandler = getBooleanFromString(getConfigValue('useFragHandler')) } function onLogin(cid) local loss = getConfigValue('deathLostPercent') if(loss ~= nil) then doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10) end local accountManager = getPlayerAccountManager(cid) if(accountManager == MANAGER_NONE) then local lastLogin, str = getPlayerLastLoginSaved(cid), config.loginMessage if(lastLogin > 0) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str) str = "Your last visit was on " .. os.date("%a %b %d %X %Y", lastLogin) .. "." else str = str .. " Please choose your outfit." doPlayerSendOutfitWindow(cid) end doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str) elseif(accountManager == MANAGER_NAMELOCK) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, it appears that your character has been namelocked, what would you like as your new name?") elseif(accountManager == MANAGER_ACCOUNT) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to manage your account and if you want to start over then type 'cancel'.") else doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type 'account' to create an account or type 'recover' to recover an account.") end if(not isPlayerGhost(cid)) then doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT) end registerCreatureEvent(cid, "Mail") registerCreatureEvent(cid, "GuildMotd") registerCreatureEvent(cid, "Idle") if(config.useFragHandler) then registerCreatureEvent(cid, "SkullCheck") end registerCreatureEvent(cid, "ReportBug") registerCreatureEvent(cid, "AdvanceSave") return true end e em data/creaturescripts/creaturescripts.xml adicione esta tag: <event type="login" name="PlayerLogin" event="script" value="login.lua"/> se não for 8.54+, esquece esse script tambem pode ser o account manager.. tem várias possibilidades!
  9. Nome: Wandering Boots Versão testada: 0.3.6pl1 Explicação: Bota que adiciona o addon da mochila do citizen. Créditos: jestemPolakiem data/movements/movements.xml <movevent itemid="7457" slot="feet" override="yes" type="Equip" event="buffer" value="return doPlayerAddOutfit(cid, 136, 1) and doPlayerAddOutfit(cid, 128, 1) and doPlayerSendOutfitWindow(cid)"/> <movevent itemid="7457" slot="feet" override="yes" type="DeEquip" event="buffer" value="return doPlayerRemOutfit(cid, 136, 1) and doPlayerRemOutfit(cid, 128, 1) and doPlayerSendOutfitWindow(cid)"/> data/items/items.xml <item id="7457" override="yes" article="a" name="wandering boots"> <attribute key="description" value="Wandering shoes you add a new addition to the outfit as well as the speed."/> <attribute key="speed" value="40"/> <attribute key="weight" value="800"/> <attribute key="armor" value="2"/> <attribute key="slotType" value="feet"/> </item> Preview Enjoy =)
  10. Queria o script da bota que anda na agua quem ajudar agradeço versão: 8.54x
  11. existe ip changer 8.57 mais asprate ainda não tem =/
  12. que rates você recomenda? mapa grandinho ^^ boa sorte com o servidor =)
  • Quem Está Navegando   0 membros estão online

    • Nenhum usuário registrado visualizando esta página.
×
×
  • Criar Novo...