Ir para conteúdo

Sequeled

Campones
  • Total de itens

    23
  • Registro em

  • Última visita

Sobre Sequeled

Últimos Visitantes

1636 visualizações

Sequeled's Achievements

  1. Vc tem q trocar a Rsa Key que tem la no source pra da versao que vc quer
  2. esse script n eh de minha autoria... cria um arquivo chamado potions.lua na pasta actions/scripts e ponha nele local ultimateHealthPot = 8473 local greatHealthPot = 7591 local greatManaPot = 7590 local greatSpiritPot = 8472 local strongHealthPot = 7588 local strongManaPot = 7589 local healthPot = 7618 local manaPot = 7620 local smallHealthPot = 8704 local antidotePot = 8474 local greatEmptyPot = 0 local strongEmptyPot = 0 local emptyPot = 0 local antidote = createCombatObject() setCombatParam(antidote, COMBAT_PARAM_TYPE, COMBAT_HEALING) setCombatParam(antidote, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE) setCombatParam(antidote, COMBAT_PARAM_TARGETCASTERORTOPMOST, TRUE) setCombatParam(antidote, COMBAT_PARAM_AGGRESSIVE, FALSE) setCombatParam(antidote, COMBAT_PARAM_DISPEL, CONDITION_POISON) local exhaust = createConditionObject(CONDITION_EXHAUST_HEAL) setConditionParam(exhaust, CONDITION_PARAM_TICKS, getConfigInfo('timeBetweenExActions')) function onUse(cid, item, fromPosition, itemEx, toPosition) if(itemEx.uid ~= cid or itemEx.itemid ~= 1) then return TRUE end if(getCreatureCondition(cid, CONDITION_EXHAUST_HEAL) == TRUE) then doPlayerSendDefaultCancel(cid, RETURNVALUE_YOUAREEXHAUSTED) return TRUE end if(item.itemid == antidotePot) then if(doCombat(cid, antidote, numberToVariant(cid)) == LUA_ERROR) then return FALSE end doAddCondition(cid, exhaust) doCreatureSay(cid, "Aaaah...", TALKTYPE_ORANGE_1) doTransformItem(item.uid, emptyPot) elseif(item.itemid == smallHealthPot) then if(doTargetCombatHealth(0, cid, COMBAT_HEALING, 50, 100, CONST_ME_MAGIC_BLUE) == LUA_ERROR) then return FALSE end doAddCondition(cid, exhaust) doCreatureSay(cid, "Aaaah...", TALKTYPE_ORANGE_1) doTransformItem(item.uid, emptyPot) elseif(item.itemid == healthPot) then if(doTargetCombatHealth(0, cid, COMBAT_HEALING, 100, 200, CONST_ME_MAGIC_BLUE) == LUA_ERROR) then return FALSE end doAddCondition(cid, exhaust) doCreatureSay(cid, "Aaaah...", TALKTYPE_ORANGE_1) doTransformItem(item.uid, emptyPot) elseif(item.itemid == manaPot) then if(doTargetCombatMana(0, cid, 70, 130, CONST_ME_MAGIC_BLUE) == LUA_ERROR) then return FALSE end doAddCondition(cid, exhaust) doCreatureSay(cid, "Aaaah...", TALKTYPE_ORANGE_1) doTransformItem(item.uid, emptyPot) elseif(item.itemid == strongHealthPot) then if(not(isKnight(cid) or isPaladin(cid)) or (getPlayerLevel(cid) < 50)) and not(getPlayerGroupId(cid) >= 2) then doCreatureSay(cid, "This potion can only be consumed by paladins and knights of level 50 or higher.", TALKTYPE_ORANGE_1) return TRUE end if(doTargetCombatHealth(0, cid, COMBAT_HEALING, 200, 400, CONST_ME_MAGIC_BLUE) == LUA_ERROR) then return FALSE end doAddCondition(cid, exhaust) doCreatureSay(cid, "Aaaah...", TALKTYPE_ORANGE_1) doTransformItem(item.uid, strongEmptyPot) elseif(item.itemid == strongManaPot) then if(not(isSorcerer(cid) or isDruid(cid) or isPaladin(cid)) or (getPlayerLevel(cid) < 50)) and not(getPlayerGroupId(cid) >= 2) then doCreatureSay(cid, "This potion can only be consumed by sorcerers, druids and paladins of level 50 or higher.", TALKTYPE_ORANGE_1) return TRUE end if(doTargetCombatMana(0, cid, 110, 190, CONST_ME_MAGIC_BLUE) == LUA_ERROR) then return FALSE end doAddCondition(cid, exhaust) doCreatureSay(cid, "Aaaah...", TALKTYPE_ORANGE_1) doTransformItem(item.uid, strongEmptyPot) elseif(item.itemid == greatSpiritPot) then if(not(isPaladin(cid)) or (getPlayerLevel(cid) < 80)) and not(getPlayerGroupId(cid) >= 2) then doCreatureSay(cid, "This potion can only be consumed by paladins of level 80 or higher.", TALKTYPE_ORANGE_1) return TRUE end if(doTargetCombatHealth(0, cid, COMBAT_HEALING, 200, 400, CONST_ME_MAGIC_BLUE) == LUA_ERROR or doTargetCombatMana(0, cid, 110, 190, CONST_ME_MAGIC_BLUE) == LUA_ERROR) then return FALSE end doAddCondition(cid, exhaust) doCreatureSay(cid, "Aaaah...", TALKTYPE_ORANGE_1) doTransformItem(item.uid, greatEmptyPot) elseif(item.itemid == greatHealthPot) then if(not(isKnight(cid)) or (getPlayerLevel(cid) < 80)) and not(getPlayerGroupId(cid) >= 2) then doCreatureSay(cid, "This potion can only be consumed by knights of level 80 or higher.", TALKTYPE_ORANGE_1) return TRUE end if(doTargetCombatHealth(0, cid, COMBAT_HEALING, 500, 700, CONST_ME_MAGIC_BLUE) == LUA_ERROR) then return FALSE end doAddCondition(cid, exhaust) doCreatureSay(cid, "Aaaah...", TALKTYPE_ORANGE_1) doTransformItem(item.uid, greatEmptyPot) elseif(item.itemid == greatManaPot) then if(not(isSorcerer(cid) or isDruid(cid)) or (getPlayerLevel(cid) < 80)) and not(getPlayerGroupId(cid) >= 2) then doCreatureSay(cid, "This potion can only be consumed by sorcerers and druids of level 80 or higher.", TALKTYPE_ORANGE_1) return TRUE end if(doTargetCombatMana(0, cid, 200, 300, CONST_ME_MAGIC_BLUE) == LUA_ERROR) then return FALSE end doAddCondition(cid, exhaust) doCreatureSay(cid, "Aaaah...", TALKTYPE_ORANGE_1) doTransformItem(item.uid, greatEmptyPot) elseif(item.itemid == ultimateHealthPot) then if(not(isKnight(cid)) or (getPlayerLevel(cid) < 130)) and not(getPlayerGroupId(cid) >= 2) then doCreatureSay(cid, "This potion can only be consumed by knights of level 130 or higher.", TALKTYPE_ORANGE_1) return TRUE end if(doTargetCombatHealth(0, cid, COMBAT_HEALING, 800, 1000, CONST_ME_MAGIC_BLUE) == LUA_ERROR) then return FALSE end doAddCondition(cid, exhaust) doCreatureSay(cid, "Aaaah...", TALKTYPE_ORANGE_1) doTransformItem(item.uid, greatEmptyPot) end return TRUE end e depois em actions.xml adicione isso clique em spoil <action itemid="7588" script="other/potions.lua"/> <action itemid="7589" script="other/potions.lua"/> <action itemid="7590" script="other/potions.lua"/> <action itemid="7591" script="other/potions.lua"/> <action itemid="7618" script="other/potions.lua"/> <action itemid="7620" script="other/potions.lua"/> <action itemid="8472" script="other/potions.lua"/> <action itemid="8473" script="other/potions.lua"/> <action itemid="8474" script="other/potions.lua"/> <action itemid="8704" script="other/potions.lua"/> pronto arrumado
  3. Este script funciona assim: toda vez que você matar um player vc vai upar e você pode fazer muitas outras funções apartir dessa. eu fiz outra só q alguns podem n gostar por isso editei e deixei só isso é quase a mesma função q esse script só q conta os frags e adiciona pelo fishing spoakpoaskposakopas Vamos ao que interessa... Abra a pasta creaturescripts/scripts abra o arquivo login E ponha debaixo da function onLogin(cid) registerCreatureEvent(cid, "Killed") crie um arquivo chamado exp.lua na pasta dos scripts cole nele local pos = getPlayerPosition(cid) function onPrepareDeath(cid, killer) onKill(killer, cid) end function onKill(cid, target) if isPlayer(cid) then -- se for um jogador killerName = getCreatureName(cid) --nome do matador do matador name = getCreatureName(target) --pega o nome do morto lvl = getPlayerLevel(target) --level do morto if lvl < 400 then doPlayerAddExp(cid, 2225555) elseif lvl > 399 then doPlayerAddExp(cid, 55555555) else doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "Bug ?") end doPlayerSendTextMessage(cid, MESSAGE_STATUS_WARNING, "You killed "..name.." go kill next.") doSendMagicEffect(pos, 29) end end agora va em creaturescripts.xml e adicione <event type="PrepareDeath" name="Killed" script="exp.lua"/> Comentem ai e Avaliem tb =*
  4. TRojan Generic11.dsu detected on open n baixem ta com trojan ;x
  5. Sequeled

    Helmet Tele

    Eu n tenho muita criatividade pra criar scripts dai como n tenho posts criei esse aki espero q gostem Esse script é um teleport que feito pelo winged helmet vc da use no winged e depois no seu char .... vc vai direcionar tpw pode ser Céu ... um lugar do mapa do seu ot tranquilo ou Inferno ... um respawn de demons e talz Pode ser bem util como teleport pros respawns :] E n se esqueça de quando acabar criar helm de id 2474 primeiramente coloquem em actions.xml <action itemid="2474" script="golden.lua"/> Em seguida crie um arquivo na pasta actions/scripts chamado golden.lua abra o arquivo e cole local f = {x=1062, y=607, z=7} -- posiçao do efeito onde vc vai aparecer -- function onUse(cid, item, fromPosition, itemEx, toPosition) if getPlayerLevel(cid) < 100 then -- Para lvl menor que 100 -- doTeleportThing(cid,{x=1062, y=607, z=7}) -- posiçao pra onde vai ser teleportado -- doSendMagicEffect(fromPosition, 10) -- posição do efeito onde vc esta -- doSendMagicEffect(f, 10) elseif getPlayerLevel(cid) < 200 then -- para level 200 menos e só vai até lvl100-- doTeleportThing(cid, {x=1062, y=607, z=7}) -- posição diferente se vc quizer-- doSendMagicEffect(fromPosition, 10) doSendMagicEffect(f, 10) elseif getPlayerLevel(cid) < 300 then -- para level 300 menos e só vai até lvl200-- doTeleportThing(cid, {x=1062, y=607, z=7}) -- posição diferente se vc quizer-- doSendMagicEffect(fromPosition, 10) doSendMagicEffect(f, 10) elseif getPlayerLevel(cid) > 200 then -- para level 200 + e vai direto-- doTeleportThing(cid, {x=1062, y=607, z=7}) -- posição diferente se vc quizer-- doSendMagicEffect(fromPosition, 10) doSendMagicEffect(f, 10) end end e pronto ta feito seu teleport maléfico q talvez confunda as pessoas do seu ot ... fui
  6. Sequeled

    Fluids 8.1

    estou concertando o script
  7. Eu tinha esse monstro funfando desde a versão 7.8 + parabens fico bom seu trabalho ^^
  8. fico mt bom só q falto algum servidor 8.1 pra jogar =/
  9. mt bom lek parabens :lol: continue assim
  10. Sequeled

    Dice

    vamos la script funfando 99% perfect intao vamos começar... abra o actions.xml pelo bloco de notas e ache "-- Others" e adicione os scripts assim -- Others <action itemid="5792" script="dice.lua" /> <action itemid="5794" script="dice2.lua" /> <action itemid="5793" script="dice1.lua" /> <action itemid="5796" script="dice4.lua" /> <action itemid="5795" script="dice3.lua" /> <action itemid="5797" script="dice5.lua" /> <_< agora crie 6 arquivos lua e renomeia assim " dice.lua " , " dice2.lua " , " dice1.lua ", " dice4.lua " , "dice3.lua " , dice5.lua " vo mandar por ordem dice.lua --Action by Sequeled-- function onUse(cid, item, frompos, item2, topos) if getPlayerAccess(cid) < 6 then lol = math.random(206,207) doSendAnimatedText(getPlayerPosition(cid), "Rolled 5", lol) doSendMagicEffect(frompos, 26) else doPlayerAddHealth(cid,-200) end doTransformItem(item.uid,item.itemid+1) return 0 end pronto o primeiro falta 5 ainda dice1.lua --Action by Sequeled-- function onUse(cid, item, frompos, item2, topos) if getPlayerAccess(cid) < 6 then lol = math.random(206,207) doSendAnimatedText(getPlayerPosition(cid), "Rolled 6", lol) doSendMagicEffect(frompos, 26) else doPlayerAddHealth(cid,-200) end doTransformItem(item.uid,item.itemid+1) return 0 end dice2.lua --Action by Sequeled-- function onUse(cid, item, frompos, item2, topos) if getPlayerAccess(cid) < 6 then lol = math.random(206,207) doSendAnimatedText(getPlayerPosition(cid), "Rolled 2", lol) doSendMagicEffect(frompos, 26) else doPlayerAddHealth(cid,-200) end doTransformItem(item.uid,item.itemid+1) return 0 end dice3.lua --Action by Sequeled-- function onUse(cid, item, frompos, item2, topos) if getPlayerAccess(cid) < 6 then lol = math.random(206,207) doSendAnimatedText(getPlayerPosition(cid), "Rolled 4", lol) doSendMagicEffect(frompos, 26) else doPlayerAddHealth(cid,-200) end doTransformItem(item.uid,item.itemid+1) return 0 end dice4.lua --Action by Sequeled-- function onUse(cid, item, frompos, item2, topos) if getPlayerAccess(cid) < 6 then lol = math.random(206,207) doSendAnimatedText(getPlayerPosition(cid), "Rolled 3", lol) doSendMagicEffect(frompos, 26) else doPlayerAddHealth(cid,-200) end doTransformItem(item.uid,item.itemid+1) return 0 end dice5.lua --Action by Sequeled-- function onUse(cid, item, frompos, item2, topos) if getPlayerAccess(cid) < 6 then lol = math.random(206,207) doSendAnimatedText(getPlayerPosition(cid), "Rolled 1", lol) doSendMagicEffect(frompos, 26) else doPlayerAddHealth(cid,-200) end doTransformItem(item.uid,item.itemid-5) return 1 end Não copiem fora de ordem se não o script não funcionara!!!! depois é só fazer com o gm /n dice 1 espero q gostem comentem ae flws
  11. olha la eu atualizei tiha esquecido de avisar pra usarem a runa de id 2312 :lol:
  12. tpw uma runa engana noob vc cria ela com gm e usa com gm sai muitos efeitos maneiros auheauheau Tpw deixe um no chao para um noob usar, quando ele usar vai sumonar 9 morgaroth uaheuhuea = Dead + vcs podem trocar podem por pra sumonar outro bixo Lá vai... primeiramente cria um arquivo .lua depois abra ele e coloque function onUse(cid, item, frompos, item2, topos) num=0 repeat if getPlayerAccess(cid) == 5 then n = math.random(0,25) doSendMagicEffect(frompos,n) else doSummonCreature("[color="#FF0000"]morgaroth[/color]", frompos) end num=num+1 until num>4 doRemoveItem(item.uid, 1) return 1 end Observação onde ta em vermelho pode colocar outro monstro :lol: e é necessario que esse arquivo lua tenha o mesmo nome que o do actions.xml depois abra actions.xml la em objects pula uma linha e adiciona <action itemid="2312" script="teste.lua"/> Para pegar a runa não esqueçam de sumonar o item 2312 =) Para pegar a runa não esqueçam de sumonar o item 2312 =) Para pegar a runa não esqueçam de sumonar o item 2312 =) comentem ae uaheuae
  13. poxyhere.no-ip.biz
    my ot =]
  • Quem Está Navegando   0 membros estão online

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