Ir para conteúdo

ITALOx

Membro
  • Registro em

  • Última visita

Solutions

  1. ITALOx's post in (Resolvido)[Pedido] Site Mordernn acc 8.60 TFS 0.4 was marked as the answer   
  2. ITALOx's post in (Resolvido)[Modem AAC] Erro no site ao colocar "team" was marked as the answer   
    Tópico resolvido a muito tempo, caso alguém queira o PHP para colocar em Modern AAC, esta aqui:
     
     
  3. ITALOx's post in (Resolvido)Ajuda, problema em colocar o ip no client was marked as the answer   
    Baixe o resource hacker pelo esse link : http://www.angusj.com/resourcehacker/#download
     
    ai você poderá modificar o icon do seu client. 
     
    E aqui você poderá baixar o pic editor para mudar a imagem do client.
     
     
     
  4. ITALOx's post in (Resolvido)Duvida sobre spells. was marked as the answer   
    Tópico resolvido a muito tempo, mas, para alguns que ainda não saiba.
     
    aonde tem o nome "ck3" mude para "ck4" ou "df4" você modifica como quiser.
    no "ck1" também.
     
    é isto, mudando isso, você mudará o effect.
  5. ITALOx's post in (Resolvido)Deixa Fundo Transparente was marked as the answer   
  6. ITALOx's post in (Resolvido)(RESOLVIDO)(BUG SHOP SYS) MODERN ACC // ERRO FORGOTTEN was marked as the answer   
    gifts.rarshop.rar
    Site /\
     
    \/ 
     
    Globalevents.xml
     
     
    <!-- Shop --> <globalevent name="Shop" interval="10000" event="script" value="shop.lua"/> data/globalevents/scripts
     
    shop.lua
  7. ITALOx's post in (Resolvido)Ajuda com o Remere's was marked as the answer   
    Aperta em Shift+I
    Ou vai em View> e procura por Show Ingame Box
  8. ITALOx's post in (Resolvido)EVENTO SNOWBALL WAR was marked as the answer   
    Mano, faz 2 horas que acabei de arrumar ele, HAHAHA.
     
    você tem que modificar aqui:
     
    SBW_TP = {x = 655, y = 407, z = 7} -- local onde teleport sera criado (entrada de jogadores)  
    \/ aqui você modifica a posição de local do evento, que é em cima. 
    SBW_TPGO = {x = 1170, y = 744, z = 6} -- local onde teleport vai levar (saida de jogadores)  
  9. ITALOx's post in (Resolvido)[HELP] Extender Tibia.spr e Tibia.dat Versao 8.60 was marked as the answer   
    Eu tenho client extendido me chama discord Italo#6122
  10. ITALOx's post in (Resolvido)Items was marked as the answer   
    Tente esse aqui.
     
    function onSay(cid, words, param, channel) if(param == '') then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Command param required.") return true end local t = string.explode(param, ",") local ret = RETURNVALUE_NOERROR local pos = getCreaturePosition(cid) local id = tonumber(t[1]) if(not id) then errors(false) id = getItemIdByName(t[1]) errors(true) if(not id) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Item with such name does not exists.") return true end end local amount = 100 if(t[2]) then amount = t[2] end local item = doCreateItemEx(id, amount) if(t[3] and getBooleanFromString(t[3])) then if(t[4] and getBooleanFromString(t[4])) then pos = getCreatureLookPosition(cid) end ret = doTileAddItemEx(pos, item) else ret = doPlayerAddItemEx(cid, item, true) end if(ret ~= RETURNVALUE_NOERROR) then doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_BLUE, "Couldn't add item: " .. t[1]) return true end doDecayItem(item) if(not isPlayerGhost(cid)) then doSendMagicEffect(pos, CONST_ME_MAGIC_RED) end return true end  
     
     
     
  11. ITALOx's post in (Resolvido)Bless não funciona was marked as the answer   
    deathLostPercent = 7  
    coloca assim.
     
    depois procure por "bless" e coloque isso;
     
    blessingOnlyPremium = true blessingReductionBase = 30 blessingReductionDecreament = 5 eachBlessReduction = 10  
  12. ITALOx's post in (Resolvido)Nova .Spr Doors Abrir e Fecha was marked as the answer   
    Você adicionou nos actions?
  13. ITALOx's post in (Resolvido)ITEM NAO FUNCIONA was marked as the answer   
    Se for distancia, vai na pasta do servidor/data/weapons/scripts
     
    Cria um arquivo lua com os nomes.
    Exemplo:
    royal crossbow.lua
    local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_BLOCKARMOR, 1) setCombatParam(combat, COMBAT_PARAM_BLOCKSHIELD, 1) setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_PHYSICALDAMAGE) setCombatFormula(combat, COMBAT_FORMULA_SKILL, 1, 0, 1, 0) function onUseWeapon(cid, var) local position1 = {x=getThingPosition(getCreatureTarget(cid)).x+1, y=getThingPosition(getCreatureTarget(cid)).y+1, z=getThingPosition(getCreatureTarget(cid)).z} doSendMagicEffect(position1, 61) -- mude o efeito. return doCombat(cid, combat, var) end  
    Depois vai em weapons.xml e adiciona isso:
    mude o id e coloque o id da arma.
     
    <melee id="13666" event="script" value="royal crossbow.lua"/>  
    Pronto, qualquer coisa fala aqui.
  14. ITALOx's post in (Resolvido)Mensagem em vermelho no char e itens iniciais ao sair de rook was marked as the answer   
    <?xml version="1.0" encoding="UTF-8"?> <mod name="First Items" version="1.0" author="Dener Diegoli" contact="[email protected]" enabled="yes">     <config name="firstitems_config"><![CDATA[         config = {             storage = 30001,             items = {2050, 2398, 2632} -- aqui você adiciona qualquer item, só colocar virgula e o numero, 2632 é um exemplo, você adiciona qualquer coisa, e testa.         }     ]]></config>     <event type="login" name="FirstItems" event="buffer"><![CDATA[         domodlib('firstitems_config')         if(getPlayerStorageValue(cid, config.storage) > 0) then             return         end         for _, id in ipairs(config.items) do             doPlayerAddItem(cid, id, 1)         end         if(getPlayerSex(cid) == PLAYERSEX_FEMALE) then             doPlayerAddItem(cid, 2651, 1)         else             doPlayerAddItem(cid, 2650, 1)         else             doPlayerAddItem(cid, 2632, 1) -- mude aqui          end         doAddContainerItem(doPlayerAddItem(cid, 1987, 1), 2674, 1), 2632, 1) -- e aqui também         setPlayerStorageValue(cid, config.storage, 1)     ]]></event> </mod>  
  15. ITALOx's post in (Resolvido)(Resolvido) Buff que ao ser usado perde mana por segundo was marked as the answer   
    Tópicos resolvido não poderão ser removido pelo o dono, só MODERADOR ou ADMINISTRADOR do fórum pode fazer isso.

Informação Importante

Confirmação de Termo