Ir para conteúdo

Raell5

Membro
  • Registro em

  • Última visita

Tudo que Raell5 postou

  1. Raell5 postou uma resposta no tópico em Playground (Off-topic)
    Mas tem uns membro que pensa que e "www.otservlist.org" toma no boga
  2. Raell5 postou uma resposta no tópico em Suporte Tibia OTServer
    Mostra o erro amigo !
  3. Tipo o system monster cont "Ultra kill,monster kill etaus ?"
  4. ASUHAUHSUAHS
  5. Faz assim "Abra seu ot em 127.0.0.1" Ok veja se você consegue logar com adm ou player, dando certo feche o ot vá ate "www.no-ip.com" faça 1 domain "Ip Fixo" ok abra seu config.lua, vá ate connection config e ache por isso ip = "127.0.0.1" coloque o numero do ip domain fixo, nesta linha do 127.0.0.1 e abra seu ot. tente logar com o "account manager" primeiro se der certo esta tudo normal para ficar online !! Des de já Raell Deads
  6. qual id do anel ?
  7. Raell5 postou uma resposta no tópico em Playground (Off-topic)
    Obrigado há todos pela atenção !!
  8. Vou ver seu eu acho 1 aqui, tinha 1 server que tinha 1 tile que teleportava nos meus documentos.
  9. Raell5 postou uma resposta no tópico em Suporte Tibia OTServer
    Eu acho que ele mudou a versão do ot
  10. Deve estar em "Data>GlobalEvents>Scripts" posta aqui se achar !
  11. está assim não seria assim ? </item> <item id="13441" article="a" name="dead titanica" /> <attribute key="decayTo" value="13442" /> <attribute key="duration" value="600" /> <attribute key="corpseType" value="blood" /> </item> <item id="13442" article="a" name="dead titanica" /> <attribute key="decayTo" value="0" /> <attribute key="duration" value="600" /> <attribute key="corpseType" value="blood" /> </item> </items>
  12. Raell5 postou uma resposta no tópico em Suporte Tibia OTServer
    Seria uma action então
  13. Raell5 postou uma resposta no tópico em Playground (Off-topic)
    Olá meus queridos amigos, venho me reapresentar para dar supporte, em otserv e scripts bom acho que estou bem melhor agora, vamos ver o que vai ser hehe.
  14. Olá tudo bem ? Okay faz tempo que não posto nada, por que to meio desatualizado, do mundo do tibia. bom hoje venho lhes trazer, um movement o [Traning Invisivel] Bom vamos aos comandos! Primeiramente vá ate seus "Data>Movements>Movements.xml" Crie isto. <!-- Training --> <movevent type="StepIn" actionid="1212" event="script" value="trainers/trainers.lua" /> <movevent type="StepOut" actionid="1212" event="script" value="trainers/trainermove.lua" /> <movevent type="StepIn" actionid="2121" event="script" value="trainers/trainers.lua" /> <movevent type="StepOut" actionid="2121" event="script" value="trainers/trainermove.lua" /> <!-- Training --> Okay depois disso vá ate "Data>Movements>Scripts" Crie 2 lua com estes nomes. "Trainers.lua e Trainermove.lua" "Cole isto em Trainers.lua" - --Caution! Do not edit anything but the name of the monster used to train and the MonkTrash unless you know what you are doing--- ---Training Monk spawn and removal by raell5--- -------LEGEND-------- --R-- = --Removal-- --CR-- = --Check Removal-- --MonkTrash-- The location the monk will be sent when training areas are not in use --Training Monk-- The name of the monster being used to train (change if needed) ---Action id's used- --1212 is the action id you set where the player should stand to activate monks spawning to the north --2121 is the action id you set where the player should stand to activate monks spawning to the south ---Action id's used- -------LEGEND-------- ---Begining monk spawn functions--> function onStepIn(cid, item, pos) local Player = getPlayerPosition(cid) ---Equation when monks shall spawn to the north local NorthWest = {x=Player.x-1, y=Player.y-1, z=Player.z, stackpos=253} local NorthEast = {x=Player.x+1, y=Player.y-1, z=Player.z, stackpos=253} local CNorthWest = getThingfromPos(NorthWest) local CNorthEast = getThingfromPos(NorthEast) ---Equation when monks shall spawn to the south local SouthWest = {x=Player.x-1, y=Player.y+1, z=Player.z, stackpos=253} local SouthEast = {x=Player.x+1, y=Player.y+1, z=Player.z, stackpos=253} local CSouthWest = getThingfromPos(SouthWest) local CSouthEast = getThingfromPos(SouthEast) if item.actionid == 1212 and isCreature(CNorthWest.uid) == false and isCreature(CNorthEast.uid) == false then doSummonCreature("Training Monk", NorthWest) doSummonCreature("Training Monk", NorthEast) elseif item.actionid == 2121 and isCreature(CSouthWest.uid) == false and isCreature(CSouthEast.uid) == false then doSummonCreature("Training Monk", SouthWest) doSummonCreature("Training Monk", SouthEast) end return 1 end ---Ending monk spawn functions<--- ---Training Monk spawn and removal by raell5-- "E isto em Trainermove.lua" ---Training Monk removal by raell5--- function onStepOut(cid, item, pos) local layer = getCreaturePosition(cid) local RNorthWest = {x=layer.x-1, y=layer.y-2, z=layer.z, stackpos=253} local RNorthEast = {x=layer.x+1, y=layer.y-2, z=layer.z, stackpos=253} local RSouthWest = {x=layer.x-1, y=layer.y+2, z=layer.z, stackpos=253} local RSouthEast = {x=layer.x+1, y=layer.y+2, z=layer.z, stackpos=253} local CRNorthWest = getThingfromPos(RNorthWest) local CRNorthEast = getThingfromPos(RNorthEast) local CRSouthWest = getThingfromPos(RSouthWest) local CRSouthEast = getThingfromPos(RSouthEast) if item.actionid == 1212 and isCreature(CRNorthWest.uid) and isCreature(CRNorthEast.uid) then doSendMagicEffect(RNorthWest,13) doSendMagicEffect(RNorthEast,13) doRemoveCreature(CRNorthWest.uid) doRemoveCreature(CRNorthEast.uid) elseif item.actionid == 2121 and isCreature(CRSouthWest.uid) and isCreature(CRSouthEast.uid) then doSendMagicEffect(RSouthWest,13) doSendMagicEffect(RSouthEast,13) doRemoveCreature(CRSouthWest.uid) doRemoveCreature(CRSouthEast.uid) end return 1 end ---Ending monk removal functions<--- ---Training Monk removal by raell5--- Edite seu "Traning Monks" <?xml version="1.0" encoding="UTF-8"?> <monster name="Training Monk" nameDescription="a training monk" race="blood" experience="0" speed="0" manacost="0"> <health now="100000000000" max="10000000000000"/> <look type="57" 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="5000" min="0" max="-1"/> </attacks> <defenses armor="0" defense="0"> <defense name="healing" interval="10000" chance="1000000000000" min="100000000000000" max="10000000000000000"/> </defenses> <immunities> <immunity physical="0"/> <immunity energy="0"/> <immunity fire="0"/> <immunity poison="0"/> <immunity lifedrain="0"/> <immunity paralyze="0"/> <immunity outfit="0"/> <immunity drunk="0"/> <immunity invisible="1"/> </immunities> <voices speed="1" chance="5"> <voice sentence="Skill's or die HAHAHA!" yell="1"/> <voice sentence="Advance you power come!" yell="1"/> </voices> <loot> <item id="2148" countmax="20" chance="100000"/><!-- gold coin --> <item id="1949" chance="10000"/><!-- scroll --> <item id="2467" chance="10000"/><!-- leather armor --> <item id="2642" chance="6666"/><!-- sandals --> <item id="1987" chance="100000"><!-- bag --> <inside> <item id="2044" chance="6666"/><!-- lamp --> <item id="2689" countmax="3" chance="20000"/><!-- bread --> <item id="2401" chance="3333"/><!-- staff --> <item id="2166" chance="1428"/><!-- power ring --> </inside> </item> </loot> </monster> "ATENÇÃO" No tile a frente aos tranings coloque está action "2121" Ok boa sorte . Creditos Raell5 Xaekay @@Editado quote ta zuado!
  15. a Mina não quix sexço com ele na foto olha a cara de bunda KKKKKKKKKKKKKKKKKKKK amigo do Vittu so pode
  16. Raell5 postou uma resposta no tópico em Suporte Tibia OTServer
    em vez de "1000" poe "500" vai ficar assim
  17. Raell5 postou uma resposta no tópico em Suporte Tibia OTServer
    e so mudar isso amigo
  18. Raell5 postou uma resposta no tópico em Eventos de Mapping
    Vou participar
  19. Raell5 postou uma resposta no tópico em Suporte Tibia OTServer
    Vá ate o "Remeres map editor" vá ate o lugar onde está a demon oak, e coloque onde quer que nasça o mob.
  20. Raell5 postou uma resposta no tópico em Suporte Tibia OTServer
    Caro amigo procure se informar mais. Tutorial
  21. era pinto de mentira seu burro kkkkkkkkk
  22. Raell5 postou uma resposta no tópico em Suporte Tibia OTServer
    Primeiramente criar as ddl e o config.lua

Informação Importante

Confirmação de Termo