Ir para conteúdo

Dasdor

Campones
  • Total de itens

    80
  • Registro em

  • Última visita

Tudo que Dasdor postou

  1. Muito bom essa iniciativa, com certeza participarei das aulas :smile_positivo:
  2. Psé cara 8.54 é mil grau mas tem muitos programas pra kickar server 8.54, esses anti nukers nao funcionao se sobrecarregar de mais cai do msm jeito
  3. Olá a todos, faz tempo que eu não mexo com otserv e então pensei em criar um servidor derivado, mas não sei qual a versão mais fiel a um servidor estável como: *Proteção contra kicks *Bugs em geral *Compatibilidades com Scripts *Sources Com qual versão vocês acham que eu deveria começar um servidor derivado? Ou qual versão vocês mais gostam? Não deixe de comentar e obrigado antes de tudo.
  4. idai q vc ganhou 100 milhões de um cara? vc devia é agradecer a ele
  5. Dasdor

    Sub-vocaçao

    Ótimo funcionou vc é d++ viu é... temq como por pra quando da use ele teleporta pra um lugar x ?
  6. Dasdor

    Sub-vocaçao

    pode colocar o id da vocation? ou tem que ser o nome mesmo?
  7. Dasdor

    Sub-vocaçao

    vão ser todas as vocs e sim só pode usar uma vez e nao tera condições
  8. Dasdor

    Sub-vocaçao

    não tem como fazer em um arquivo só? caso não, sim são duas actions
  9. Dasdor

    Sub-vocaçao

    Olá a todos eu vim fazer esse pedido aqui no xtibia porque eu sei que aqui tem os melhores scripts É o seguinte, é um item q o player usa e ganha a promotion dele, mais nao é so uma promotion que tem, intao precisaria de 2 items pra ele escolher qual das vocation ele quer ser, por exemplo eu tenho um sorcerer e a duas promotion, fire sorcerer e energy sorcerer para eu me tornar um fire sorcerer eu tenho q usar uma fire stone e se eu quizer ser um energy sorcerer eu uso uma energy stone entendes??
  10. Olá pessoas estou fazendo um servidor de mortal kombat com um amigo meu, faz um tempinho e queria poder terminar pelo menos em abril de 2014, mais só eu e ele nao vamos conseguir se alguém tiver disposto a dar uma mão qual quer ajuda seria bem vinda... se tiver disposto a ajudar eu irei falar mais informações de qual é nosso objetivo, entre outras coisas que não seria legal falar no topico Algumas imagens: Hell hand do scorpion Para quem não conhece a hell hand ai esta: http://www.youtube.com/watch?v=r0dQx9LmpA8 Outfits: Tarkatan Ninja Cyborgs todos os outfits podem ter a cor alterada são só algumas imagens se quiser ver mais curta a pagina do facebook https://www.facebook.com/MortalKombatDream?ref=hl se alguém tiver interessado em ajudar mande pm pelo forum
  11. Dasdor

    Potion

    como eu faço pra cada pot tem um efeito diferente por exemplo quando eu usa mana potion faze o CONST_ME_MAGIC_BLUE e quando eu usa o health potion faze o CONST_ME_MAGIC_RED? local config = { removeOnUse = "no", usableOnTarget = "no", -- can be used on target? (fe. healing friend) splashable = "yes", realAnimation = "no", -- make text effect visible only for players in range 1x1 healthMultiplier = 1.0, manaMultiplier = 1.0 } config.removeOnUse = getBooleanFromString(config.removeOnUse) config.usableOnTarget = getBooleanFromString(config.usableOnTarget) config.splashable = getBooleanFromString(config.splashable) config.realAnimation = getBooleanFromString(config.realAnimation) local POTIONS = { [8704] = {empty = 7636, splash = 2, health = {50, 100}}, -- small health potion [7618] = {empty = 7636, splash = 2, health = {20, 50}}, -- health potion [7588] = {empty = 7634, splash = 2, health = {80, 100}}, [7591] = {empty = 7635, splash = 2, health = {500, 700}, level = 80, vocations = {4, 8}, vocStr = "knights"}, -- great health potion [8473] = {empty = 7635, splash = 2, health = {800, 1000}, level = 130, vocations = {4, 8}, vocStr = "knights"}, -- ultimate health potion [7620] = {empty = 7636, splash = 7, mana = {20, 50}}, -- mana potion [7589] = {empty = 7634, splash = 7, mana = {80, 100}}, [7590] = {empty = 7635, splash = 7, mana = {200, 300}, level = 80, vocations = {1, 2, 5, 6}, vocStr = "sorcerers and druids"}, -- great mana potion [8472] = {empty = 7635, splash = 3, health = {200, 400}, mana = {110, 190}, level = 80, vocations = {3, 7}, vocStr = "paladins"} -- great spirit potion } local exhaust = createConditionObject(CONDITION_EXHAUST) setConditionParam(exhaust, CONDITION_PARAM_TICKS, (getConfigInfo('timeBetweenExActions') - 100)) function onUse(cid, item, fromPosition, itemEx, toPosition) local potion = POTIONS[item.itemid] if(not potion) then return false end if(not isPlayer(itemEx.uid) or (not config.usableOnTarget and cid ~= itemEx.uid)) then if(not config.splashable) then return false end if(toPosition.x == CONTAINER_POSITION) then toPosition = getThingPos(item.uid) end doDecayItem(doCreateItem(2016, potion.splash, toPosition)) doTransformItem(item.uid, potion.empty) return true end if(hasCondition(cid, CONDITION_EXHAUST_HEAL)) then doPlayerSendDefaultCancel(cid, RETURNVALUE_YOUAREEXHAUSTED) return true end if(((potion.level and getPlayerLevel(cid) < potion.level) or (potion.vocations and not isInArray(potion.vocations, getPlayerVocation(cid)))) and not getPlayerCustomFlagValue(cid, PLAYERCUSTOMFLAG_GAMEMASTERPRIVILEGES)) then doCreatureSay(itemEx.uid, "Only " .. potion.vocStr .. (potion.level and (" of level " .. potion.level) or "") .. " or above may drink this fluid.", TALKTYPE_ORANGE_1) return true end local health = potion.health if(health and not doCreatureAddHealth(itemEx.uid, math.ceil(math.random(health[1], health[2]) * config.healthMultiplier))) then return false end local mana = potion.mana if(mana and not doPlayerAddMana(itemEx.uid, math.ceil(math.random(mana[1], mana[2]) * config.manaMultiplier))) then return false end if(not realAnimation) then doSendMagicEffect(getThingPos(itemEx.uid), CONST_ME_MAGIC_BLUE) doCreatureSay(itemEx.uid, "Aaaah...", TALKTYPE_ORANGE_1) else for i, tid in ipairs(getSpectators(getCreaturePosition(cid), 1, 1)) do if(isPlayer(tid)) then doCreatureSay(itemEx.uid, "Aaaah...", TALKTYPE_ORANGE_1, false, tid) end end end doAddCondition(cid, exhaust) if(not potion.empty or config.removeOnUse) then doRemoveItem(item.uid) return true end doTransformItem(item.uid, potion.empty) return true end
  12. Dasdor

    Otclient hotkeys

    como eu deixo as hotkeys do otclient igual a do tibia 7.6??? sem poder usar items nas hotkeys apenas palavras
  13. Eu queria saber se um server de Mortal Kombat entreteria o publico que curte servidores derivados... estou montando um server com alguns amigos meus! Criaçao de personagem vc podera escolher entre algumas raças, nao estamos certo ainda quais terão por em quanto nosso objetivo e dar liberdade na criação de um personagem se vc ja jogou Mortal Kombat Armageddon e criou um personagem para vc, é nisso q nos estamos se baseando por exemplo: conforme vc vai passando de nivel ganhara novas magias e vc podera escolher se prefere a green bolt do Jhonny Cage ou skull ball do Quan Chi ou se quizer fazer um personagem identico ao Sub-Zero vc pode!! Entre outras coisas nao vou falar tudo, pq se não perde a graça quando ficar online.. mais só para vcs terem uma ideia quais coisas terao sem falar mto!!!! *Goro's Lair *Mortal Kombat Tower *Outworld *Earthrealm *Todas as spells dos personagens *E mto mais http://www.facebook.com/MortalKombatDream Tem alguma critica, duvida, ideia? nao deixe de comentar
  14. [16/05/2013 18:54:54] [Error - CreatureScript Interface] [16/05/2013 18:54:54] data/creaturescripts/scripts/regeneration.lua:onLogin [16/05/2013 18:54:54] Description: [16/05/2013 18:54:54] (internalGetPlayerInfo) Player not found when requesting player info #3 [16/05/2013 18:54:54] [Error - CreatureScript Interface] [16/05/2013 18:54:54] data/creaturescripts/scripts/regeneration.lua:onLogin [16/05/2013 18:54:54] Description: [16/05/2013 18:54:54] data/creaturescripts/scripts/regeneration.lua:15: attempt to compare number with boolean [16/05/2013 18:54:54] stack traceback: [16/05/2013 18:54:54] data/creaturescripts/scripts/regeneration.lua:15: in function 'heal' [16/05/2013 18:54:54] data/creaturescripts/scripts/regeneration.lua:39: in function <data/creaturescripts/scripts/regeneration.lua:37>
  15. Dasdor

    Bomberman Online

    ta dando pra entrar agora eu coloquei otro client
  16. Dasdor

    Bomberman Online

    é 1/1 account manager eu nao sei porque ta com virus... eu compilei o client em molebox, mais garanto q nao é nada de mais é algo como Ws.reputation.1 de risco very low
  17. Dasdor

    Bomberman Online

    Se vc ja jogou bomberman vc vai gosta desse server é igual o bomberman de super nintendo... esta na faze beta ainda n tem muitas sprites o client nao ta bonito mais tem oque é preçiso para se divertir Ate agr só temos um Outfit. Temos os power ups e alguns player se divertindo intao é isso nao esperem muita coisa porque esta na faze beta!!!Importante Importante: para plantar a bomba basta aperta a tecla "L" do seu teclado caso estiver jogando no Lange Map agr se vc estiver jogando no Small Map vc aperta a tecla "S' para plantar a bomba... Download: http://www.mediafire.com/?4luubhh54d4dh38
  • Quem Está Navegando   0 membros estão online

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