Ir para conteúdo

Dasdor

Campones
  • Total de itens

    80
  • Registro em

  • Última visita

Posts postados por Dasdor

  1. 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. wink_smile.gif

  2. Olá a todos eu vim fazer esse pedido aqui no xtibia porque eu sei que aqui tem os melhores scriptshappy.png


    É 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??


  3. h1va.jpg

    star.gifstar.gifstar.gifstar.gifstar.gif
    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...happy.png
    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
    star.gifstar.gifstar.gifstar.gifstar.gif

    aaskull.gifaaskull.gifaaskull.gifaaskull.gifmk3_scorpion.gifmk3_subzero.gifmk3_ermac.gifmk3_reptile.gifmk3_rain.gifmk3_smoke.gifmk3_noob_sai_bot.gifaaskull.gifaaskull.gifaaskull.gifaaskull.gif

    Algumas imagens:

    Hell hand do scorpion

    1483049_406327856136891_1201479309_n.png

    Para quem não conhece a hell hand ai esta:

    http://www.youtube.com/watch?v=r0dQx9LmpA8

    aaskull.gifaaskull.gifaaskull.gifaaskull.gifmk3_scorpion.gifmk3_subzero.gifmk3_ermac.gifmk3_reptile.gifmk3_rain.gifmk3_smoke.gifmk3_noob_sai_bot.gifaaskull.gifaaskull.gifaaskull.gifaaskull.gif

    Outfits:

    Tarkatan

    797_344499958986348_1614248837_n.png

    Ninja

    383466_343708835732127_995605385_n.jpg

    Cyborgs

    603060_343345269101817_1758896294_n.jpg

    todos os outfits podem ter a cor alterada

    aaskull.gifaaskull.gifaaskull.gifaaskull.gifmk3_scorpion.gifmk3_subzero.gifmk3_ermac.gifmk3_reptile.gifmk3_rain.gifmk3_smoke.gifmk3_noob_sai_bot.gifaaskull.gifaaskull.gifaaskull.gifaaskull.gif

    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 forumback.pngback.pngback.png

  4. 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
    
    
  5. Eu queria saber se um server de Mortal Kombat entreteria o publico que curte servidores derivados...huh.png

     

    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..sleep.png

    mais só para vcs terem uma ideia quais coisas terao sem falar mto!!!!beurk.gif

     

    *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

  6. [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>

  7. 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.

    rererara.png

     

    Temos os power ups

    Power_Ups_BDS.png

     

    e alguns player se divertindo

    sdgsggy.png

    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...