Ir para conteúdo

SkyLigh

Lorde
  • Total de itens

    2183
  • Registro em

  • Última visita

  • Dias Ganhos

    23

Histórico de Reputação

  1. Upvote
    SkyLigh recebeu reputação de GuhPk em Add Premium Por Talk E Action   
    Iae galera !!
     
     
    hoje trago um script muito interessante adicionar premium por action ao dar use num item e comprar o item por 1 buyitem
    então vamos la
     
    va em data / talkactions / scripts / e ponha o nome de algum arquivo para
     
    premium e ponha isto la dentro
     

    function onSay(cid, words, param) local itens = { ["santa doll"] = {id = 6567, preco = 2000, count = 1 }, ["teddy bear"] = {id = 6568, preco = 1000, count = 1 }, ["jester doll"] = {id = 9663, preco = 500, count = 1 } } local param = string.lower(param) if (param == "lista") then local str = "" str = str .. "itens :\n\n" for name, preco in pairs(itens) do str = str..name.."\n" end str = str .. "" doShowTextDialog(cid, 7529, str) return TRUE end if not itens[param] or param == "" or not param then return doPlayerSendCancel(cid,"Desculpe esse item nao existe") end if itens[param] and doPlayerRemoveMoney(cid,itens[param].preco) then doPlayerAddItem(cid,itens[param].id,itens[param].count) doPlayerSendTextMessage(cid,27,"Parabéns Vc comprou 1 item") end return TRUE end
     

    <talkaction words="!buy" event="script" value="itens.lua"/>
     
    dps em data / actions / scripts / ponha o nome de algum arquivo de premium
     
    e adicionar isto la dentro
     

    --((Script By Skylight Xtibia.com))-- function onUse(cid, item) if doRemoveItem(item.uid, 1) then end if item.itemid == 6567 then doPlayerAddPremiumDays(cid, 30) doPlayerSendTextMessage(cid, 22, "Parabéns Você Recebeu 30 dias de premium") return true end if item.itemid == 6568 then doPlayerAddPremiumDays(cid, 30) doPlayerSendTextMessage(cid, 22, "Parabéns Você Recebeu 15 dias de premium") return true end if item.itemid == 9693 then doPlayerAddPremiumDays(cid, 30) doPlayerSendTextMessage(cid, 22, "Parabéns Você Recebeu 10 dias de premium") end return true end
     
    dps em actions.xml
     

    <action itemid="6567" script="premium.lua"/> <action itemid="6568" script="premium.lua"/> <action itemid="9693" script="premium.lua"/>
     
    Então e so isso espero que gostem e se puder nao custara 1 rep +
     
    Créditos
    TnTSlin 30 %(Pelo script do buy)
    SkyLigh 70 % (Pelo Script Do Action E A Ideia E Adicionar A Lista no script do buy)
  2. Upvote
    SkyLigh recebeu reputação de yurielmo147 em Add Premium Por Talk E Action   
    Iae galera !!
     
     
    hoje trago um script muito interessante adicionar premium por action ao dar use num item e comprar o item por 1 buyitem
    então vamos la
     
    va em data / talkactions / scripts / e ponha o nome de algum arquivo para
     
    premium e ponha isto la dentro
     

    function onSay(cid, words, param) local itens = { ["santa doll"] = {id = 6567, preco = 2000, count = 1 }, ["teddy bear"] = {id = 6568, preco = 1000, count = 1 }, ["jester doll"] = {id = 9663, preco = 500, count = 1 } } local param = string.lower(param) if (param == "lista") then local str = "" str = str .. "itens :\n\n" for name, preco in pairs(itens) do str = str..name.."\n" end str = str .. "" doShowTextDialog(cid, 7529, str) return TRUE end if not itens[param] or param == "" or not param then return doPlayerSendCancel(cid,"Desculpe esse item nao existe") end if itens[param] and doPlayerRemoveMoney(cid,itens[param].preco) then doPlayerAddItem(cid,itens[param].id,itens[param].count) doPlayerSendTextMessage(cid,27,"Parabéns Vc comprou 1 item") end return TRUE end
     

    <talkaction words="!buy" event="script" value="itens.lua"/>
     
    dps em data / actions / scripts / ponha o nome de algum arquivo de premium
     
    e adicionar isto la dentro
     

    --((Script By Skylight Xtibia.com))-- function onUse(cid, item) if doRemoveItem(item.uid, 1) then end if item.itemid == 6567 then doPlayerAddPremiumDays(cid, 30) doPlayerSendTextMessage(cid, 22, "Parabéns Você Recebeu 30 dias de premium") return true end if item.itemid == 6568 then doPlayerAddPremiumDays(cid, 30) doPlayerSendTextMessage(cid, 22, "Parabéns Você Recebeu 15 dias de premium") return true end if item.itemid == 9693 then doPlayerAddPremiumDays(cid, 30) doPlayerSendTextMessage(cid, 22, "Parabéns Você Recebeu 10 dias de premium") end return true end
     
    dps em actions.xml
     

    <action itemid="6567" script="premium.lua"/> <action itemid="6568" script="premium.lua"/> <action itemid="9693" script="premium.lua"/>
     
    Então e so isso espero que gostem e se puder nao custara 1 rep +
     
    Créditos
    TnTSlin 30 %(Pelo script do buy)
    SkyLigh 70 % (Pelo Script Do Action E A Ideia E Adicionar A Lista no script do buy)
  3. Upvote
    SkyLigh deu reputação a Godsloko em Baiak 4.0 [ Meu Primero Post]   
    ok mas é que sou novato aki e n sei mexer mt mas mesmo asim obrigadu pela sinceridade
  4. Upvote
    SkyLigh recebeu reputação de hadonias em Add Premium Por Talk E Action   
    Iae galera !!
     
     
    hoje trago um script muito interessante adicionar premium por action ao dar use num item e comprar o item por 1 buyitem
    então vamos la
     
    va em data / talkactions / scripts / e ponha o nome de algum arquivo para
     
    premium e ponha isto la dentro
     

    function onSay(cid, words, param) local itens = { ["santa doll"] = {id = 6567, preco = 2000, count = 1 }, ["teddy bear"] = {id = 6568, preco = 1000, count = 1 }, ["jester doll"] = {id = 9663, preco = 500, count = 1 } } local param = string.lower(param) if (param == "lista") then local str = "" str = str .. "itens :\n\n" for name, preco in pairs(itens) do str = str..name.."\n" end str = str .. "" doShowTextDialog(cid, 7529, str) return TRUE end if not itens[param] or param == "" or not param then return doPlayerSendCancel(cid,"Desculpe esse item nao existe") end if itens[param] and doPlayerRemoveMoney(cid,itens[param].preco) then doPlayerAddItem(cid,itens[param].id,itens[param].count) doPlayerSendTextMessage(cid,27,"Parabéns Vc comprou 1 item") end return TRUE end
     

    <talkaction words="!buy" event="script" value="itens.lua"/>
     
    dps em data / actions / scripts / ponha o nome de algum arquivo de premium
     
    e adicionar isto la dentro
     

    --((Script By Skylight Xtibia.com))-- function onUse(cid, item) if doRemoveItem(item.uid, 1) then end if item.itemid == 6567 then doPlayerAddPremiumDays(cid, 30) doPlayerSendTextMessage(cid, 22, "Parabéns Você Recebeu 30 dias de premium") return true end if item.itemid == 6568 then doPlayerAddPremiumDays(cid, 30) doPlayerSendTextMessage(cid, 22, "Parabéns Você Recebeu 15 dias de premium") return true end if item.itemid == 9693 then doPlayerAddPremiumDays(cid, 30) doPlayerSendTextMessage(cid, 22, "Parabéns Você Recebeu 10 dias de premium") end return true end
     
    dps em actions.xml
     

    <action itemid="6567" script="premium.lua"/> <action itemid="6568" script="premium.lua"/> <action itemid="9693" script="premium.lua"/>
     
    Então e so isso espero que gostem e se puder nao custara 1 rep +
     
    Créditos
    TnTSlin 30 %(Pelo script do buy)
    SkyLigh 70 % (Pelo Script Do Action E A Ideia E Adicionar A Lista no script do buy)
  5. Upvote
    SkyLigh recebeu reputação de Rubinho2012 em Add Premium Por Talk E Action   
    Iae galera !!
     
     
    hoje trago um script muito interessante adicionar premium por action ao dar use num item e comprar o item por 1 buyitem
    então vamos la
     
    va em data / talkactions / scripts / e ponha o nome de algum arquivo para
     
    premium e ponha isto la dentro
     

    function onSay(cid, words, param) local itens = { ["santa doll"] = {id = 6567, preco = 2000, count = 1 }, ["teddy bear"] = {id = 6568, preco = 1000, count = 1 }, ["jester doll"] = {id = 9663, preco = 500, count = 1 } } local param = string.lower(param) if (param == "lista") then local str = "" str = str .. "itens :\n\n" for name, preco in pairs(itens) do str = str..name.."\n" end str = str .. "" doShowTextDialog(cid, 7529, str) return TRUE end if not itens[param] or param == "" or not param then return doPlayerSendCancel(cid,"Desculpe esse item nao existe") end if itens[param] and doPlayerRemoveMoney(cid,itens[param].preco) then doPlayerAddItem(cid,itens[param].id,itens[param].count) doPlayerSendTextMessage(cid,27,"Parabéns Vc comprou 1 item") end return TRUE end
     

    <talkaction words="!buy" event="script" value="itens.lua"/>
     
    dps em data / actions / scripts / ponha o nome de algum arquivo de premium
     
    e adicionar isto la dentro
     

    --((Script By Skylight Xtibia.com))-- function onUse(cid, item) if doRemoveItem(item.uid, 1) then end if item.itemid == 6567 then doPlayerAddPremiumDays(cid, 30) doPlayerSendTextMessage(cid, 22, "Parabéns Você Recebeu 30 dias de premium") return true end if item.itemid == 6568 then doPlayerAddPremiumDays(cid, 30) doPlayerSendTextMessage(cid, 22, "Parabéns Você Recebeu 15 dias de premium") return true end if item.itemid == 9693 then doPlayerAddPremiumDays(cid, 30) doPlayerSendTextMessage(cid, 22, "Parabéns Você Recebeu 10 dias de premium") end return true end
     
    dps em actions.xml
     

    <action itemid="6567" script="premium.lua"/> <action itemid="6568" script="premium.lua"/> <action itemid="9693" script="premium.lua"/>
     
    Então e so isso espero que gostem e se puder nao custara 1 rep +
     
    Créditos
    TnTSlin 30 %(Pelo script do buy)
    SkyLigh 70 % (Pelo Script Do Action E A Ideia E Adicionar A Lista no script do buy)
  6. Upvote
    SkyLigh deu reputação a TheSlayer em Maria Joaquina   
    Olá pessoal venho aqui postar um script de eum monstro que eu mesmo criei chamada Maria Juoquina aquela do carrosel nao que eu assista!!!!!
     
    Vamos ao que interessa!!!!!
     
    vá em data/monster/pirates
     
    crie um arquivo XML com o nome lethal lissy que foi o monster que eu usei pra faze a Maria Juoquina
    ou se vc nao usar a lethal lissy apague tudo que esta la dentro e coloque isso!!!
     

    <?xml version="1.0" encoding="UTF-8"?> <monster name="Maria Joaquina" nameDescription="Maria Joaquina" race="blood" experience="30000" speed="999" manacost="0"> <health now="900000000" max="900000000"/> <look type="155" head="114" body="0" legs="57" feet="114" addons="3" corpse="6081"/> <targetchange interval="5000" chance="8"/> <strategy attack="100" defense="999"/> <flags> <flag summonable="0"/> <flag attackable="1"/> <flag hostile="1"/> <flag illusionable="0"/> <flag convinceable="0"/> <flag pushable="0"/> <flag canpushitems="1"/> <flag canpushcreatures="1"/> <flag staticattack="90"/> <flag targetdistance="1"/> <flag runonhealth="0"/> </flags> <attacks> <attack name="melee" interval="2000" skill="80" attack="999"/> <attack name="physical" interval="2000" chance="100" range="7" min="-90000" max="-95000"> <attribute key="shootEffect" value="throwingknife"/> </attack> <attack name="holy" interval="1000" chance="100" radius="8" target="0" min="-9500000000" max="-1000000000"> <attribute key="areaEffect" value="rednote"/> </attack> </attacks> <defenses armor="99999" defense="99999"> <defense name="healing" interval="1000" chance="100" min="99999" max="99999"> <attribute key="areaEffect" value="blueshimmer"/> </defense> </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> <summons maxSummons="50"> <summon name="Ferumbras" interval="1000" chance="3000"/> </summons> <loot> <item id="2666" chance="40000" countmax="3"/> -- meat <item id="2200" chance="5500"/> -- protection amulet <item id="5927" chance="100000"> -- pirate bag <inside> <item id="2145" chance="6000"/> -- small diamond <item id="2476" chance="9000"/> -- knight armor Arm 12 <item id="6100" chance="100000"/> -- lethal lissy's shirt </inside> </item> <item id="2229" chance="40000" countmax="2"/> -- skull <item id="2148" chance="100000" countmax="52"/> -- gold coin <item id="2148" chance="100000" countmax="50"/> -- gold coin <item id="2387" chance="9999"/> -- double axe Def 12 Atk 35 <item id="2463" chance="5555"/> -- plate armor Arm 10 </loot> </monster>
     
     
    Ai dps vá em data/monster/bosses
     
    crie outro arquivo XML com o nome de Maria Juoquina e coloque isso dentro
     
     

    <?xml version="1.0" encoding="UTF-8"?> <monster name="Maria Joaquina" nameDescription="maria joaquina" race="blood" experience="30000000" speed="9999" manacost="0"> <health now="3000000" max="3000000"/> <look type="155" head="77" body="0" legs="76" feet="132" addons="3" corpse="6081"/> <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="-250"/> </attacks> <defenses armor="35" defense="50"> <defense name="healing" interval="1000" chance="100" min="99999" max="99999"> <attribute key="areaEffect" value="blueshimmer"/> </defense> </defenses> <immunities> <immunity invisible="1"/> </immunities> <summons maxSummons="4"> <summon name="Pirate Cutthroat" interval="2000" chance="50"/> </summons> <loot> <item id="6100" chance="100000"/><!-- maria juoquina's shirt --> <item id="2148" countmax="40" chance="100000"/><!-- gold coin --> <item id="2476" chance="1200"/><!-- knight armor --> <item id="2387" chance="1500"/><!-- double axe --> <item id="2463" chance="4000"/><!-- plate armor --> <item id="2145" chance="100000"/><!-- small diamond --> <item id="2320" countmax="1" chance="100000"/><!-- skull --> </loot> </monster>
     
    ai feche e salve em data/monster/bosses.
     
    Reinicie e pronto!!!!!!!!!!
  7. Upvote
    SkyLigh recebeu reputação de exorcist em Pessa Ja Sua Desing Aki   
    Desculpe pela demora porem esta muito ocupado eu !
     
    entao aki esta
     
     
     
    se puder rep +
  8. Upvote
    SkyLigh recebeu reputação de Luiiz1 em Bless 8.660 Bugado Player Volta Ao Level 1   
    aki esta

    local bless = {1, 2, 3, 4, 5} local cost = 80000 function onSay(cid, words, param) for i = 1, table.maxn(bless) do if(getPlayerBlessing(cid, bless[i])) then doPlayerSendCancel(cid, "Voceja tem todas as bless.") return TRUE end end if(doPlayerRemoveMoney(cid, cost) == TRUE) then for i = 1, table.maxn(bless) do doPlayerAddBlessing(cid, bless[i]) doPlayerSetLossSkill(cid, 0) doCreatureSetDropLoot(cid, false) end doCreatureSay(cid, "You are now blessed!" ,19) doSendMagicEffect(getPlayerPosition(cid), 49) else doPlayerSendCancel(cid, "Voce precisa de 80k para a bless.") end return TRUE end
  9. Upvote
    SkyLigh recebeu reputação de carloslend em [Duvida] Como Se Teleportar Ao Clicar Em Um Item   
    pronto aki esta
     
    em data / action / scripts / renomeie algum arquivo para tele
     
    e adicione isto la
     

    function onUse(cid, item, frompos, item2, topos) pos = {x=547, y=332, z=7} -- Pos para onde sera teleportado doTeleportThing(cid,pos) doPlayerSendTextMessage(cid, 22, "Fale com o npc para ser promovido") return true end
     
    dps em actions.xml
     

    <action itemid="ID DO ITEM QUE VAI DAR USE " script="tele.lua"/>
     
    o do npc tentarei criar
     
    se puder rep +
  10. Upvote
    SkyLigh recebeu reputação de Twrb em [Effects] De Otserv   
    Iae galera !!
     
    Comos Quase Todos Ja Viram Este tutorial
     
    http://www.xtibia.com/forum/topic/129140-lista-de-efeitos-854-e-como-usa-los/
     
    Eu criei um pareçido com esse !
     
    so que o meu e do 8.60
     
    e com o numero dos efeitos e o nome tbm ! então vamos la breve irei postar as print's
     

    CONST_ME_DRAWBLOOD = 0 CONST_ME_LOSEENERGY = 1 CONST_ME_POFF = 2 CONST_ME_BLOCKHIT = 3 CONST_ME_EXPLOSIONAREA = 4 CONST_ME_EXPLOSIONHIT = 5 CONST_ME_FIREAREA = 6 CONST_ME_YELLOW_RINGS = 7 CONST_ME_GREEN_RINGS = 8 CONST_ME_HITAREA = 9 CONST_ME_TELEPORT = 10 CONST_ME_ENERGYHIT = 11 CONST_ME_MAGIC_BLUE = 12 CONST_ME_MAGIC_RED = 13 CONST_ME_MAGIC_GREEN = 14 CONST_ME_HITBYFIRE = 15 CONST_ME_HITBYPOISON = 16 CONST_ME_MORTAREA = 17 CONST_ME_SOUND_GREEN = 18 CONST_ME_SOUND_RED = 19 CONST_ME_POISONAREA = 20 CONST_ME_SOUND_YELLOW = 21 CONST_ME_SOUND_PURPLE = 22 CONST_ME_SOUND_BLUE = 23 CONST_ME_SOUND_WHITE = 24 CONST_ME_BUBBLES = 25 CONST_ME_CRAPS = 26 CONST_ME_GIFT_WRAPS = 27 CONST_ME_FIREWORK_YELLOW = 28 CONST_ME_FIREWORK_RED = 29 CONST_ME_FIREWORK_BLUE = 30 CONST_ME_STUN = 31 CONST_ME_SLEEP = 32 CONST_ME_WATERCREATURE = 33 CONST_ME_GROUNDSHAKER = 34 CONST_ME_HEARTS = 35 CONST_ME_FIREATTACK = 36 CONST_ME_ENERGYAREA = 37 CONST_ME_SMALLCLOUDS = 38 CONST_ME_HOLYDAMAGE = 39 CONST_ME_BIGCLOUDS = 40 CONST_ME_ICEAREA = 41 CONST_ME_ICETORNADO = 42 CONST_ME_ICEATTACK = 43 CONST_ME_STONES = 44 CONST_ME_SMALLPLANTS = 45 CONST_ME_CARNIPHILA = 46 CONST_ME_PURPLEENERGY = 47 CONST_ME_YELLOWENERGY = 48 CONST_ME_HOLYAREA = 49 CONST_ME_BIGPLANTS = 50 CONST_ME_CAKE = 51 CONST_ME_GIANTICE = 52 CONST_ME_WATERSPLASH = 53 CONST_ME_PLANTATTACK = 54 CONST_ME_TUTORIALARROW = 55 CONST_ME_TUTORIALSQUARE = 56 CONST_ME_MIRRORHORIZONTAL = 57 CONST_ME_MIRRORVERTICAL = 58 CONST_ME_SKULLHORIZONTAL = 59 CONST_ME_SKULLVERTICAL = 60 CONST_ME_ASSASSIN = 61 CONST_ME_STEPSHORIZONTAL = 62 CONST_ME_BLOODYSTEPS = 63 CONST_ME_STEPSVERTICAL = 64 CONST_ME_YALAHARIGHOST = 65 CONST_ME_BATS = 66 CONST_ME_SMOKE = 67 CONST_ME_INSECTS = 68 CONST_ME_DRAGONHEAD = 69 CONST_ME_ORCSHAMAN = 70 CONST_ME_ORCSHAMAN_FIRE = 71 CONST_ME_NONE = 255 CONST_ME_LAST = CONST_ME_ORCSHAMAN_FIRE
     
    Entao so isso espero que ajuda alguns
     
    se gostou + rep
  11. Upvote
    SkyLigh recebeu reputação de Lopana2 em [Effects] De Otserv   
    Iae galera !!
     
    Comos Quase Todos Ja Viram Este tutorial
     
    http://www.xtibia.com/forum/topic/129140-lista-de-efeitos-854-e-como-usa-los/
     
    Eu criei um pareçido com esse !
     
    so que o meu e do 8.60
     
    e com o numero dos efeitos e o nome tbm ! então vamos la breve irei postar as print's
     

    CONST_ME_DRAWBLOOD = 0 CONST_ME_LOSEENERGY = 1 CONST_ME_POFF = 2 CONST_ME_BLOCKHIT = 3 CONST_ME_EXPLOSIONAREA = 4 CONST_ME_EXPLOSIONHIT = 5 CONST_ME_FIREAREA = 6 CONST_ME_YELLOW_RINGS = 7 CONST_ME_GREEN_RINGS = 8 CONST_ME_HITAREA = 9 CONST_ME_TELEPORT = 10 CONST_ME_ENERGYHIT = 11 CONST_ME_MAGIC_BLUE = 12 CONST_ME_MAGIC_RED = 13 CONST_ME_MAGIC_GREEN = 14 CONST_ME_HITBYFIRE = 15 CONST_ME_HITBYPOISON = 16 CONST_ME_MORTAREA = 17 CONST_ME_SOUND_GREEN = 18 CONST_ME_SOUND_RED = 19 CONST_ME_POISONAREA = 20 CONST_ME_SOUND_YELLOW = 21 CONST_ME_SOUND_PURPLE = 22 CONST_ME_SOUND_BLUE = 23 CONST_ME_SOUND_WHITE = 24 CONST_ME_BUBBLES = 25 CONST_ME_CRAPS = 26 CONST_ME_GIFT_WRAPS = 27 CONST_ME_FIREWORK_YELLOW = 28 CONST_ME_FIREWORK_RED = 29 CONST_ME_FIREWORK_BLUE = 30 CONST_ME_STUN = 31 CONST_ME_SLEEP = 32 CONST_ME_WATERCREATURE = 33 CONST_ME_GROUNDSHAKER = 34 CONST_ME_HEARTS = 35 CONST_ME_FIREATTACK = 36 CONST_ME_ENERGYAREA = 37 CONST_ME_SMALLCLOUDS = 38 CONST_ME_HOLYDAMAGE = 39 CONST_ME_BIGCLOUDS = 40 CONST_ME_ICEAREA = 41 CONST_ME_ICETORNADO = 42 CONST_ME_ICEATTACK = 43 CONST_ME_STONES = 44 CONST_ME_SMALLPLANTS = 45 CONST_ME_CARNIPHILA = 46 CONST_ME_PURPLEENERGY = 47 CONST_ME_YELLOWENERGY = 48 CONST_ME_HOLYAREA = 49 CONST_ME_BIGPLANTS = 50 CONST_ME_CAKE = 51 CONST_ME_GIANTICE = 52 CONST_ME_WATERSPLASH = 53 CONST_ME_PLANTATTACK = 54 CONST_ME_TUTORIALARROW = 55 CONST_ME_TUTORIALSQUARE = 56 CONST_ME_MIRRORHORIZONTAL = 57 CONST_ME_MIRRORVERTICAL = 58 CONST_ME_SKULLHORIZONTAL = 59 CONST_ME_SKULLVERTICAL = 60 CONST_ME_ASSASSIN = 61 CONST_ME_STEPSHORIZONTAL = 62 CONST_ME_BLOODYSTEPS = 63 CONST_ME_STEPSVERTICAL = 64 CONST_ME_YALAHARIGHOST = 65 CONST_ME_BATS = 66 CONST_ME_SMOKE = 67 CONST_ME_INSECTS = 68 CONST_ME_DRAGONHEAD = 69 CONST_ME_ORCSHAMAN = 70 CONST_ME_ORCSHAMAN_FIRE = 71 CONST_ME_NONE = 255 CONST_ME_LAST = CONST_ME_ORCSHAMAN_FIRE
     
    Entao so isso espero que ajuda alguns
     
    se gostou + rep
  12. Upvote
    SkyLigh recebeu reputação de Lopana em Pessa Ja Sua Desing Aki   
    Pessa Sua Desing ! Neste Tópico
     
    Como Pedir ?
     
    Simples So Você Falar Como Quer O Fundo E Oq Estara Escrito
    Prazo Mínimo de entrega 5 hrs e prazo max 48 hrs
     
    Então Ja A Sua
  13. Upvote
    SkyLigh recebeu reputação de DarkSiders em Pessa Ja Sua Desing Aki   
    Pessa Sua Desing ! Neste Tópico
     
    Como Pedir ?
     
    Simples So Você Falar Como Quer O Fundo E Oq Estara Escrito
    Prazo Mínimo de entrega 5 hrs e prazo max 48 hrs
     
    Então Ja A Sua
  14. Upvote
    SkyLigh recebeu reputação de juninho100k em Video Aula - Aprenda Ser Um Script #1   
    Ótimo vídeo so faltou você colocar o credito do dono vo vídeo
     
    Porem eu ja sei script isto nao me interessa mas , mas estarei olhando pra Sempre lembrar pq e bom
     
    obrigado por compartilhar
  15. Upvote
    SkyLigh recebeu reputação de angelanascimento em Pedido[Scripting]   
    Duvida sanada
    reportado
  16. Upvote
    SkyLigh recebeu reputação de piikiller em [Tutorial] Trocando Os Itens De Seu Rme   
    De nada velho , sempre estarei disponível ate a morte pra ajudar
  17. Upvote
    SkyLigh recebeu reputação de saulos em Pessa Ja Sua Desing Aki   
    Olha n ta muito show pq ainda to iniciante
    mas ai esta
     
     
  18. Upvote
    SkyLigh recebeu reputação de MonsterOt em Editar Sistema De Cassino   
    pronto fiz pra vc !
     

    local config = { storageGlobal = 12312, -- esta storage é global e armazenará um valor para verificar se alguem usou o sistema antes dele finalizar premioQuantidade = 10503, -- como por em item? valorAposta = 15000, -- preço, em GPS, de cada chance pos = {{x = 35,y = 81,z = 7,stackpos = 253},{x = 36,y = 81,z = 7,stackpos = 253},{x = 37,y = 81,z = 7,stackpos = 253}}, -- configure as 3 posições criaturas ={"Rabbit","Black Sheep","Dog","Cat"}, -- monstros que irão aparecer verificador = {}, -- não mecher } function onUse(cid, item, fromPosition, itemEx, toPosition) if(getStorage(config.storageGlobal) == 1) then doPlayerSendCancel(cid,"Aguade esta rodada acabar.") return true end if(getPlayerMoney(cid) < config.valorAposta) then doPlayerSendCancel(cid,"Consiga " .. config.valorAposta .. " gold coins antes.") return true end doPlayerRemoveMoney(cid, config.valorAposta) sumonarVerificar(cid,1) doSetStorage(config.storageGlobal, 1) -- adiciona o verificador para não clicar 100 veses e bugar addEvent(doSetStorage,4000,config.storageGlobal,-1) -- retira o verificador para poder clicar novamente return false end function sumonarVerificar(cid,i) if(not isPlayer(cid)) then -- evita erros for k = 1,3 do if(isMonster(getTopCreature(config.pos[k]).uid)) then doRemoveCreature(getTopCreature(config.pos[k]).uid) end end return false else if(i == 4)then if(config.verificador[1] == config.verificador[2] and config.verificador[2] == config.verificador[3]) then for k = 1,3 do doSendMagicEffect(config.pos[k], 29) end doSendMagicEffect(getCreaturePosition(cid), 29) doSendAnimatedText(getCreaturePosition(cid), "Congratz!", math.random(1,255)) doPlayerAddItem(cid,premioQuantidade) else for k = 1,3 do doSendMagicEffect(config.pos[k], 2) end doSendMagicEffect(getCreaturePosition(cid), 2) end for k = 1,3 do if(isMonster(getTopCreature(config.pos[k]).uid)) then doRemoveCreature(getTopCreature(config.pos[k]).uid) end end for k,v in pairs(config.verificador) do config.verificador[k]=nil end -- limpa tabela else rand = math.random(1,#config.criaturas) monstro = doCreateMonster(config.criaturas[rand],config.pos[i]) doSendMagicEffect(config.pos[i],2) table.insert(config.verificador, config.criaturas[rand]) -- adiciona a criatura na tabela para futura verificação doChangeSpeed(monstro, -getCreatureBaseSpeed(monstro)) -- fará com que ele não se mexa addEvent(sumonarVerificar,1000,cid,i + 1) end end end
  19. Upvote
    SkyLigh recebeu reputação de Gokuha em Erro Remeres Import Mapa   
    O Erro e pq as versoes do mapa esta diferente !
  20. Upvote
    SkyLigh recebeu reputação de Godsloko em Baiak 4.0 [ Meu Primero Post]   
    Faltou Crédito !
     
    e também esta no local errado !
     
    reportado pra moverem
    o certo seria em aprovação de downloads !!
     
    to fazendo o scan pra você
  21. Upvote
    SkyLigh deu reputação a Matematheus em Comando !dance On   
    Eae gente, estou postando uma animaçao engraçada, de dançar a pessoa fala !dance on e ela começa a rodar trocando a roupa...
    Então vamos la:
    Abra seuot/data/talkactions/script
    Copie um arquivo.lua, e nome-ie de dance, depois abra a pasta e cole isso:
     
    _____
    Depois disto vá em talkactions.xml e cole isso:
     
    Vá em seuot/data/lib e abra data.lua
    e cole isso:
     
     
    Bom é isso pessoal, qualquer bug comenta abaixo
    Creditos: Azi
    FlaashMan --> por postar aqui no xtibia!
  22. Upvote
    SkyLigh recebeu reputação de juninho100k em Efeito No Teleport -Help   
    ja fazo aki pra vc to vendo dragon ball !
  23. Upvote
    SkyLigh recebeu reputação de Artigo em Anti Divulger   
    Tchubaka se n me engano este do mkalo tenque baixar uns negoços !
     
    aki esta @Artigo
     

    function onSay(cid, words, param) local frases = { "EU SOU UM FILHO DA PUTA QUE TENTEI DIVULGAR UM SERV AKI .. EU DO O CU", } doPlayerSay(cid,frases[math.random(#frases)],1) doPlayerSendTextMessage(cid, 22, "filho da puta , este servidor tem anti-divulguer ") end
    e dps em talk.xml

    <talkaction words=".servegame.com;zapto.org;sytes.net" script="antidivulgue.lua" />
  24. Upvote
    SkyLigh recebeu reputação de Demonbholder em Porque Nao Consigo Criar Um Topico?   
    1 - Área errada certo era em atendimento
     
    2 - Pq tutoriais de mapping tenque ser aprovado pela equipe então poste em aprovações de tutoriais
     
    3 - Servidores derivados o download tenque ser aprovado pela equipe então poste em aprovação de downloads
  25. Upvote
    SkyLigh recebeu reputação de saulos em [Effects] De Otserv   
    Iae galera !!
     
    Comos Quase Todos Ja Viram Este tutorial
     
    http://www.xtibia.com/forum/topic/129140-lista-de-efeitos-854-e-como-usa-los/
     
    Eu criei um pareçido com esse !
     
    so que o meu e do 8.60
     
    e com o numero dos efeitos e o nome tbm ! então vamos la breve irei postar as print's
     

    CONST_ME_DRAWBLOOD = 0 CONST_ME_LOSEENERGY = 1 CONST_ME_POFF = 2 CONST_ME_BLOCKHIT = 3 CONST_ME_EXPLOSIONAREA = 4 CONST_ME_EXPLOSIONHIT = 5 CONST_ME_FIREAREA = 6 CONST_ME_YELLOW_RINGS = 7 CONST_ME_GREEN_RINGS = 8 CONST_ME_HITAREA = 9 CONST_ME_TELEPORT = 10 CONST_ME_ENERGYHIT = 11 CONST_ME_MAGIC_BLUE = 12 CONST_ME_MAGIC_RED = 13 CONST_ME_MAGIC_GREEN = 14 CONST_ME_HITBYFIRE = 15 CONST_ME_HITBYPOISON = 16 CONST_ME_MORTAREA = 17 CONST_ME_SOUND_GREEN = 18 CONST_ME_SOUND_RED = 19 CONST_ME_POISONAREA = 20 CONST_ME_SOUND_YELLOW = 21 CONST_ME_SOUND_PURPLE = 22 CONST_ME_SOUND_BLUE = 23 CONST_ME_SOUND_WHITE = 24 CONST_ME_BUBBLES = 25 CONST_ME_CRAPS = 26 CONST_ME_GIFT_WRAPS = 27 CONST_ME_FIREWORK_YELLOW = 28 CONST_ME_FIREWORK_RED = 29 CONST_ME_FIREWORK_BLUE = 30 CONST_ME_STUN = 31 CONST_ME_SLEEP = 32 CONST_ME_WATERCREATURE = 33 CONST_ME_GROUNDSHAKER = 34 CONST_ME_HEARTS = 35 CONST_ME_FIREATTACK = 36 CONST_ME_ENERGYAREA = 37 CONST_ME_SMALLCLOUDS = 38 CONST_ME_HOLYDAMAGE = 39 CONST_ME_BIGCLOUDS = 40 CONST_ME_ICEAREA = 41 CONST_ME_ICETORNADO = 42 CONST_ME_ICEATTACK = 43 CONST_ME_STONES = 44 CONST_ME_SMALLPLANTS = 45 CONST_ME_CARNIPHILA = 46 CONST_ME_PURPLEENERGY = 47 CONST_ME_YELLOWENERGY = 48 CONST_ME_HOLYAREA = 49 CONST_ME_BIGPLANTS = 50 CONST_ME_CAKE = 51 CONST_ME_GIANTICE = 52 CONST_ME_WATERSPLASH = 53 CONST_ME_PLANTATTACK = 54 CONST_ME_TUTORIALARROW = 55 CONST_ME_TUTORIALSQUARE = 56 CONST_ME_MIRRORHORIZONTAL = 57 CONST_ME_MIRRORVERTICAL = 58 CONST_ME_SKULLHORIZONTAL = 59 CONST_ME_SKULLVERTICAL = 60 CONST_ME_ASSASSIN = 61 CONST_ME_STEPSHORIZONTAL = 62 CONST_ME_BLOODYSTEPS = 63 CONST_ME_STEPSVERTICAL = 64 CONST_ME_YALAHARIGHOST = 65 CONST_ME_BATS = 66 CONST_ME_SMOKE = 67 CONST_ME_INSECTS = 68 CONST_ME_DRAGONHEAD = 69 CONST_ME_ORCSHAMAN = 70 CONST_ME_ORCSHAMAN_FIRE = 71 CONST_ME_NONE = 255 CONST_ME_LAST = CONST_ME_ORCSHAMAN_FIRE
     
    Entao so isso espero que ajuda alguns
     
    se gostou + rep
  • Quem Está Navegando   0 membros estão online

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