-
Total de itens
55 -
Registro em
-
Última visita
Tudo que 777779 postou
-
[como Usa] Usando O Blacksmith System By Yunie (com Fotos)
tópico respondeu ao Mesenga de 777779 em NPCs, monsters e raids
Uau Axei o tuto meio grande so que fico bom emuito organizado. Seu Trabalho vale a pena ser visitado. Nota de 0 a 10 ................................................................................ ...................................................... ................................................................................ ............................................................. ...........................................10 Hehe Parabens. fuizzzzzzzzzzzzzz My Guild \/ Devils On The Night Obs:Qm ae tiver o server narutibia ae me passa o link de download ou coloke ele disponivel para download em algum site e plz me passe o link de download,toprecisando muito mesmo -
Codins. Nada pro Matheus e impossivel ou trabalhoso esse Matheus e d+ Ajudamuito agente Esse monster quevc quer logo sera feito e vai ficar Super Rox Abraços
-
Grande Matheus Sempre ajudando a galera. Aconselho para o povo que faz seus pedidos aki e aprovam o post do Matheus para votarem na enquete de deixar o post fixo pra galera. Vtem ae Gnte FLUIZZZZZZZZZZZZZZZZZZZZZZZZZ
-
Gostei do monster Recomendo para ots de xp bem alta Parabens Fuizzzzzzzzzzzz
-
O ruim e que eu nao sei como faz uma fan bar pra mim se eu tivesse eu te add na hora. Flwssss
-
:surprised: :surprised: :surprised: :party: :party: :party: :party: Cara Gostei muito rox mano vc e d+ cara Mano esse topico aki tem que ser fixo mesmo vc e d+++ Flwsssssssssssss
-
Eae Matheus querro fazer mais um pedido de um monster para vc aki vai as infor: Nome do Monstro: Jack Matador Life do Monstro: 6500 Exp do Monstro: 6400 Raça do Monstro: Human Speed do Montro: 400 Visual do Monstro: Sumonner com addon 1,2. Se da para Sumonar ou não:não. Attacks:Mort e SD ! Ele se Heala: Min: 500 - Max: 1000 Maximo e minimo de Dano do Monstro: Min: 70 - Max: 500 Vozes do Montro:Jack Matador Vai te Pegar/Corre se noob otário . Loot do Monstro:20 plantium coins,fire sword,glod armor,15 spears,dragon shield . Quer Ss do Monstro: Sim, Poor favor . Complementos: Red Skull Forever. Essas são as infor conto com vc cara depois eu vejo se fico bom flwssssssssssssss
-
Com certeza uma SS faz falta. E organiza um poukim tambem fora isso ta otimo o topico flwssssssssss
-
[npc] Stone Skin Amulet 5x(cargas) Com Bps
tópico respondeu ao cigarretts de 777779 em NPCs, monsters e raids
Bom eu ainda não testei e concordo com o que o KaKilo disse em organizar seu topico logo estarei testndo e postando aki se ficou bom Abraços Flwsssss -
Bom obrigado pela sujestão Mesenga logo estarei postando a SS da spell Vlws Fuizzzzzzzz
-
Ola Galera Do XTibia Hj trago um novo npc. Eu entrei em varios foruns procurando um npc banker + todos que eu axava não funfava então eu peguei o script de uma aki e vo postar pra vcs. Testado em ot server full global 2.3 Versão:8.4 Vamos lava em data/npcs e crie um arquivo xml com o nome bankman billy e coloque isso dentro <?xml version="1.0"?><npc name="Bankman Billy" script="data/npc/scripts/bank.lua" floorchange="0" walkinterval="4000"> <health now="150" max="150"/> <look type="133" head="10" body="122" legs="19" feet="10"/> <interaction range="3" idletime="30" idleinterval="300" defaultpublic="0"> <!--This will include the bankman interaction, in this way several npc can use the same interaction--> <include file="bankman.xml"/> <interact keywords="hi" focus="1"> <!--These are the alternative keywords--> <keywords>hello</keywords> <response text="Hello. How may I help you |NAME|?"/> </interact> <interact keywords="bye" focus="0"> <!--These are the alternative keywords--> <keywords>farewell</keywords> <response text="It was a pleasure to help you."/> </interact> <!-- <interact event="onBusy"> <response text="One moment please, |NAME|."> <action name="addqueue" value="|PLAYER|"/> </response> </interact> --> <interact event="onIdle"> <response text="Beatiful day is it not |NAME|?" public="1"> <action name="idle" value="1"/> </response> <response> <action name="script"> <![CDATA[ -- The npc will just say this on average once every 4 hours (240 minutes) local interval = 240 * 60 local p = math.random(0, 10000000) local r = (10000000 * idleinterval) / interval --selfSay("r: " .. r .. ", p: " .. p) if(r >= p) then selfSay("Hey " .. name .. " can you help me?") _state.topic = 999 end ]]> </action> <interact keywords="yes" topic="999"> <response text="Ah great, would you mind holding this for me while I use the bathroom?"> <action name="topic" value="-1"/> <interact keywords="yes"> <response> <action name="script"> <![CDATA[ local result = doPlayerAddItem(cid, 2157, 3, 0) if(result == -1) then selfSay("Never mind, I'll have to hold it in until I quit work.") else selfSay("Thanks alot! I'll be right back.") _state.b1 = true end ]]> </action> </response> </interact> </response> <interact keywords="|*|"> <response text="Hmpf."/> </interact> </interact> </response> </interact> <interact event="onPlayerLeave" focus="0"> <response text="It was a pleasure to help you |NAME|."/> <response b1="1" text="Hey hey give back my gold nuggets! POLICE HELP!"/> </interact> <interact keywords="name"> <response text="My name is |NPCNAME|."/> </interact> <interact keywords="job"> <response text="I am a banker, my job is to exchange coins."/> </interact> </interaction> </npc> Depois va em scripts e crie um arquivo .lua com o nome bank e coloque isso dentro local keywordHandler = KeywordHandler:new()local npcHandler = NpcHandler:new(keywordHandler) local stan = 0 local stan_two = 0 local player_pattern = '^[a-zA-Z0-9 -]+$' local number_pattern = '%d' local target_cid = 0 local number_pattern_two = '%d+' local b, e = 0 local count = 0 NpcSystem.parseParameters(npcHandler) function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end function onThink() npcHandler:onThink() end function creatureSayCallback(cid, type, msg) if(not npcHandler:isFocused(cid)) then return FALSE end if getPlayerStorageValue(cid,8996) == -1 then setPlayerStorageValue(cid,8996,0) end if msgcontains(msg, 'deposit') then if string.find(msg, number_pattern) then b, e = string.find(msg, number_pattern_two) count = tonumber(string.sub(msg, b, e)) if getPlayerMoney(cid) >= count then doPlayerRemoveMoney(cid,count) stan = getPlayerStorageValue(cid,8996) + count setPlayerStorageValue(cid,8996,stan) npcHandler:say('Alright, we have added the amount of '..count..' gold to your balance. You can withdraw your money anytime.', cid) local talk_state = 0 else npcHandler:say('You don\'t have so much gold.', cid) local talk_state = 0 end else npcHandler:say('Please tell me how much gold you would like to deposit.', cid) local talk_state = 1 end elseif msgcontains(msg, 'withdraw') then if string.find(msg, number_pattern) then b, e = string.find(msg, number_pattern_two) count = tonumber(string.sub(msg, b, e)) if getPlayerStorageValue(cid,8996) - count >= 0 then stan = getPlayerStorageValue(cid,8996) - count setPlayerStorageValue(cid,8996,stan) doPlayerAddMoney(cid,count) npcHandler:say('Here you are, '..count..' gold. Please let me know if there is something else I can do for you.', cid) local talk_state = 0 else npcHandler:say('There is not enough gold on your account.', cid) local talk_state = 0 end else npcHandler:say('Please tell me how much gold you would like to withdraw.', cid) local talk_state = 2 end elseif msgcontains(msg, 'balance') then if getPlayerStorageValue(cid,8996) == -1 then setPlayerStorageValue(cid,8996,0) end npcHandler:say('Your account balance is ' .. getPlayerStorageValue(cid,8996) .. ' gold.', cid) local talk_state = 0 elseif talk_state == 1 then count = tonumber(string.sub(msg, b, e)) if string.find(msg, number_pattern) then if doPlayerRemoveMoney(cid, msg) then stan = getPlayerStorageValue(cid,8996) + msg setPlayerStorageValue(cid,8996,stan) doPlayerRemoveMoney(cid,msg) npcHandler:say('Alright, we have added the amount of '..count..' gold to your balance. You can withdraw your money anytime.', cid) local talk_state = 0 else npcHandler:say('You don\'t have so much gold.', cid) local talk_state = 0 end else npcHandler:say('Please tell me how much gold you would like to deposit.', cid) local talk_state = 1 end elseif talk_state == 2 then count = tonumber(string.sub(msg, b, e)) stan = getPlayerStorageValue(cid,8996) if string.find(msg, number_pattern) then if getPlayerStorageValue(cid,8996) - msg >= 0 then stan = getPlayerStorageValue(cid,8996) - msg setPlayerStorageValue(cid,8996,stan) doPlayerAddMoney(cid,msg) npcHandler:say('Here you are, '..count..' gold. Please let me know if there is something else I can do for you.', cid) local talk_state = 0 else npcHandler:say('There is not enough gold on your account.', cid) local talk_state = 0 end else npcHandler:say('Please tell me how much gold you would like to deposit.', cid) local talk_state = 2 end return true end end npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback) --npcHandler:setMessage(MESSAGE_FAREWELL, 'Bye, bye. You gold safe at here, |PLAYERNAME|. <snickers>!') npcHandler:addModule(FocusModule:new()) Prontinho agoraum tuto para explicar melhor: TUTO para depositar dinheiro Para depositar dinheiro no banco va ate o npc diga hi,deposit,deposit e a quantidade de grana Tuto para tirar dinheiro Para tirar dinheiro diga hi,withrawn,withdrawn e a qntidade de grana vc quer tirar Não vou postar o tutoral de transferir dinheiro pq eu to ndo viajar + quando eu xegar na casa da minha tia eu posto como tranferir grana Duvidas não deixem de perguntar Comentem :dlb: Fuizzzzzzzzzz Metas: METAS:[x]1 post (NOOB) [x]5 posts (SERVO) [x]10 posts (CAMPONÊS) [x]25 posts (CAÇADOR) [x]50 posts (CAVALEIRO) [ ]100 posts (BARONETE) [ ]200 posts (BARÃO) [ ]300 posts (VISCONDE) [ ]400 posts (DUQUE) [ ]600 posts (ARQUEDUQUE) [ ]800 posts (ARISTOCRATA) [ ]1000 posts (REGENTE) [ ]1400 posts (SÁBIO) [ ]1800 posts (SACERDOTE) [ ]2500 posts (PRÍNCIPE)
-
Muito Bom cara fico muito rox Parabens Trabalho muito bem 100% :button_ok: Vc e muito legal cara. Sou Seu Fãn Logo vou pedir mais um se não for incomodar vc Flwsssssssssss
-
Ola Matheus Querro Lhe Fazer mais um pedido E que hoje acabei de zerar o Devil May Cry 4(Recomendo) Então queria um monster igual ele no meu ot aki vai as infor Nome do Monstro:Devil May Cry ou então Dante Life do Monstro:6000 Exp do Monstro: (5500) Raça do Monstro:Human Speed do Montro: ( 400) Visual do Monstro: (Manere ae pra mim de acordo o personagem do game) Se da para Sumonar ou não:não Attacks: (Dark e fire) Maximo e minimo de Dano do Monstro: max 700 Min 500 Vozes do Montro:The Demons Never Die;The Demon Domine The World Loot do Monstro:Dexa que o loot eu faço aki Conto com vc Trabalhe perfeitemente como o Slash Fuizzzzzzzzzzz
-
Obrigado pela atenção Matheus Eu Tbm tenho que lhe parabenizar pelos seus topicos principalmente a do monster creator ficou otimo Fuizzzzzzzzzzzz
-
[Monster] [pack] Monsters Com Addon's
tópico respondeu ao \Mattheus ~* de 777779 em NPCs, monsters e raids
Parabens Cara Aprovado :button_ok: Isso sera otimo para ot server com mapa globais exemplo o meu eu add aki no meu ot Parabens cara vc sempre inovando heheh Sou Seu Fan -
-
Bom galera do XTibia Hj trago uma raid de pirates vamos ao work adc o arquivo pirates.xml na pasta raids e adc a seguinte fonte <raid> <announce delay="1000" type="event" message="Pirates are launching a surprise attack on Liberty Bay! Take care, they seem to be everywhere." /> <announce delay="10000" type="event" message="Pirates have invaded the city." /> <!--Area Spawns--> <areaspawn delay="11000" fromx="32261" fromy="32771" fromz="7" tox="32345" toy="32854" toz="7"> <monster name="Pirate Corsair" amount="105" /> <monster name="Pirate Buccaneer" amount="100" /> <monster name="Pirate Cutthroat" amount="105" /> <monster name="Pirate Marauder" amount="105" /> <monster name="Smuggler" amount="105" /> </areaspawn> <!--Single Spawns--> <singlespawn delay="11000" name="Deadeye Devious" x="32349" y="32841" z="7" /> <!--Single Spawns--> <singlespawn delay="1000" name="Ron the Ripper" x="32247" y="32839" z="7" /> <!--Single Spawns--> <singlespawn delay="1000" name="Brutus Bloodbeard" x="32302" y="32879" z="7" /> <!--Single Spawns--> <singlespawn delay="1000" name="Lethal Lissy" x="32300" y="32774" z="7" /> </raid> em raids.xml adc a seguinte tag <raid name="Pirates" file="Pirates.xml" interval2="30" margin="1800" enabled="yes"/> Créditos:Marcos Fuizzzzzzzzzz Logo Postarei uma Invasão de Gzharan <<<esqueci o nome heheh
-
:party: :party: :party: VLWWWWWWW Cara fico muito rox gostei muito Vlw tu e d+ So uma pequena Observação na exp(experience)eu pedi 4000 e vc coloco 400 ae eu mudei aki Logo vou te pedir + 1 Muito obrigado por ter feito o Slash Eu Sou Seu Fan I'm Love GUNS N' ROSES
-
Vlws pela opinião KaKilo por isso atualizei o topico colocando .xml Espero que tenha gostado Fuizzzzzzz
-
Ola Galera Do Xtibia entrei em um site que meu primo me mando e axei essa spell muito rox e vo postar ela aki Frost Destroyer Nome: Frost Destroyer Versão: 8.4 Tipo do script: Spell Servidor Testado: Slayer Yurots Autor: Lucasf ----Começando---- 1° Vá ate a pasta data\spells\scripts\attack Crie Um Arquivo Chamado Frost Destroyer.lua... Dentro Dele Você Coloca Isso: local combat1 = createCombatObject()setCombatParam(combat1, COMBAT_PARAM_TYPE, COMBAT_ICEDAMAGE) setCombatParam(combat1, COMBAT_PARAM_EFFECT, 43) setCombatFormula(combat1, COMBAT_FORMULA_LEVELMAGIC, -2.0, -40, -2.0, -20) local combat2 = createCombatObject() setCombatParam(combat2, COMBAT_PARAM_TYPE, COMBAT_ICEDAMAGE) setCombatParam(combat2, COMBAT_PARAM_EFFECT, 41) setCombatFormula(combat2, COMBAT_FORMULA_LEVELMAGIC, -2.0, -40, -2.0, -20) local combat3 = createCombatObject() setCombatParam(combat3, COMBAT_PARAM_TYPE, COMBAT_ICEDAMAGE) setCombatParam(combat3, COMBAT_PARAM_EFFECT, 52) setCombatFormula(combat3, COMBAT_FORMULA_LEVELMAGIC, -2.0, -40, -2.0, -20) arr1 = { {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0}, {0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0}, {0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0}, {0, 0, 1, 1, 0, 3, 0, 1, 1, 0, 0}, {0, 0, 1, 0, 1, 0, 1, 0, 1, 0, 0}, {0, 0, 1, 0, 0, 1, 0, 0, 1, 0, 0}, {0, 0, 1, 1, 1, 1, 1, 1, 1, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, } arr2 = { {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0}, {0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0}, {0, 0, 0, 0, 1, 3, 1, 0, 0, 0, 0}, {0, 0, 0, 1, 0, 1, 0, 1, 0, 0, 0}, {0, 0, 0, 1, 1, 0, 1, 1, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, } arr3 = { {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, {0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0}, {0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0}, {0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0}, {0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0}, {0, 1, 0, 0, 0, 3, 0, 0, 0, 1, 0}, {0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0}, {0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0}, {0, 1, 0, 0, 0, 0, 0, 0, 0, 1, 0}, {0, 1, 1, 1, 1, 1, 1, 1, 1, 1, 0}, {0, 0, 0, 0, 0, 0, 0, 0, 0, 0, 0}, } local area1 = createCombatArea(arr1) local area2 = createCombatArea(arr2) local area3 = createCombatArea(arr3) setCombatArea(combat1, area1) setCombatArea(combat2, area2) setCombatArea(combat3, area3) local function onCastSpell1(parameters) doCombat(parameters.cid, parameters.combat1, parameters.var) end local function onCastSpell2(parameters) doCombat(parameters.cid, parameters.combat2, parameters.var) end local function onCastSpell3(parameters) doCombat(parameters.cid, parameters.combat3, parameters.var) end function onCastSpell(cid, var) local parameters = { cid = cid, var = var, combat1 = combat1, combat2 = combat2, combat3 = combat3 } addEvent(onCastSpell1, 100, parameters) addEvent(onCastSpell2, 300, parameters) addEvent(onCastSpell3, 400, parameters) end 2° Agora Voce Vai Ate A Pasta Data\Spells E Abra O Arquivo Spell.xml e adicione isso: <instant name="Frost Destroyer" words="Frost Destroyer" lvl="500" mana="1200" prem="1" exhaustion="1" needlearn="0" script="attack/Frost Destroyer.lua"><vocation name="Sorcerer"/> <vocation name="Druid"/> <vocation name="Master Sorcerer"/> <vocation name="Elder Druid"/> Duvidas não deixem de postar Créditos:Luuh SS Clike na imagem para aumentar ela. Flwssssssssssssss
-
Cara vlw meu primo gosto então eu decidi pedir pra vc fazer um monster pra mim Meu ot e global então aki vai as infor Nome do Monstro:Slash Life do Monstro:3500 Exp do Monstro: (4000) Raça do Monstro:Human ou outra Speed do Montro: ( normal) Visual do Monstro: (Roupa de DemonHunter com addon 1,2,3 todo preto) Se da para Sumonar ou não:não Attacks: (Song Ou Fire) Maximo e minimo de Dano do Monstro: Max 550 Min250 Vozes do Montro:Slash Come Back Loot do Monstro:Katana,Fire Sword,e 25 Plantium coins e resto eu edito aki Plz me responda o mais rapido possiel e se vc puder colocar umas SS tbm eu agrdeço Fuizzz Sou Seu Fan
-
Ola Galera XTibiana Venho trazer os 3 grandes deuses da grecia vamos trabalhar Primeiro Hades Va em data monster e crie um arquivo.xml e coloque renomeie para hades e ponha isso dentro <?xml version="1.0" encoding="UTF-8"?> <monster name="Hades" species="human" nameDescription="a Hades" race="blood" experience="3200" speed="300" manacost="0"> <health now="4200" max="4200"/> <look type="132" head="0" body="94" legs="114" feet="114" addons="1" corpse="3128"/> <targetchange interval="60000" chance="0"/> <strategy attack="100" defense="0"/> <flags> <flag summonable="0"/> <flag attackable="1"/> <flag hostile="1"/> <flag illusionable="0"/> <flag convinceable="0"/> <flag pushable="0"/> <flag canpushitems="1"/> <flag staticattack="50"/> <flag lightlevel="0"/> <flag lightcolor="0"/> <flag targetdistance="1"/> <flag runonhealth="0"/> </flags> <attacks> <attack name="melee" interval="2000" min="-150" max="-240"/> <attack name="berserk" interval="1000" chance="900"/> <attack name="ultimate explosion" interval="3000" chance="240" min="-600" max="-700"/> <attack name="Explosive Arrow" interval="2000" chance="80" min="-160" max="-210"/> <attack name="sudden death" interval="5000" chance="70" min="-150" max="-200"/> </attacks> <defenses armor="65" defense="75"/> <immunities> <immunity physical="0"/> <immunity energy="1"/> <immunity fire="1"/> <immunity poison="1"/> <immunity lifedrain="0"/> <immunity paralyze="0"/> <immunity outfit="0"/> <immunity drunk="0"/> <immunity invisible="1"/> </immunities> <summons max="2"> <summon name="Fury" interval="2000" chance="70"/> </summons> <voices interval="4000" chance="50"> <voice sentence="Here...Is My Place...!"/> <voice sentence="Welcome To Hell... Mortal!"/> </voices> <loot> <item id="2148" countmax="100" chance1="100000" chancemax="0"/> <item id="2128" chance="7622"/> <item id="2494" chance="4733"/> <item id="2365" chance="100000"> <inside> <item id="2520" chance="4933"/> <item id="6529" countmax="5" chance1="9722" chancemax="0"/> <item id="7371" chance="3822"/> <item id="5803" chance="4733"/> </inside> </item> </loot> </monster> Agora Zeus Faça o mesmo que Hades so que renomeie o Arquivo Para Zeus e coloque isso dentro <?xml version="1.0" encoding="UTF-8"?> <monster name="Zeus" species="human" nameDescription="a Zeus" race="blood" experience="8400" speed="300" manacost="0"> <health now="11000" max="11000"/> <look type="130" head="19" body="19" legs="19" feet="114" addons="1" corpse="3128"/> <targetchange interval="60000" chance="0"/> <strategy attack="100" defense="0"/> <flags> <flag summonable="0"/> <flag attackable="1"/> <flag hostile="1"/> <flag illusionable="0"/> <flag convinceable="0"/> <flag pushable="0"/> <flag canpushitems="1"/> <flag staticattack="50"/> <flag lightlevel="0"/> <flag lightcolor="0"/> <flag targetdistance="1"/> <flag runonhealth="0"/> </flags> <attacks> <attack name="melee" interval="2000" min="-300" max="-450"/> <attack name="heavy magic missile" interval="2000" chance="70" min="-350" max="-400"/> <attack name="great energy beam" interval="200" chance="70" min="-550" max="-600"/> </attacks> <defenses armor="80" defense="70"/> <immunities> <immunity physical="0"/> <immunity energy="1"/> <immunity fire="1"/> <immunity poison="1"/> <immunity lifedrain="0"/> <immunity paralyze="0"/> <immunity outfit="0"/> <immunity drunk="0"/> <immunity invisible="1"/> </immunities> <summons max="1"> <summon name="Archangel" interval="2000" chance="10"/> </summons> <voices interval="4000" chance="50"> <voice sentence="Can you see this? It is the Paradise!"/> <voice sentence="Protect The Earth!"/> </voices> <loot> <item id="2148" countmax="100" chance1="100000" chancemax="0"/> <item id="2496" chance="2766"/> <item id="2471" chance="5722"/> <item id="1987" chance="100000"> <inside> <item id="2195" chance="8433"/> <item id="2689" countmax="20" chance1="9722" chancemax="0"/> <item id="2173" chance="1488"/> <item id="5803" chance="4733"/> <item id="2523" chance="977"/> <item id="7369" chance="7899"/> <item id="2421" chance="2933"/> <item id="2415" chance="4188"/> </inside> </item> </loot> </monster> Agora Hercules Faça o mesmo so que renomeie para Hercules e coloque isso dentro <?xml version="1.0" encoding="UTF-8"?> <monster name="Hercules" species="human" nameDescription="a Hercules" race="blood" experience="4600" speed="300" manacost="0"> <health now="9000" max="9000"/> <look type="143" head="79" body="0" legs="0" feet="0" addons="1" corpse="3128"/> <targetchange interval="60000" chance="0"/> <strategy attack="100" defense="0"/> <flags> <flag summonable="0"/> <flag attackable="1"/> <flag hostile="1"/> <flag illusionable="0"/> <flag convinceable="0"/> <flag pushable="0"/> <flag canpushitems="1"/> <flag staticattack="50"/> <flag lightlevel="0"/> <flag lightcolor="0"/> <flag targetdistance="1"/> <flag runonhealth="0"/> </flags> <attacks> <attack name="melee" interval="2000" min="-400" max="-450"/> <attack name="spear" interval="1000" chance="100" min="-300" max="-350"/> <attack name="berserk" interval="300" chance="70"/> </attacks> <defenses armor="80" defense="70"/> <immunities> <immunity physical="0"/> <immunity energy="1"/> <immunity fire="1"/> <immunity poison="1"/> <immunity lifedrain="0"/> <immunity paralyze="0"/> <immunity outfit="0"/> <immunity drunk="0"/> <immunity invisible="1"/> </immunities> <voices interval="4000" chance="50"> <voice sentence="Father... I Will Protect You!"/> </voices> <loot> <item id="2148" countmax="100" chance1="100000" chancemax="0"/> <item id="2475" chance="7644"/> <item id="2487" chance="7644"/> <item id="1997" chance="100000"> <inside> <item id="2488" chance="7644"/> <item id="2689" countmax="20" chance1="9722" chancemax="0"/> <item id="2519" chance="7644"/> <item id="2454" chance="4811"/> </inside> </item> </loot> </monster> Pronto Depois va em Monster.xml Zeus: <monster name="Zeus" file="Zeus.xml" /> Hades: <monster name="Hades" file="Hades.xml" /> Hercules: <monster name="Hercules" file="Hercules.xml" /> Comentem Créditos:Luuh Fuizzzzzzzz
-
Ola gnte do XTibia Tenho uma duvida sobre o forum e que no meu perfil eu n consigo por a foto que aparece nos meus posts tipo a foto que fica do lado de ca <<<<<<<<< do seu post se algume poder me ajudar agrdeço Se minha duvida estiver em lugar errado me direcionem ou me reportem para o lugar certo Fuiiiiiiiiiizzzzzz
-
Muito Bom Parabens Eu tenho um ot global so que eu ainda n testei n to com preguiça mais logo vou testar e te falo se funfo Mais pelo script da pra ver que e uma boa spell Fuiizzzzzzzzz
-
Muito loja essa spells ficou muito boa Parabens :party: Fuizzzzzzzzzzzz
-
Quem Está Navegando 0 membros estão online
- Nenhum usuário registrado visualizando esta página.