

Pedrohost
Campones-
Total de itens
53 -
Registro em
-
Última visita
Tudo que Pedrohost postou
-
[Encerrado] [Encerrado] Servidor em Linux CentOS
um tópico no fórum postou Pedrohost Tópicos Sem Resposta
Boa tarde, estou com um dedicado em CentOS e gostaria de saber se tem como transformar meu OTserver windows em Linux Se sim, como fazer? Não tenho muita experiencia com OTserver em linux gostaria de ajuda... Hehe Desde já grato! Lembrando que em Windows rodava 100% então acredito que deva rodar em Linux tbm... -
Como Posso Aumentar O Heal Do Exana Mort?? Muito Grato Desde Ja local combat = createCombatObject() setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HEALING) setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false) setCombatParam(combat, COMBAT_PARAM_DISPEL, CONDITION_PARALYZE) setHealingFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 5, 5, 11, 15) function onCastSpell(cid, var) return doCombat(cid, combat, var) end
-
o jeito é olhar one for one.
-
Gostaria De Saber Por Favor Como Verifico Se Um Item Esta Dropando De Algum Monstro. Sem precisar abrir 1 por 1. Vamos lá voces devem saber poxa.
-
Galera Eu Tenho Muita Vontade De Aprender Script Porem Não Consigo Entender Nada Nos Tutoriais Eu Quero Aprender Pois Tenho Muitas Ideias E Estaria Sempre Inovando Aqui No Xtibia Então Por Isso Eu Pesso... Será Que Não Tem Alguma Alma Caridosa Ae Disposta A Me Ensinar Desde O Zero ? Eu Entendo As Coisas Rapidas Torne De Mim Seu Aprendiz Hehehehe !! Algueem ?? Please Se Alguem Tiver Afim Me ADD Msn : Pedro_sbeghen@animalog.com.br
-
Ja tive esta duvida hoje a noite porém testando meu servidor não deu certo. Vou explicar... Quando um player ataca outro a target não sai por mais que ele suma da tela ela fica. O problema é que quando ele volta a Target Continua e ele nao continua atacando... Me mandaram baixar outro servidor mas deu problema ele nao abre meu ot... Eu uso um .exe CMD para ligar o servidor Eu uso Baiak... 8.6 Gostaria de saber como arrumar isto
-
Pois é eu vi que o cara respondeu seu topico cara assim que liberar outro REP + eu te dou tava de atras do download mas no outro post lá era megaupload vlww
-
Pois é eu tenho um ot server Baiak e me deparei com um problema. Por mais que um player esteja do outro lado do map. Se eu o ataquei alguma vez e não ataquei mais nada continuo com target nele. Isso dificulta as war's dos EK's Etc... Ate Mesmo Por Subir Escada E Sair Correndo Pois Morreu E O Target Ativado Não Corre De Atras Help Please ?
-
Ae Galera Seguinte Eu Estava Por Ai E Encontrei Uma Exp Potion Bem Bacana Mas Então Surgiu Um Problema. Quando Um Personagem Morre, Ele Nao Consegue Mais Usar Nenhuma Exp Potion. Vou Mandar O Script Sei Lá, Ele Fica Na Pasta MODS <?xml version="1.0" encoding="UTF-8"?> <mod name="AdvancedExpPotionSystem" enabled="yes" author="MatheusMkalo" forum="XTibia.com"> <!-- Configs and Functions --> <config name="PotionExpConfigs"><![CDATA[ ------ CONFIGURE SEU SCRIPT ------ TRUE ou FALSE configs = { time = 15, ---- TIME IN MINUTES needpa = TRUE, needlvl = {TRUE, level = 8}, costmana = {TRUE, mana = 150}, addrate = 100, -- Exp que vai adicionar em % removeonuse = TRUE } function getTime(s) local n = math.floor(s / 60) s = s - (60 * n) return n, s end CreatureEventChecker = function(event, ...) -- Colex if isCreature(arg[1]) then event(unpack(arg)) end end creatureEvent = function(event, delay, ...) -- Colex addEvent(CreatureEventChecker, delay, event, unpack(arg)) end function getPlayerExtraExpRate(cid) -- By MatheusMkalo return (getPlayerRates(cid)[8]-1)*100 end ]]></config> <!-- exppotion.lua --> <action itemid="7440" event="script"><![CDATA[ domodlib('PotionExpConfigs') if getPlayerStorageValue(cid, 62164) >= 1 then return doPlayerSendCancel(cid, "You are already taking effect from this item.") end if configs.needpa and not isPremium(cid) then return doPlayerSendCancel(cid, "You need to be a premmium account to use this item.") end if configs.needlvl[1] and getPlayerLevel(cid) < configs.needlvl.level then return doPlayerSendCancel(cid, "You need to be level " .. configs.needlvl.level .. " to use this item.") end if configs.costmana[1] then if getCreatureMana(cid) < configs.costmana.mana then return doPlayerSendCancel(cid, "You need " .. configs.costmana.mana .. " mana to use this item.") else doCreatureAddMana(cid, -configs.costmana.mana) end end if configs.removeonuse then doRemoveItem(item.uid, 1) end for i = configs.time*60, 1, -1 do local a = math.floor(i/60) .. ":" .. i - (60 * math.floor(i/60)) if #a < 4 then a = string.sub(a,1,2) .. "0" .. string.sub(a, 3) end if i == configs.time*60 then creatureEvent(doPlayerSendCancel, configs.time*60*1000, cid, "The effect of the exp potion end.") end creatureEvent(doPlayerSendCancel, (configs.time*60-i)*1000, cid, "The effect of the exp potion will end in "..a..".") end doPlayerSetExperienceRate(cid, (1+(configs.addrate/100))+(getPlayerExtraExpRate(cid)/100)) creatureEvent(doPlayerSetExperienceRate, configs.time *60*1000, cid, 1+(getPlayerExtraExpRate(cid)/100-(configs.addrate/100))) doPlayerSendTextMessage(cid, 22, "Agora voce ira receber mais exp ao matar os monstros.") setPlayerStorageValue(cid, 62164, os.time()) creatureEvent(setPlayerStorageValue, configs.time *60*1000, cid, 62164, 0) return TRUE ]]></action> <creaturescript type="login" name="ExpPotion" event="script"><![CDATA[ domodlib('PotionExpConfigs') local time = configs.time if os.time()-getPlayerStorageValue(cid, 62164) < time *60 then doPlayerSetExperienceRate(cid, (1+(configs.addrate/100))+(getPlayerExtraExpRate(cid)/100)) creatureEvent(doPlayerSetExperienceRate, (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) * 1000, cid, 1+(getPlayerExtraExpRate(cid)/100-(configs.addrate/100))) creatureEvent(setPlayerStorageValue, (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) * 1000 , cid, 62164, 0) for i = (time*60-(os.time()-getPlayerStorageValue(cid, 62164))), 1, -1 do local a = math.floor(i/60) .. ":" .. i - (60 * math.floor(i/60)) if #a < 4 then a = string.sub(a,1,2) .. "0" .. string.sub(a, 3) end if i == (time*60-(os.time()-getPlayerStorageValue(cid, 62164))) then creatureEvent(doPlayerSendCancel, (time*60-(os.time()-getPlayerStorageValue(cid, 62164)))*1000, cid, "The effect of the exp potion end.") end creatureEvent(doPlayerSendCancel, ((time*60-(os.time()-getPlayerStorageValue(cid, 62164)))-i)*1000, cid, "The effect of the exp potion will end in "..a..".") end end return TRUE ]]></creaturescript> </mod>
-
Item Ou Potion De Double Exp.
tópico respondeu ao MatheusGlad de Pedrohost em Mods, funções e outros
Cara quando um personagem morre com a exp potion ela buga e não da mais para usar ? Me Ajuda a Resolver? -
Tipo do script: Exp Ring Protocolo (versão do Tibia): 8.6 Servidor utilizado: CMD ~~ tfs ~~ Baiak Nível de experiência: 600x Adicionais/Informações: Seguinte eu consegui colocar o ring em meu OT Server mas ele da debug no mesmo, gostaria que me passassem um script que para voces nunca deu debug As falas do ring ficariam assim Quando Colocar o ring : Agora você tem 50% a mais de experiência. Quando tirar o ring : Você retirou o ring e não tera mais experiência. Quando acabar o tempo do ring : Seu EXP Ring Acabou. Agradeço desde ja Obrigado
-
Cara tipo eu também estou querendo ring de exp mas meu servidor buga :s Pelo que vi o seu não buga entao vou te ajudar e se puder me ajude também é muito simples... Como o ring não soma com o vip é só voce colocar o ring para 1.4 Assim eles vao pensar que estao ganhando 10% Agora ... Se por acaso player free também pode comprar de você os rings ai não serviu de nada minha explicação HEHEHEHE
- 4 respostas
-
- exp ring
- double exp
-
(e 1 mais)
Tags:
-
Responde meu outro topico tb ? Rep + Pra ti
-
Mano não apareceu os escritos nas linhas
-
Para Evitar De Criar 2 Topicos Vou Criar Só Este Com 2 Perguntas 1ª Gostaria de saber qual os heals Normais das potions. Normal de kina etc ... Como podem ver o meu esta bem editado.... local POTIONS = { [8704] = {empty = 7636, splash = 2, health = {50, 100}}, -- small health potion [7618] = {empty = 7636, splash = 2, health = {100, 200}}, -- health potion [7588] = {empty = 7634, splash = 2, health = {200, 400}, level = 50, vocations = {3, 4, 7, 8}, vocStr = "knights and paladins"}, -- strong health potion [7591] = {empty = 7635, splash = 2, health = {500, 700}, level = 80, vocations = {4, 8}, vocStr = "knights"}, -- great health potion [8473] = {empty = 7635, splash = 2, health = {2200, 2800}, level = 130, vocations = {4, 8}, vocStr = "knights"}, -- ultimate health potion [7620] = {empty = 7636, splash = 7, mana = {90, 170}}, -- mana potion [7589] = {empty = 7634, splash = 7, mana = {110, 190}, level = 50, vocations = {1, 2, 3, 5, 6, 7}, vocStr = "sorcerers, druids and paladins"}, -- strong mana potion [7590] = {empty = 7635, splash = 7, mana = {1000, 1800}, level = 80, vocations = {1, 2, 5, 6}, vocStr = "sorcerers and druids"}, -- great mana potion [8472] = {empty = 7635, splash = 3, health = {2000, 2800}, mana = {800, 1000}, level = 80, vocations = {3, 7}, vocStr = "paladins"} -- great spirit potion } 2ª Pergunta, como transformar por exemplo um CLUB em Wand? Obrigado pela resposta
-
Editado Obrigado Vou Postar Aqui Tambem A Nova Profissao <!-- <vocation id="9" name="CCO Sorcerer" description="an CCO sorcerer" needpremium="2" gaincap="10" gainhp="6" gainmana="12" gainhpticks="1" gainhpamount="100" gainmanaticks="1" gainmanaamount="200" manamultiplier="1.1" attackspeed="300" soulmax="300" gainsoulticks="1" fromvoc="1" lessloss="50"> <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/> <skill fist="1.5" club="2.0" sword="2.0" axe="2.0" distance="2.0" shielding="1.5" fishing="1.1" experience="1.0"/> </vocation> <vocation id="10" name="CCO Druid" description="an CCO Druid" needpremium="2" gaincap="10" gainhp="6" gainmana="12" gainhpticks="1" gainhpamount="100" gainmanaticks="1" gainmanaamount="200" manamultiplier="1.1" attackspeed="300" soulmax="300" gainsoulticks="1" fromvoc="2" lessloss="50"> <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/> <skill fist="2.0" club="2.0" sword="2.0" axe="2.0" distance="2.0" shielding="2.0" fishing="1.1" experience="1.0"/> </vocation> <vocation id="11" name="CCO Paladin" description="an CCO Paladin" needpremium="2" gaincap="20" gainhp="8" gainmana="10" gainhpticks="1" gainhpamount="200" gainmanaticks="1" gainmanaamount="100" manamultiplier="2.3" attackspeed="300" soulmax="300" gainsoulticks="1" fromvoc="3" lessloss="50"> <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/> <skill fist="2.0" club="2.0" sword="2.0" axe="2.0" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/> </vocation> <vocation id="12" name="CCO Knight" description="an CCO Knight" needpremium="2" gaincap="25" gainhp="17" gainmana="7" gainhpticks="1" gainhpamount="300" gainmanaticks="1" gainmanaamount="50" manamultiplier="3.4" attackspeed="300" soulmax="200" gainsoulticks="15" fromvoc="4" lessloss="50"> <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/> <skill fist="1.1" club="1.1" sword="1.1" axe="1.1" distance="2.0" shielding="1.1" fishing="1.1" experience="1.0"/> </vocation> --> </vocations> Editado ~~ Eu estava vendo tipo eu ja fiz um teste para por no npc percebi que em cima da nova profissão tem algo meio que assim <!-- Isso faz com que a profissao nao pegue no jhonny?
-
Holá no meu otserver eu tenho a super soft boots, e ela esta bugada provavelmente o motivo dele fechar sozinho seja ela, eu tinha 100 players on dexei computador ligado e caiu server agora estou com apenas 30 , 40 ,50 Gostaria de saber como retirar a super soft boots pois como nao tenho donate nao tenho dedicado e nao posso deixar caindo assim Como retirar a super soft boots?
-
Holá eu tenho aqui comigo um ot server bem bacana eu gostaria de editar também as profissoes encontrei um tutorial na ala tutoriais mas lá só mostra como criar na vocations.xml Indo Direto Ao Asssunto. Gostaria que me ajudassem a como colocar a minha nova profissao em um NPC de promotion semelhante ao Johnny Ai Vai minha profissao caso algo esteja errado <?xml version="1.0" encoding="UTF-8"?> <npc name="Johnny" script="data/npc/scripts/promotion.lua" walkinterval="2000" floorchange="0"> <mana now="800" max="800"/> <health now="200" max="200"/> <look type="133" head="114" body="119" legs="132" feet="114"/> </npc> vocations.xml
-
-1, -50, -1, -80, 5, 35, 33, 7) A Parte Que Eu Destaquei Em Vermelho Muda Ela Pra 7, 5 E Testa Deixe Ela Sempre Abaixo De 15 Pra Não Ficar Dano Muito Alto -1, -50, -1, -80, 5, 35, 33, 7) A Parte Que Eu Destaquei Em Vermelho Muda Ela Pra 7, 5 E Testa Deixe Ela Sempre Abaixo De 15 Pra Não Ficar Dano Muito Alto Vlww Rep +
-
Seguinte, No Meu OT Server Baiak as SD's batem muito gostaria de saber o que fazer para deixar a SD batendo o que ela normalmente bateria com ML e tal pois lvl 80 em monstro os mlk ja arranca 1.2 k por favor me ajudem ~~ Editado ~~
-
dúvida [Encerrado] Duvida Modem Thomson
tópico respondeu ao LjooW de Pedrohost em Tópicos Sem Resposta
Liberou certinho ? Vou passar os passo certinho pra voce conferir isso. 1º Abra o navegador e digite 192.168.0.1 2º Deixe o Login em branco e na senha coloque : admin 3º Vá em Advanced No menu de cima 4º No menu a esquerda va em Forwarding 5º Preencha devidamente assim 1) Local IP Adr 192.168.0. < Aqui você vai ir no cmd e vai digitar ipconfig lá vai aparecer seu ip 192.168.0.10 no meu caso esse .10 voce vai colocar ali depois do 0. 2) Start Port End Port Protocol Enabled 7171 7171 TCP X 3) Start Port End Port Protocol Enabled 7172 7172 TCP X 6º) Agora Vá em port triggers 1) Start Port End Port Start Port End Port Protocol Enabled 7171 7171 7171 7171 TCP X 2) Start Port End Port Start Port End Port Protocol Enabled 7172 7172 7172 7172 TCP X 7º) Pronto as portas do Roteador da NET Virtua estao abertas. Agora simplesmente confirme no seu firewall se liberou a porta 7172 tb.
-
Quem Está Navegando 0 membros estão online
- Nenhum usuário registrado visualizando esta página.