Ir para conteúdo

yagoshira004

Campones
  • Total de itens

    55
  • Registro em

  • Última visita

Posts postados por yagoshira004

  1. Para TFS 1.2 - Versão 8.6

     

    Boa noite, procurei por todo o forum e nao encontrei, se ja existir peço desculpas!

     

    Gostaria  de um script que desse um "boost" pra uma criatura aleatoria, diariamente, praticamente igual ao tibia global onde todo dia um monstro diferente da um percentual de experiencia a mais e também tem maior chance de dropar mais loot!

     

    Alguem poderia me ajudar?

    Agredeço desde ja!

     

     

     

    aa.png

  2. http://jmeconnection.servegame.com/

    < - - - INAUGURAÇÃO BETA - - - >

    ABERTO SEXTA-FEIRA DIA 10 / 04
    TEST SERVER

     

    <!>

    AJUDE-NOS A TESTAR, ENCONTRAR ERROS E DESENVOLVER CADA VEZ MAIS

     

     


    RETRO VERSION 8.6
    FOCO EM RPG,UPLVL E PVP!
    MAPA PROPRIO
    VIP SYSTEM
    NOVA VOCACAO: YALAHARI
    NOVAS RUNAS E SPELLS EXCLUSIVAS
    NOVAS QUESTS

    24H ONLINE

    T

    RATES POR STAGE  -  (30X - 0,5X)

    CRIE SUA CONTA E CONHEÇA:


    http://jmeconnection.servegame.com/


    EQUIPE SUPPORT:
    [ADM] YAGO
    [ADM] FABIO
    [ADM] GUI

  3. local firstItems = {}
    firstItems[0] =
    {
    2173,
    2525,
    3965,
    2124,
    2457,
    2647,
    2643
    }
    firstItems[1] =
    {
    2173,
    2525,
    2190,
    2124,
    2457,
    2647,
    2643
    }
    firstItems[2] =
    {
    2173,
    2525,
    2182,
    2124,
    2457,
    2647,
    2643
    }
    firstItems[3] =
    {
    2173,
    2525,
    2399,
    2124,
    2457,
    2647,
    2643
    }
    firstItems[4] =
    {
    2173,
    2525,
    2428,
    2124,
    2457,
    2647,
    2643
    }
    firstItems[13] =
    {
    2173,
    2525,
    2428,
    2124,
    2457,
    2647,
    2643
    }


    function onLogin(cid)
    if getPlayerStorageValue(cid, 30001) == -1 then
    for i = 1, table.maxn(firstItems[getPlayerVocation(cid)]) do
    doPlayerAddItem(cid, firstItems[getPlayerVocation(cid)], 1)
    end
    if getPlayerSex(cid) == 0 then
    doPlayerAddItem(cid, 2463, 1)
    else
    doPlayerAddItem(cid, 2463, 1)
    end
    local bag = doPlayerAddItem(cid, 11235, 1)
    doAddContainerItem(bag, 2160, 10)
    doAddContainerItem(bag, 2554, 1)
    doAddContainerItem(bag, 2120, 1)
    doAddContainerItem(bag, 8602, 1)
    setPlayerStorageValue(cid, 30001, 1)
    end
    return TRUE
    end

     

     

     

    A vocação seria o ID:13

    eu ja coloquei ali, tem mais algo?

  4. Criei uma nova vocação no meu servidor, (fighter), ja adicionei ela no vocation.xml e ela aparece na hr de criar o char, porem na hora de logar no char, ele da esse erro no distro:


    [23:7:08.307] [Error - CreatureScript Interface]
    [23:7:08.312] data/creaturescripts/scripts/firstitems.lua:onLogin
    [23:7:08.314] Description:
    [23:7:08.315] data/creaturescripts/scripts/firstitems.lua:55: bad argument #1 to 'maxn' (table expected, got nil)
    [23:7:08.316] stack traceback:
    [23:7:08.318]   [C]: in function 'maxn'
    [23:7:08.321]   data/creaturescripts/scripts/firstitems.lua:55: in function <data/creaturescripts/scripts/firstitems.lua:53>
    [23:7:08.525] Fabinho has logged out.

    [23:7:08.635] [Error - CreatureScript Interface]
    [23:7:08.637] In a timer event called from:
    [23:7:08.640] data/creaturescripts/scripts/ExpGuild.lua:onLogin
    [23:7:08.647] Description:
    [23:7:08.663] (luaDoPlayerSendTextMessage) Player not found

    [/spoiler]
      
      alguém sabe o que fazer? ja adicionei os numeros no first items.xml mas não deu certo...

    ja pesquesei no forum e não achei nd a respeito....

  5. 13 horas atrás, Gugu Z.S disse:
    
    function Player:addSkillLevels(skill)
        if isInArray({SKILL_VITALITY, SKILL_STRENGHT, SKILL_FAITH, SKILL_INTELLIGENCE, SKILL_DEXTERITY, SKILL_RESISTANCE, SKILL_ENDURANCE}, skill) then
            local xp = math.ceil(self:getVocation():getRequiredSkillTries(skill, self:getSkillLevel(skill) + 1) / configManager.getNumber(configKeys.RATE_SKILL))
            self:addSkillTries(skill, xp)
            return true
        end
        if skill == SKILL_MAGLEVEL then
            local xp = math.ceil(self:getVocation():getRequiredManaSpent(self:getBaseMagicLevel() + 1) / configManager.getNumber(configKeys.RATE_MAGIC))
            self:addManaSpent(xp)
            return true
        end
    end
    
    function Player:assignSkillPoints(skill)
    
    	if getPlayerLevel(self) > 8 then
    		maxSkillformula = getPlayerLevel(self) * (3 - (0.02 * (getPlayerLevel(self) - 8)))
        	maxMagic = maxSkillformula * 0.5
    		maxVitality = maxSkillformula
    		maxStrenght = maxSkillformula
    		maxIntelligence = maxSkillformula
    		maxFaith = maxSkillformula
    		maxDexterity = maxSkillformula * 0.75
    		maxResistance = maxSkillformula
    		maxEndurance = maxSkillformula
    	end
    
    	if maxDexterity < 1 then maxDexterity = 1 end
    
    	if (skill == SKILL_MAGLEVEL) then
    		if self:getMagicLevel() < maxMagic then
    			self:addSkillLevels(SKILL_MAGLEVEL)
    			self:setStorageValue(pointsStorage, self:getStorageValue(pointsStorage) - skills[1][3])
    			return true
    	    else
    	    	return false
    	    end
    
    	elseif (skill == SKILL_VITALITY) then
    		if self:getSkillLevel(SKILL_VITALITY) < maxVitality then
    			self:addSkillLevels(SKILL_VITALITY, 1)
    			self:setStorageValue(pointsStorage, self:getStorageValue(pointsStorage) - skills[2][3])
    			return true
    	    else
    	    	return false
    	    end
    
    	elseif (skill == SKILL_STRENGHT) then
    		if self:getSkillLevel(SKILL_STRENGHT) < maxStrenght then
        		self:addSkillLevels(SKILL_STRENGHT, 1)
    			self:setStorageValue(pointsStorage, self:getStorageValue(pointsStorage) - skills[3][3])
    			--self:messageOnAdvance(SKILL_STRENGHT)
    			return true
    	    else
    	    	return false
    	    end
    
    	elseif (skill == SKILL_INTELLIGENCE) then
    		if self:getSkillLevel(SKILL_INTELLIGENCE) < maxIntelligence then
            	self:addSkillLevels(SKILL_INTELLIGENCE, 1)
    			self:setStorageValue(pointsStorage, self:getStorageValue(pointsStorage) - skills[4][3])
    			--self:messageOnAdvance(SKILL_INTELLIGENCE)
    	    	return true
    	    else
    	    	return false
    	    end
    
    	elseif (skill == SKILL_FAITH) then
    		if self:getSkillLevel(SKILL_FAITH) < maxFaith then
            	self:addSkillLevels(SKILL_FAITH, 1)
    			self:setStorageValue(pointsStorage, self:getStorageValue(pointsStorage) - skills[5][3])
    			--self:messageOnAdvance(SKILL_FAITH)
    			return true
    	    else
    	    	return false
    	    end
    
    	elseif (skill == SKILL_DEXTERITY) then
    		if self:getSkillLevel(SKILL_DEXTERITY) < maxDexterity then
            	self:addSkillLevels(SKILL_DEXTERITY, 1)
    			self:setStorageValue(pointsStorage, self:getStorageValue(pointsStorage) - skills[6][3])
    			return true
    	    else
    	    	return false
    	    end
    
    	elseif (skill == SKILL_RESISTANCE) then
    		if self:getSkillLevel(SKILL_RESISTANCE) < maxResistance then
            	self:addSkillLevels(SKILL_RESISTANCE, 1)
    			self:setStorageValue(pointsStorage, self:getStorageValue(pointsStorage) - skills[7][3])
    			return true
    	    else
    	    	return false
    	    end
    
    	elseif (skill == SKILL_ENDURANCE) then
    		if self:getSkillLevel(SKILL_ENDURANCE) < maxEndurance then
            	self:addSkillLevels(SKILL_ENDURANCE, 1)
    			self:setStorageValue(pointsStorage, self:getStorageValue(pointsStorage) - skills[8][3])
    			return true
    	    else
    	    	return false
    	    end
    	end
    end

     

    Como coloco no script mano?

     

    Obrigado pela ajuda!

  6. Olá rapaziada como estamos?

     

    Encontrei um script super bacana de comprar SKILLS via talkaction (ex: !comprar club)

    Ele remove uma quantidade de certo item e te da skills pro char

     

    Porém esse script nao está funcionando corretamente, ele está removendo o item, está deslogando o char mas nao está dando os skills

     

     

    SCRIPT

      Citar

    skill = {
       item = 2157, -- Item
       quantidade = 10, -- Quantidade
       quantidadeskill = 10, -- Skill adicionada
       limiteskill = 350 -- Limite
    }

    magicLevel = {
       item = 2157,
       quantidade = 15,
       quantidademl = 5,
       limitedeml = 200
    }

    skillID = {
       ["club"] = SKILL_CLUB,
       ["sword"]= SKILL_SWORD,
       ["axe"] = SKILL_AXE,
       ["distance"] = SKILL_DISTANCE,
       ["shielding"] = SKILL_SHIELD
    }

    vocationSkill = { -- Vocações - SKILL
       ["club"] = {4, 8, 13, 14},
       ["sword"] = {4, 8, 13, 14},
       ["axe"] = {4, 8, 13, 14},
       ["distance"] = {3, 7},
       ["shielding"] = {4, 8, 3, 7, 13, 14}
    }

    vocationMagicLevel = {1, 2, 5, 6} -- Vocações - MAGIC LEVEL
    protectZone = "sim"
    function onSay(cid, words, param, channel)
       local pid = getPlayerGUID(cid)
       if (protectZone == "sim") and (not getTilePzInfo(getCreaturePosition(cid))) then
           doPlayerSendCancel(cid, "Você precisa estar em protection zone pra poder comprar.")
       end

       if (param == '') then
           doPlayerSendTextMessage(cid, MESSAGE_INFO_DESCR, "Como usar: !comprar club; !comprar magiclevel.")
           return true
       end

       local storage, duration = 5, 5
       if (param == 'magiclevel') then
           if getPlayerMagLevel(cid) < magicLevel.limitedeml then
               if isInArray(vocationMagicLevel, getPlayerVocation(cid)) then
                   if doPlayerRemoveItem(cid, magicLevel.item, magicLevel.quantidade) then
                       if (os.time() - getPlayerStorageValue(cid, storage)) >= duration then
                           setPlayerStorageValue(cid, storage, os.time())
                           doRemoveCreature(cid, true)
                           db.query("UPDATE `players` SET `maglevel` = `maglevel` + ".. magicLevel.quantidademl .." WHERE `id` = ".. pid)
                       else
                           doPlayerSendCancel(cid, "Espere ".. duration .." segundos para comprar novamente.")
                       end
                   else
                       doPlayerSendCancel(cid, "Você não tem o item requerido.")
                   end
               else
                   doPlayerSendCancel(cid, "Voce não pode comprar magic level.")
               end
           else
               doPlayerSendCancel(cid, "Você chegou no limite de magic level.")
           end
           return true
       end

       if(skillID[param:lower()]) then
           if(getPlayerSkill(cid, skillID[param:lower()]) < skill.limiteskill) then
               if isInArray(vocationSkill[param:lower()], getPlayerVocation(cid)) then
                   if doPlayerRemoveItem(cid, skill.item, skill.quantidade) then
                       if (os.time() - getPlayerStorageValue(cid, storage)) >= duration then
                           setPlayerStorageValue(cid, storage, os.time())
                           doRemoveCreature(cid, true)
                           db.query("UPDATE `player_skills` SET `value` = `value` + ".. skill.quantidadeskill .." WHERE `player_id` = ".. pid .. " and `skillID[` = ".. skillID[param:lower()])
                       else
                           doPlayerSendCancel(cid, "Espere ".. duration .." segundos para comprar novamente.")
                       end
                   else
                       doPlayerSendCancel(cid, "Você não tem o item requerido.")
                   end
               else
                   doPlayerSendCancel(cid, "Voce não pode comprar este skill.")
               end
           else
               doPlayerSendCancel(cid, "Você chegou no limite de skill.")
           end
       else
           doPlayerSendCancel(cid, "Skill desconhecida.")
       end
       return true
    end
     

    alguem que manja consegue me ajudar? qual o erro

  7. Olá rapaziada tudo certo?

     

    Uso um sistema de reset no meu servidor via NPC...

     

    e queria adicionar duas funções nesse sistema...

    1 mostrar a quantidade de reset no LOOK

    e 2 mostrar a quantidade de resets no !RANK

     

    O script de reset q uso é esse:

     

      Citar

    local config = {
        minlevel = 330, --- level inical para resetar
        price = 100000, --- preço inicial para resetar
        newlevel = 8, --- level após reset
        priceByReset = 100000, --- preço acrescentado por reset
        percent = 100, ---- porcentagem da vida/mana que você terá ao resetar (em relação à sua antiga vida total)
        maxresets = 50,
        levelbyreset = 20 --- quanto de level vai precisar a mais no próximo reset
    }
    --- end config

    function getResets(uid)
        resets = getPlayerStorageValue(uid, 378378)
        if resets < 0 then
            resets = 0
        end
        return resets
    end

    local keywordHandler = KeywordHandler:new()
    local npcHandler = NpcHandler:new(keywordHandler)
    NpcSystem.parseParameters(npcHandler)
    local talkState = {}
     
    function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end
    function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end
    function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end
    function onThink()                  npcHandler:onThink()                  end
     
    function creatureSayCallback(cid, type, msg)
        if not npcHandler:isFocused(cid) then
            return false
        end
        local talkUser = NPCHANDLER_CONVBEHAVIOR == CONVERSATION_DEFAULT and 0 or cid

        function addReset(cid)
            if(npcHandler:isFocused(cid)) then
                npcHandler:releaseFocus(cid)
            end
            
            talkState[talkUser] = 0
            resets = getResets(cid)
            setPlayerStorageValue(cid, 378378, resets+1) 
            local hp = getCreatureMaxHealth(cid)
            local resethp = hp*(config.percent/100)
            setCreatureMaxHealth(cid, resethp)
            local differencehp = (hp - resethp)
            doCreatureAddHealth(cid, -differencehp)
            local mana = getCreatureMaxMana(cid)
            local resetmana = mana*(config.percent/100)
            setCreatureMaxMana(cid, resetmana)
            local differencemana = (mana - resetmana)
            doCreatureAddMana(cid, -differencemana)
            doRemoveCreature(cid)        
            local description = resets+1
            db.query("UPDATE `players` SET `description` = ' [Reset: "..description.."]' WHERE `players`.`id`= ".. playerid .."")
            db.query("UPDATE `players` SET `level`="..config.newlevel..",`experience`= 0 WHERE `players`.`id`= ".. playerid .."")
            return true
        end
        
        local newPrice = config.price + (getResets(cid) * config.priceByReset)
        local newminlevel = config.minlevel + (getResets(cid) * config.levelbyreset)

        if msgcontains(msg, 'reset') then
            if getResets(cid) < config.maxresets then
                selfSay('You want to reset your character? It will cost '..newPrice..' gp\'s!', cid)
                talkState[talkUser] = 1
            else
                selfSay('You already reached the maximum reset level!', cid)
            end
            
        elseif(msgcontains(msg, 'yes') and talkState[talkUser] == 1) then
            if getPlayerMoney(cid) < newPrice then
                selfSay('Its necessary to have at least '..newPrice..' gp\'s for reseting!', cid)
            elseif getPlayerLevel(cid) < newminlevel then
                selfSay('The minimum level for reseting is '..newminlevel..'!', cid)
            else
                doPlayerRemoveMoney(cid,newPrice)
                playerid = getPlayerGUID(cid)
                addEvent(function()
                    if isPlayer(cid) then
                        addReset(cid)
                    end
                end, 3000)
                local number = getResets(cid)+1
                local msg ="---[Reset: "..number.."]-- You have reseted!  You'll be disconnected in 3 seconds."
                doPlayerPopupFYI(cid, msg) 
                talkState[talkUser] = 0
                npcHandler:releaseFocus(cid)
            end
            talkState[talkUser] = 0
        elseif(msgcontains(msg, 'no')) and isInArray({1}, talkState[talkUser]) == TRUE then
            talkState[talkUser] = 0
            npcHandler:releaseFocus(cid)
            selfSay('Ok.', cid)
        elseif msgcontains(msg, 'quantity') then
            selfSay('You have a total of '..getResets(cid)..' reset(s).', cid)
            talkState[talkUser] = 0
        end
        return true
    end

    npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback)
    npcHandler:addModule(FocusModule:new())

     

     

    Creio que seja uma function bem simples, porem nao manjo nada disso...

    Agradeço.

  8. E ai glr, to precisando d ajuda p mudar um npc

    é o seguinte, ele vende uma segunda promotion por 50K de gps, e eu queria q ele vendesse a promotion por outro tipo de de moeda ao invez de gp, por exemplo por 30 gold ingot

    aparentemente ele funciona tudo ok, eu só queria mudar isso mesmo mas nao sei onde mexer...

     

     

    Esse é o script dele:

     

     

    local keywordHandler = KeywordHandler:new()
    local npcHandler = NpcHandler:new(keywordHandler)
    NpcSystem.parseParameters(npcHandler)
    local talkState = {}
    function onCreatureAppear(cid) npcHandler:onCreatureAppear(cid) end
    function onCreatureDisappear(cid) npcHandler:onCreatureDisappear(cid) end
    function onCreatureSay(cid, type, msg) npcHandler:onCreatureSay(cid, type, msg) end
    function onThink() npcHandler:onThink() end
    function creatureSayCallback(cid, type, msg)
    if(not npcHandler:isFocused(cid)) then
    return false
    end
    local talkUser = NPCHANDLER_CONVbehavior == CONVERSATION_DEFAULT and 0 or cid
    local price = 50000
    local vocations = {5,6,7,8}
    if(msgcontains(msg, 'second promote') or msgcontains(msg, 'second promotion')) then
    selfSay('Você quer receber a second promotion por '..price..' gps? {yes} ', cid)
    talkState[talkUser] = 1
    elseif msgcontains(msg, 'yes') and talkState[talkUser] == 1 then
    if isInArray(vocations, getPlayerVocation(cid)) then
    if doPlayerRemoveMoney(cid,price) == TRUE then
    setPlayerPromotionLevel(cid, 2)
    selfSay('Parabens,você foi promovido para a Vocação VIP!', cid)
    talkState[talkUser] = 0
    else
    selfSay('Você não tem ' .. price .. ' gps para ser promovido', cid)
    talkState[talkUser] = 0
    end
    else
    selfSay('Desculpe, mais você não possui a primeira promotion.', cid)
    talkState[talkUser] = 0
    end
    elseif msg == "no" and talkState[talkUser] >= 1 then
    selfSay("Then not", cid)
    talkState[talkUser] = 0
    npcHandler:releaseFocus(cid)
    end
    return TRUE
    end
    npcHandler:setCallback(CALLBACK_MESSAGE_DEFAULT, creatureSayCallback)
    npcHandler:addModule(FocusModule:new())

    Mt grato pela ajuda desde já, obg.

    ngm quer helpar?

  9. Eae galera, ta dando um erro no meu SQLite , e eu nao sei como resolver

    É o seguinte, eu abro normalmente o sqlite, adiciono o database do servidor, só q quando eu vou editar alguma conta ou apagar etc qualquer edição no geral, nao da!

    Aparece o seguinte: "There are uncommited data modifications. Reload data will cancel them. Are you sure you want to continue?."
    Alguem sabe como resolver?

     

     

    -edit-

    E no caso ao tentar salvar ocorre o seguinte:
    http://i46.tinypic.com/50fv4.png

    Agradeço desde já.

  10. Eaae galera, estou com uma duvida, encontrei pelo fórum um MOD de Jogos Vorazes esse aqui:

    Porém o mesmo é apenas para TFS 1.2 e eu uso o TFS 0.4 , existe alguma possibilidade de eu colocar esse event no meu servidor mesmo sendo TFS 0.4?

    Eu até tenho o TFS 1.2 para 8.6 , mas nao está compilado e eu teria de mudar mt sistemas do meu server coisa que eu não manjo auhuahua

    É isso, gostei mt do mod e queria usa-lo em meu server, tem alguma maneira ?

  11. Como posso fazer isso? nao faço a minima ideia de como mexer nisso oO

     

     

     

    local config = {
    loginMessage = getConfigValue('loginMessage'),
    useFragHandler = getBooleanFromString(getConfigValue('useFragHandler'))
    }
    function onLogin(cid)
    local loss = getConfigValue('deathLostPercent')
    if(loss ~= nil) then
    doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10)
    end
    local accountManager = getPlayerAccountManager(cid)
    if(accountManager == MANAGER_NONE) then
    local lastLogin, str = getPlayerLastLoginSaved(cid), config.loginMessage
    if(lastLogin > 0) then
    doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
    str = "Your last visit was on " .. os.date("%a %b %d %X %Y", lastLogin) .. "."
    else
    str = str .. " Please choose your outfit."
    doPlayerSendOutfitWindow(cid)
    end
    doPlayerSendTextMessage(cid, MESSAGE_STATUS_DEFAULT, str)
    elseif(accountManager == MANAGER_NAMELOCK) then
    doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, it appears that your character has been namelocked, what would you like as your new name?")
    elseif(accountManager == MANAGER_ACCOUNT) then
    doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type {account} to manage your account and if you want to start over then type {cancel}.")
    else
    doPlayerSendTextMessage(cid, MESSAGE_STATUS_CONSOLE_ORANGE, "Hello, type {account} to create an account or type {recover} to recover an account.")
    end
    if(not isPlayerGhost(cid)) then
    doSendMagicEffect(getCreaturePosition(cid), CONST_ME_TELEPORT)
    end
    registerCreatureEvent(cid, "Mail")
    registerCreatureEvent(cid, "petKill") registerCreatureEvent(cid, "loguthunt") registerCreatureEvent(cid, "huntdeath") registerCreatureEvent(cid, "killitem") registerCreatureEvent(cid, "SkullAmulet") registerCreatureEvent(cid, "SkullCheck") registerCreatureEvent(cid, "magebomb") registerCreatureEvent(cid, "perdereifeto") registerCreatureEvent(cid, "RushOutfit") registerCreatureEvent(cid, "pvpsystem") registerCreatureEvent(cid, "RushAttack") registerCreatureEvent(cid, "RushDead") registerCreatureEvent(cid, "petDeath") registerCreatureEvent(cid, "RushCombat") registerCreatureEvent(cid, "ReflectSpellKnight") registerCreatureEvent(cid, "ReflectSpellPally") registerCreatureEvent(cid, "ReflectSpellMage") registerCreatureEvent(cid, "TiraBattle") registerCreatureEvent(cid, "PointSystem") registerCreatureEvent(cid, "petSta") registerCreatureEvent(cid, "deathBroadcast") registerCreatureEvent(cid, "addons") registerCreatureEvent(cid, "GuildMotd")
    registerCreatureEvent(cid, "Idle")
    if(config.useFragHandler) then
    registerCreatureEvent(cid, "SkullCheck")
    registerCreatureEvent(cid, "Reward")
    end
    registerCreatureEvent(cid, "ReportBug")
    registerCreatureEvent(cid, "AdvanceSave")
    registerCreatureEvent(cid, "advance")
    registerCreatureEvent(cid, "FimVip")
    registerCreatureEvent(cid, "SkullCheck")
    registerCreatureEvent(cid, "ReportBug")
    registerCreatureEvent(cid, VipReceive)
    registerCreatureEvent(cid, "PlayerKill")
    if (InitArenaScript ~= 0) then
    InitArenaScript = 1
    -- make arena rooms free
    for i = 42300, 42309 do
    setGlobalStorageValue(i, 0)
    setGlobalStorageValue(i+100, 0)
    end
    end
    -- if he did not make full arena 1 he must start from zero
    if getPlayerStorageValue(cid, 42309) < 1 then
    for i = 42300, 42309 do
    setPlayerStorageValue(cid, i, 0)
    end
    end
    -- if he did not make full arena 2 he must start from zero
    if getPlayerStorageValue(cid, 42319) < 1 then
    for i = 42310, 42319 do
    setPlayerStorageValue(cid, i, 0)
    end
    end
    -- if he did not make full arena 3 he must start from zero
    if getPlayerStorageValue(cid, 42329) < 1 then
    for i = 42320, 42329 do
    setPlayerStorageValue(cid, i, 0)
    end
    end
    if getPlayerStorageValue(cid, 42355) == -1 then
    setPlayerStorageValue(cid, 42355, 0) -- did not arena level
    end
    setPlayerStorageValue(cid, 42350, 0) -- time to kick 0
    setPlayerStorageValue(cid, 42352, 0) -- is not in arena
    return true
    end

    Esse é meu login.lua
  12. Fiz rápido, bem simples porém creio que funcione.

     

    Crie um arquivo chamado goldenpaper.lua em data/actions/scripts e coloque isso:
    function onUse(cid, item, fromPosition, toPosition)
    
    
    local voc = {1} --id da vocação
    local scroll = {} --id do item
    local efeito = {} -- efeito
    
    
    if item.uid == scroll then
    doPlayerSetVocation(cid, voc)
    doSendMagicEffect(cid, efeito)
    end
    return true
    end

    Agora em actions.xml, adicione essa tag:

    <action actionid="id do item" script="goldenpaper.lua"/>

     

    Entus, o script está apenas para mudar qualquer vocação para uma nova? Pq o que eu uso muda por exemplo: o master sorcerer para um vip master sorcerer e assim respectivamente, no caso eu teria de criar um item para cada?

     

    Claro que vai mudar, não colocou nenhum query...

    só muda in-game, a database continua a mesma.

     

    fica online, vou arrumar, só um segundo.

     

     

    Desculpe, eu nao sei quase nada de script |:

    Ok, estou no aguardo.

  13. EAE,

     

    to precisando de uma ajuda com uma action, que ao usar o item, o player troca de vocação, tipo uma promotion, porem como a vocação é VIP, ela nao pode aparecer no acc manager.

     

    Estou usando o seguinte script:

    function onUse(cid, item, fromPosition, itemEx, toPosition)

    if getPlayerStorageValue(cid,1992) == 1 then
    doCreatureSay(cid, "Você já usou o golden papper.", TALKTYPE_ORANGE_1)
    else if getPlayerLevel(cid) >= 8 then -- a partir de que level podera usar
    doCreatureSay(cid, "Legendary!", TALKTYPE_ORANGE_1)
    if getPlayerVocation(cid) == 1 or getPlayerVocation(cid) == 1 then
    doPlayerSetVocation(cid, 5)
    end
    if getPlayerVocation(cid) == 2 or getPlayerVocation(cid) == 2 then
    doPlayerSetVocation(cid, 6)
    end
    if getPlayerVocation(cid) == 3 or getPlayerVocation(cid) == 3 then
    doPlayerSetVocation(cid, 7)
    end
    if getPlayerVocation(cid) == 4 or getPlayerVocation(cid) == 4 then
    doPlayerSetVocation(cid, 8)
    end
    doSendMagicEffect(fromPosition, CONST_ME_GIFT_WRAPS)
    doRemoveItem(item.uid)
    setPlayerStorageValue(cid,1992,1)
    return TRUE
    else
    doCreatureSay(cid, "Você precisa estar level 8 ou mais para usar o Item!",TALKTYPE_ORANGE_1)
    end
    end
    end

    Porem no caso desse script, ao morrer/deslogar o player perde a vocação, alguem que manja como resolver?

     

    - Se eu deixar o fromvoc=x , ele nao aparece no acc manager, porem perder a voc ao deslogar

     

    - Se eu deixar o fromvoc= igual as outras vocações, ele nao aparece no acc manager mas perde a vocação ao deslogar

     

    - Se eu deixar o fromvoc= igual a própria nova vocação ele nao perde ao deslogar, porem ele fica no account manager dando pra criar a vocação vip, o que eu nao quero.

     

    Meu vocations.xml :

    <?xml version="1.0" encoding="UTF-8"?>

    <vocations>
    <vocation id="0" name="None" description="none" needpremium="0" gaincap="5" gainhp="5" gainmana="5" gainhpticks="6" gainhpamount="1" gainmanaticks="6" gainmanaamount="1" manamultiplier="4.0" attackspeed="200" soulmax="100" gainsoulticks="120" fromvoc="0" attackable="no">
    <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/>
    <skill fist="1.5" club="2.0" sword="2.0" axe="2.0" distance="2.0" shielding="1.5" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="1" name="Master Sorcerer" description="a master sorcerer" needpremium="0" gaincap="10" gainhp="5" gainmana="30" gainhpticks="3" gainhpamount="150" gainmanaticks="2" gainmanaamount="400" manamultiplier="1.1" attackspeed="200" soulmax="100" gainsoulticks="120" fromvoc="1">
    <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/>
    <skill fist="1.5" club="2.0" sword="2.0" axe="2.0" distance="2.0" shielding="1.5" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="2" name="Elder Druid" description="a elder druid" needpremium="0" gaincap="10" gainhp="5" gainmana="30" gainhpticks="3" gainhpamount="150" gainmanaticks="2" gainmanaamount="400" manamultiplier="1.1" attackspeed="200" soulmax="100" gainsoulticks="120" fromvoc="2">
    <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/>
    <skill fist="1.5" club="1.8" sword="1.8" axe="1.8" distance="1.8" shielding="1.5" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="3" name="Royal Paladin" description="a royal paladin" needpremium="0" gaincap="20" gainhp="10" gainmana="15" gainhpticks="2" gainhpamount="400" gainmanaticks="3" gainmanaamount="250" manamultiplier="1.4" attackspeed="200" soulmax="100" gainsoulticks="120" fromvoc="3">
    <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/>
    <skill fist="1.2" club="1.2" sword="1.2" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="4" name="Elite Knight" description="a elite knight" needpremium="0" gaincap="25" gainhp="15" gainmana="5" gainhpticks="2" gainhpamount="420" gainmanaticks="3" gainmanaamount="200" manamultiplier="3.0" attackspeed="200" soulmax="100" gainsoulticks="120" fromvoc="4">
    <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.1" distance="1.4" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="5" name="Lord Shaman" description="a shadow shaman" needpremium="1" gaincap="10" gainhp="5" gainmana="30" gainhpticks="3" gainhpamount="200" gainmanaticks="2" gainmanaamount="450" manamultiplier="1.1" attackspeed="200" soulmax="200" gainsoulticks="15" fromvoc="5" lessloss="30">
    <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/>
    <skill fist="1.5" club="2.0" sword="2.0" axe="2.0" distance="2.0" shielding="1.5" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="6" name="High Saintess" description="an high saintess" needpremium="1" gaincap="10" gainhp="5" gainmana="30" gainhpticks="3" gainhpamount="200" gainmanaticks="2" gainmanaamount="450" manamultiplier="1.1" attackspeed="200" soulmax="200" gainsoulticks="15" fromvoc="6" lessloss="30">
    <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/>
    <skill fist="1.5" club="1.8" sword="1.8" axe="1.8" distance="1.8" shielding="1.5" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="7" name="Shadow Hunter" description="a shadow hunter" needpremium="1" gaincap="20" gainhp="10" gainmana="15" gainhpticks="2" gainhpamount="420" gainmanaticks="2" gainmanaamount="260" manamultiplier="1.4" attackspeed="200" soulmax="200" gainsoulticks="15" fromvoc="7" lessloss="30">
    <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/>
    <skill fist="1.2" club="1.2" sword="1.2" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="8" name="Colossus Warrior" description="an colossus warrior" needpremium="1" gaincap="25" gainhp="15" gainmana="5" gainhpticks="2" gainhpamount="460" gainmanaticks="3" gainmanaamount="245" manamultiplier="3.0" attackspeed="200" soulmax="200" gainsoulticks="15" fromvoc="8" lessloss="30">
    <formula meleeDamage="1.0" distDamage="1.0" wandDamage="1.0" magDamage="1.0" magHealingDamage="1.0" defense="1.0" magDefense="1.0" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.1" distance="1.4" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <!--
    </vocations>

    Agradeço desde já, +REP pra quem puder ajudar! OBG.

     

  14. Galera, alguem tem algum dos servidores da versão 10.78 ou 10.79 já compilado pronto p abrir?

    Eu queria mt abrir um sv dessa versão mas não consigo de jeito nenhum,, então se alguem puder ajudar agradeço.

    Pode ser 32 ou 64 bits

    Ja consegui o site e td certo falta só isso ):


    up

  15. Vocations.XML

     

     

    <?xml version="1.0" encoding="UTF-8"?>
    <vocations>
    <vocation id="0" name="None" description="nonkjjkjkjke" needpremium="0" gaincap="5" gainhp="5" gainmana="5" gainhpticks="6" gainhpamount="1" gainmanaticks="6" gainmanaamount="1" manamultiplier="1.1" attackspeed="2000" soulmax="100" gainsoulticks="120" fromvoc="0" attackable="no">
    <formula meleeDamage="90.0" distDamage="1.0" wandDamage="1.0" magDamage="90.0" magHealingDamage="1.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="1" name="Goku" description="a Goku" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.5" gainhpamount="300" gainmanaticks="3" gainmanaamount="400" manamultiplier="1.1" attackspeed="1800" soulmax="100" gainsoulticks="120" fromvoc="1">
    <formula meleeDamage="8.0" distDamage="8.0" wandDamage="3.0" magDamage="3.5" magHealingDamage="7.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="2" name="Goku Ssj" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="600" gainmanaticks="3" gainmanaamount="700" manamultiplier="1.1" attackspeed="1500" soulmax="100" gainsoulticks="120" fromvoc="1">
    <formula meleeDamage="15.0" distDamage="15.0" wandDamage="5.0" magDamage="6.5" magHealingDamage="16.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="3" name="Goku Ussj" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="1100" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="100" gainsoulticks="120" fromvoc="1">
    <formula meleeDamage="22.0" distDamage="22.0" wandDamage="8.0" magDamage="9.0" magHealingDamage="23.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="4" name="Goku Ssj 2" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="1700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="100" gainsoulticks="120" fromvoc="1">
    <formula meleeDamage="29.0" distDamage="29.0" wandDamage="12.0" magDamage="13.5" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="5" name="Goku Ssj 3" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="2300" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="100" gainsoulticks="120" fromvoc="1">
    <formula meleeDamage="37.0" distDamage="37.0" wandDamage="16.0" magDamage="22.5" magHealingDamage="35.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="6" name="Goku Ssj 3 Fury" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="2900" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="100" gainsoulticks="120" fromvoc="1">
    <formula meleeDamage="45.0" distDamage="45.0" wandDamage="20.0" magDamage="25.0" magHealingDamage="42.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="7" name="Vegeta Scouter" description="Vegeta Scouter" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="300" gainmanaticks="3" gainmanaamount="400" manamultiplier="1.1" attackspeed="2000" soulmax="100" gainsoulticks="120" fromvoc="7">
    <formula meleeDamage="8.0" distDamage="8.0" wandDamage="3.0" magDamage="3.5" magHealingDamage="7.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="8" name="Vegeta" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.5" gainhpamount="600" gainmanaticks="3" gainmanaamount="700" manamultiplier="1.1" attackspeed="1700" soulmax="100" gainsoulticks="120" fromvoc="7">
    <formula meleeDamage="15.0" distDamage="15.0" wandDamage="5.0" magDamage="6.5" magHealingDamage="16.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="9" name="Vegeta Ssj" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="1100" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1400" soulmax="100" gainsoulticks="120" fromvoc="7">
    <formula meleeDamage="22.0" distDamage="22.0" wandDamage="8.0" magDamage="9.0" magHealingDamage="23.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="10" name="Majin Vegeta" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="1700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="1100" soulmax="100" gainsoulticks="120" fromvoc="7">
    <formula meleeDamage="29.0" distDamage="29.0" wandDamage="12.0" magDamage="13.5" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="11" name="Vegeta Ssj 2" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="2300" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="800" soulmax="100" gainsoulticks="120" fromvoc="7">
    <formula meleeDamage="37.0" distDamage="37.0" wandDamage="16.0" magDamage="22.5" magHealingDamage="35.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="12" name="Vegeta Ssj 2 Fury" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="2900" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="500" soulmax="100" gainsoulticks="120" fromvoc="7">
    <formula meleeDamage="45.0" distDamage="45.0" wandDamage="20.0" magDamage="25.0" magHealingDamage="42.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="13" name="Gohan" description="a Gohan" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.5" gainhpamount="300" gainmanaticks="3" gainmanaamount="400" manamultiplier="1.1" attackspeed="2000" soulmax="100" gainsoulticks="120" fromvoc="13">
    <formula meleeDamage="8.0" distDamage="8.0" wandDamage="3.0" magDamage="3.5" magHealingDamage="7.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="14" name="Gohan Ssj" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="600" gainmanaticks="3" gainmanaamount="700" manamultiplier="1.1" attackspeed="1700" soulmax="100" gainsoulticks="120" fromvoc="13">
    <formula meleeDamage="15.0" distDamage="15.0" wandDamage="5.0" magDamage="6.5" magHealingDamage="16.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="15" name="Gohan Ssj 2" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="1100" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1400" soulmax="100" gainsoulticks="120" fromvoc="13">
    <formula meleeDamage="22.0" distDamage="22.0" wandDamage="8.0" magDamage="9.0" magHealingDamage="23.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="16" name="Big Gohan" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="1700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="1100" soulmax="100" gainsoulticks="120" fromvoc="13">
    <formula meleeDamage="29.0" distDamage="29.0" wandDamage="12.0" magDamage="13.5" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="17" name="Big Gohan Ssj" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="2300" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="800" soulmax="100" gainsoulticks="120" fromvoc="13">
    <formula meleeDamage="37.0" distDamage="37.0" wandDamage="16.0" magDamage="22.5" magHealingDamage="35.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="18" name="Mistic Gohan" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="2900" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="500" soulmax="100" gainsoulticks="120" fromvoc="13">
    <formula meleeDamage="45.0" distDamage="45.0" wandDamage="20.0" magDamage="25.0" magHealingDamage="42.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="19" name="Trunks" description="a Trunks" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.5" gainhpamount="300" gainmanaticks="3" gainmanaamount="400" manamultiplier="1.1" attackspeed="2000" soulmax="100" gainsoulticks="120" fromvoc="19">
    <formula meleeDamage="8.0" distDamage="8.0" wandDamage="3.0" magDamage="3.5" magHealingDamage="7.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.0" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="20" name="Trunks 2" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="600" gainmanaticks="3" gainmanaamount="700" manamultiplier="1.1" attackspeed="1700" soulmax="100" gainsoulticks="120" fromvoc="19">
    <formula meleeDamage="15.0" distDamage="15.0" wandDamage="5.0" magDamage="6.5" magHealingDamage="16.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.0" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="21" name="Trunks Ssj" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="1100" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1400" soulmax="100" gainsoulticks="120" fromvoc="19">
    <formula meleeDamage="22.0" distDamage="22.0" wandDamage="8.0" magDamage="9.0" magHealingDamage="23.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.0" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="22" name="Trunks Armor" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="1700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="1100" soulmax="100" gainsoulticks="120" fromvoc="19">
    <formula meleeDamage="29.0" distDamage="29.0" wandDamage="12.0" magDamage="13.5" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.0" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="23" name="Trunks Ussj" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="2300" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="800" soulmax="100" gainsoulticks="120" fromvoc="19">
    <formula meleeDamage="37.0" distDamage="37.0" wandDamage="16.0" magDamage="22.5" magHealingDamage="35.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.0" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="24" name="Trunks Ussj Fury" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="2900" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="500" soulmax="100" gainsoulticks="120" fromvoc="19">
    <formula meleeDamage="45.0" distDamage="45.0" wandDamage="20.0" magDamage="25.0" magHealingDamage="42.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.0" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="25" name="Cell" description="a Cell" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.5" gainhpamount="300" gainmanaticks="3" gainmanaamount="400" manamultiplier="1.1" attackspeed="2000" soulmax="100" gainsoulticks="120" fromvoc="25">
    <formula meleeDamage="8.0" distDamage="8.0" wandDamage="3.0" magDamage="3.5" magHealingDamage="7.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="26" name="Cell Normal" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="600" gainmanaticks="3" gainmanaamount="700" manamultiplier="1.1" attackspeed="1700" soulmax="100" gainsoulticks="120" fromvoc="25">
    <formula meleeDamage="15.0" distDamage="15.0" wandDamage="5.0" magDamage="6.5" magHealingDamage="16.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="27" name="Cell Second Form" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="1100" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1400" soulmax="100" gainsoulticks="120" fromvoc="25">
    <formula meleeDamage="22.0" distDamage="22.0" wandDamage="8.0" magDamage="9.0" magHealingDamage="23.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="28" name="Cell Second Form Fury" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="1700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="1100" soulmax="100" gainsoulticks="120" fromvoc="25">
    <formula meleeDamage="29.0" distDamage="29.0" wandDamage="12.0" magDamage="13.5" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="29" name="Perfect Cell" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="2300" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="800" soulmax="100" gainsoulticks="120" fromvoc="25">
    <formula meleeDamage="37.0" distDamage="37.0" wandDamage="16.0" magDamage="22.5" magHealingDamage="35.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="30" name="Perfect Cell Fury" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="2900" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="500" soulmax="100" gainsoulticks="120" fromvoc="25">
    <formula meleeDamage="45.0" distDamage="45.0" wandDamage="20.0" magDamage="25.0" magHealingDamage="42.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="31" name="Freeza" description="a Freeza" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.5" gainhpamount="300" gainmanaticks="3" gainmanaamount="400" manamultiplier="1.1" attackspeed="2000" soulmax="100" gainsoulticks="120" fromvoc="31">
    <formula meleeDamage="8.0" distDamage="8.0" wandDamage="3.0" magDamage="3.5" magHealingDamage="7.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="32" name="Freeza x" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="600" gainmanaticks="3" gainmanaamount="700" manamultiplier="1.1" attackspeed="1700" soulmax="100" gainsoulticks="120" fromvoc="31">
    <formula meleeDamage="15.0" distDamage="15.0" wandDamage="5.0" magDamage="6.5" magHealingDamage="16.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="33" name="2nd Freeza" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="1100" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1400" soulmax="100" gainsoulticks="120" fromvoc="31">
    <formula meleeDamage="22.0" distDamage="22.0" wandDamage="8.0" magDamage="9.0" magHealingDamage="23.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="34" name="3rd Freeza" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="1700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="1100" soulmax="100" gainsoulticks="120" fromvoc="31">
    <formula meleeDamage="29.0" distDamage="29.0" wandDamage="12.0" magDamage="13.5" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="35" name="4th Freeza" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="2300" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="800" soulmax="100" gainsoulticks="120" fromvoc="31">
    <formula meleeDamage="37.0" distDamage="37.0" wandDamage="16.0" magDamage="22.5" magHealingDamage="35.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="36" name="Full Power Freeza" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="2900" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="500" soulmax="100" gainsoulticks="120" fromvoc="31">
    <formula meleeDamage="45.0" distDamage="45.0" wandDamage="20.0" magDamage="25.0" magHealingDamage="42.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="37" name="Fat Buu" description="a Fat Buu" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.5" gainhpamount="300" gainmanaticks="3" gainmanaamount="400" manamultiplier="1.1" attackspeed="1800" soulmax="100" gainsoulticks="120" fromvoc="37">
    <formula meleeDamage="8.0" distDamage="8.0" wandDamage="3.0" magDamage="3.5" magHealingDamage="7.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="38" name="Evil Buu" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="600" gainmanaticks="3" gainmanaamount="700" manamultiplier="1.1" attackspeed="1500" soulmax="100" gainsoulticks="120" fromvoc="37">
    <formula meleeDamage="15.0" distDamage="15.0" wandDamage="5.0" magDamage="6.5" magHealingDamage="16.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="39" name="Super Buu" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="1100" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="100" gainsoulticks="120" fromvoc="37">
    <formula meleeDamage="22.0" distDamage="22.0" wandDamage="8.0" magDamage="9.0" magHealingDamage="23.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="40" name="Gotenks Buu" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="1700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="100" gainsoulticks="120" fromvoc="37">
    <formula meleeDamage="29.0" distDamage="29.0" wandDamage="12.0" magDamage="13.5" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="41" name="Gohan Buu" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="2300" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="100" gainsoulticks="120" fromvoc="37">
    <formula meleeDamage="37.0" distDamage="37.0" wandDamage="16.0" magDamage="22.5" magHealingDamage="35.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="42" name="Kid Buu" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="2900" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="100" gainsoulticks="120" fromvoc="37">
    <formula meleeDamage="45.0" distDamage="45.0" wandDamage="20.0" magDamage="25.0" magHealingDamage="42.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="43" name="C17 Small Andro" description="a C17 Small Andro" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.5" gainhpamount="300" gainmanaticks="3" gainmanaamount="400" manamultiplier="1.1" attackspeed="2000" soulmax="100" gainsoulticks="120" fromvoc="43">
    <formula meleeDamage="8.0" distDamage="8.0" wandDamage="3.0" magDamage="3.5" magHealingDamage="7.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="44" name="C17 Andro" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="600" gainmanaticks="3" gainmanaamount="700" manamultiplier="1.1" attackspeed="1700" soulmax="100" gainsoulticks="120" fromvoc="43">
    <formula meleeDamage="15.0" distDamage="15.0" wandDamage="5.0" magDamage="6.5" magHealingDamage="16.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="45" name="C17 Terminator" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="1100" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1400" soulmax="100" gainsoulticks="120" fromvoc="43">
    <formula meleeDamage="22.0" distDamage="22.0" wandDamage="8.0" magDamage="9.0" magHealingDamage="23.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="46" name="C17" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="1700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="1100" soulmax="100" gainsoulticks="120" fromvoc="43">
    <formula meleeDamage="29.0" distDamage="29.0" wandDamage="12.0" magDamage="13.5" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="47" name="C17 Fury" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="2300" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="800" soulmax="100" gainsoulticks="120" fromvoc="43">
    <formula meleeDamage="37.0" distDamage="37.0" wandDamage="16.0" magDamage="22.5" magHealingDamage="35.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="48" name="Super C17" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="2900" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="500" soulmax="100" gainsoulticks="120" fromvoc="43">
    <formula meleeDamage="45.0" distDamage="45.0" wandDamage="20.0" magDamage="25.0" magHealingDamage="42.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="49" name="Goku Ssj 4" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="100" soulmax="100" gainsoulticks="120" corpse="2853" fromvoc="1">
    <formula meleeDamage="50.0" distDamage="58.0" wandDamage="28.0" magDamage="28.5" magHealingDamage="47.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="50" name="Vegeta Ssj 4" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="100" gainsoulticks="120" fromvoc="7">
    <formula meleeDamage="50.0" distDamage="58.0" wandDamage="28.0" magDamage="28.5" magHealingDamage="47.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="51" name="Gohan Ssj 4" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="100" gainsoulticks="120" fromvoc="13">
    <formula meleeDamage="50.0" distDamage="58.0" wandDamage="28.0" magDamage="28.5" magHealingDamage="47.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="52" name="Trunks Ssj 4" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="100" gainsoulticks="120" fromvoc="19">
    <formula meleeDamage="50.0" distDamage="58.0" wandDamage="28.0" magDamage="28.5" magHealingDamage="47.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="53" name="Cell Big" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="100" gainsoulticks="120" fromvoc="25">
    <formula meleeDamage="50.0" distDamage="58.0" wandDamage="28.0" magDamage="28.5" magHealingDamage="47.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="54" name="Res Freeza" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="100" gainsoulticks="120" fromvoc="31">
    <formula meleeDamage="50.0" distDamage="58.0" wandDamage="28.0" magDamage="28.5" magHealingDamage="47.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="55" name="Pro Buu" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="100" soulmax="100" gainsoulticks="120" fromvoc="37">
    <formula meleeDamage="50.0" distDamage="58.0" wandDamage="28.0" magDamage="28.5" magHealingDamage="47.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="56" name="Pro C17" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="100" gainsoulticks="120" fromvoc="43">
    <formula meleeDamage="50.0" distDamage="58.0" wandDamage="28.0" magDamage="28.5" magHealingDamage="47.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="57" name="C18 Andro" description="a C18 Andro" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.5" gainhpamount="300" gainmanaticks="3" gainmanaamount="400" manamultiplier="1.1" attackspeed="2000" soulmax="100" gainsoulticks="120" fromvoc="57">
    <formula meleeDamage="8.0" distDamage="8.0" wandDamage="3.0" magDamage="3.5" magHealingDamage="7.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="58" name="C18 Kula" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="600" gainmanaticks="3" gainmanaamount="700" manamultiplier="1.1" attackspeed="1700" soulmax="100" gainsoulticks="120" fromvoc="57">
    <formula meleeDamage="15.0" distDamage="15.0" wandDamage="5.0" magDamage="6.5" magHealingDamage="16.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="59" name="C18 Terminator" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="1100" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1400" soulmax="100" gainsoulticks="120" fromvoc="57">
    <formula meleeDamage="22.0" distDamage="22.0" wandDamage="8.0" magDamage="9.0" magHealingDamage="23.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="60" name="C18" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="1700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="1100" soulmax="100" gainsoulticks="120" fromvoc="57">
    <formula meleeDamage="29.0" distDamage="29.0" wandDamage="12.0" magDamage="13.5" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="61" name="C18 Pink" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="2300" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="800" soulmax="100" gainsoulticks="120" fromvoc="57">
    <formula meleeDamage="37.0" distDamage="37.0" wandDamage="16.0" magDamage="22.5" magHealingDamage="35.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="62" name="C18 Armata" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="2900" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="500" soulmax="100" gainsoulticks="120" fromvoc="57">
    <formula meleeDamage="45.0" distDamage="45.0" wandDamage="20.0" magDamage="25.0" magHealingDamage="42.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="63" name="Pro C18" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="100" gainsoulticks="120" fromvoc="57">
    <formula meleeDamage="50.0" distDamage="58.0" wandDamage="28.0" magDamage="28.5" magHealingDamage="47.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="64" name="Goku Gogetta" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="2000" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="750" soulmax="100" gainsoulticks="120" fromvoc="1">
    <formula meleeDamage="31.0" distDamage="31.0" wandDamage="12.0" magDamage="16.0" magHealingDamage="28.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="65" name="Vegeta Gogetta" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="2000" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="750" soulmax="100" gainsoulticks="120" fromvoc="7">
    <formula meleeDamage="31.0" distDamage="31.0" wandDamage="12.0" magDamage="16.0" magHealingDamage="28.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="66" name="Goku 4 Gogetta" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="100" gainsoulticks="120" fromvoc="82">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.5" magHealingDamage="49.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="67" name="Vegeta 4 Gogetta" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="100" gainsoulticks="120" fromvoc="87">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.5" magHealingDamage="49.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="68" name="Picollo" description="a Picollo" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.5" gainhpamount="300" gainmanaticks="3" gainmanaamount="400" manamultiplier="1.1" attackspeed="2000" soulmax="100" gainsoulticks="120" fromvoc="68">
    <formula meleeDamage="8.0" distDamage="8.0" wandDamage="3.0" magDamage="3.5" magHealingDamage="7.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="69" name="Picollo Bez Szaty" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="600" gainmanaticks="3" gainmanaamount="700" manamultiplier="1.1" attackspeed="1700" soulmax="100" gainsoulticks="120" fromvoc="68">
    <formula meleeDamage="15.0" distDamage="15.0" wandDamage="5.0" magDamage="6.5" magHealingDamage="16.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="70" name="Picollo Lotnik" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="1100" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1400" soulmax="100" gainsoulticks="120" fromvoc="68">
    <formula meleeDamage="22.0" distDamage="22.0" wandDamage="8.0" magDamage="9.0" magHealingDamage="23.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="71" name="Picollo Big Lotnik" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="1700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="1100" soulmax="100" gainsoulticks="120" fromvoc="68">
    <formula meleeDamage="29.0" distDamage="29.0" wandDamage="12.0" magDamage="13.5" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="72" name="Picollo Fury Lotnik" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="2300" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="800" soulmax="100" gainsoulticks="120" fromvoc="68">
    <formula meleeDamage="37.0" distDamage="37.0" wandDamage="16.0" magDamage="22.5" magHealingDamage="35.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="73" name="Super Picollo" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="2900" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="500" soulmax="100" gainsoulticks="120" fromvoc="68">
    <formula meleeDamage="45.0" distDamage="45.0" wandDamage="20.0" magDamage="25.0" magHealingDamage="42.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="74" name="Pro Picollo" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="100" gainsoulticks="120" fromvoc="68">
    <formula meleeDamage="50.0" distDamage="58.0" wandDamage="28.0" magDamage="28.5" magHealingDamage="47.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="75" name="Dende" description="a Dende" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.5" gainhpamount="300" gainmanaticks="3" gainmanaamount="400" manamultiplier="1.1" attackspeed="2000" soulmax="100" gainsoulticks="120" fromvoc="75">
    <formula meleeDamage="8.0" distDamage="8.0" wandDamage="3.0" magDamage="3.5" magHealingDamage="7.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="76" name="Dende White" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="600" gainmanaticks="3" gainmanaamount="700" manamultiplier="1.1" attackspeed="1700" soulmax="100" gainsoulticks="120" fromvoc="75">
    <formula meleeDamage="15.0" distDamage="15.0" wandDamage="5.0" magDamage="6.5" magHealingDamage="16.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="77" name="Fury Dende" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="1100" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1400" soulmax="100" gainsoulticks="120" fromvoc="75">
    <formula meleeDamage="22.0" distDamage="22.0" wandDamage="8.0" magDamage="9.0" magHealingDamage="23.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="78" name="Cape Dende" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="1700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="1100" soulmax="100" gainsoulticks="120" fromvoc="75">
    <formula meleeDamage="29.0" distDamage="29.0" wandDamage="12.0" magDamage="13.5" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="79" name="Super Dende" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="2300" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="800" soulmax="100" gainsoulticks="120" fromvoc="75">
    <formula meleeDamage="37.0" distDamage="37.0" wandDamage="16.0" magDamage="22.5" magHealingDamage="35.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="80" name="Old Dende" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="2900" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="500" soulmax="100" gainsoulticks="120" fromvoc="75">
    <formula meleeDamage="45.0" distDamage="45.0" wandDamage="20.0" magDamage="25.0" magHealingDamage="42.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="81" name="Pro Dende" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="100" gainsoulticks="120" fromvoc="75">
    <formula meleeDamage="50.0" distDamage="58.0" wandDamage="28.0" magDamage="28.5" magHealingDamage="47.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    ^-^-_REBORN_-^-^
    <vocation id="82" name="Goku Reborn" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2000" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="200" gainsoulticks="120" fromvoc="82">
    <formula meleeDamage="27.5" distDamage="25.0" wandDamage="12.0" magDamage="13.0" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="83" name="Goku Reborn Ssj" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="200" gainsoulticks="120" fromvoc="82">
    <formula meleeDamage="35.0" distDamage="36.0" wandDamage="17.0" magDamage="22.5" magHealingDamage="38.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="84" name="Goku Reborn Ssj 2" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="3600" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="200" gainsoulticks="120" fromvoc="82">
    <formula meleeDamage="41.0" distDamage="41.0" wandDamage="19.0" magDamage="25.5" magHealingDamage="44.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="85" name="Goku Reborn Ssj 3" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="82">
    <formula meleeDamage="49.0" distDamage="48.0" wandDamage="23.0" magDamage="28.5" magHealingDamage="51.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="86" name="Goku Ssj 4" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="82">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.0" magHealingDamage="55.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="87" name="Vegeta Reborn" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2000" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="200" gainsoulticks="120" fromvoc="87">
    <formula meleeDamage="27.5" distDamage="25.0" wandDamage="12.0" magDamage="13.0" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="88" name="Vegeta Reborn Ssj" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="200" gainsoulticks="120" fromvoc="87">
    <formula meleeDamage="35.0" distDamage="36.0" wandDamage="17.0" magDamage="22.5" magHealingDamage="38.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="89" name="Vegeta Reborn Ssj 2" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="3600" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="200" gainsoulticks="120" fromvoc="87">
    <formula meleeDamage="41.0" distDamage="41.0" wandDamage="19.0" magDamage="25.5" magHealingDamage="44.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="90" name="Vegeta Fury Reborn" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="87">
    <formula meleeDamage="49.0" distDamage="48.0" wandDamage="23.0" magDamage="28.5" magHealingDamage="51.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="91" name="Vegeta Ssj 4" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="87">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.0" magHealingDamage="55.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="92" name="Gohan Reborn" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2000" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="200" gainsoulticks="120" fromvoc="92">
    <formula meleeDamage="27.5" distDamage="25.0" wandDamage="12.0" magDamage="13.0" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="93" name="Gohan Reborn Dress" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="200" gainsoulticks="120" fromvoc="92">
    <formula meleeDamage="35.0" distDamage="36.0" wandDamage="17.0" magDamage="22.5" magHealingDamage="38.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="94" name="Gohan Reborn Green" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="3600" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="200" gainsoulticks="120" fromvoc="92">
    <formula meleeDamage="41.0" distDamage="41.0" wandDamage="19.0" magDamage="25.5" magHealingDamage="44.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="95" name="Gohan Reborn Ssj" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="92">
    <formula meleeDamage="49.0" distDamage="48.0" wandDamage="23.0" magDamage="28.5" magHealingDamage="51.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="96" name="Gohan Ssj 4" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="92">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.0" magHealingDamage="55.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="97" name="Trunks Reborn" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2000" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="200" gainsoulticks="120" fromvoc="97">
    <formula meleeDamage="27.5" distDamage="25.0" wandDamage="12.0" magDamage="13.0" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.0" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="98" name="Trunks Reborn Ssj" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="200" gainsoulticks="120" fromvoc="97">
    <formula meleeDamage="35.0" distDamage="36.0" wandDamage="17.0" magDamage="22.5" magHealingDamage="38.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.0" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="99" name="Trunks Reborn Ssj 2" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="3600" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="200" gainsoulticks="120" fromvoc="97">
    <formula meleeDamage="41.0" distDamage="41.0" wandDamage="19.0" magDamage="25.5" magHealingDamage="44.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.0" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="100" name="Trunks Reborn Ssj 3" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="97">
    <formula meleeDamage="49.0" distDamage="48.0" wandDamage="23.0" magDamage="28.5" magHealingDamage="51.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.0" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="101" name="Trunks Ssj 4" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="97">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.0" magHealingDamage="55.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.0" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="200" name="Super Trunks" description="a trunks" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="97">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.0" magHealingDamage="55.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.0" sword="1.1" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="102" name="Freeza Reborn 1" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2000" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="200" gainsoulticks="120" fromvoc="102">
    <formula meleeDamage="27.5" distDamage="25.0" wandDamage="12.0" magDamage="13.0" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="103" name="Freeza Reborn 2" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="200" gainsoulticks="120" fromvoc="102">
    <formula meleeDamage="35.0" distDamage="36.0" wandDamage="17.0" magDamage="22.5" magHealingDamage="38.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="104" name="Freeza Reborn 3" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="3600" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="200" gainsoulticks="120" fromvoc="102">
    <formula meleeDamage="41.0" distDamage="41.0" wandDamage="19.0" magDamage="25.5" magHealingDamage="44.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="105" name="Freeza Reborn 4" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="102">
    <formula meleeDamage="49.0" distDamage="48.0" wandDamage="23.0" magDamage="28.5" magHealingDamage="51.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="106" name="Freeza Reborn 5" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="102">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.0" magHealingDamage="55.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="107" name="Buu Reborn 1" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2000" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="200" gainsoulticks="120" fromvoc="107">
    <formula meleeDamage="27.5" distDamage="25.0" wandDamage="12.0" magDamage="13.0" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="108" name="Buu Reborn 2" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="200" gainsoulticks="120" fromvoc="107">
    <formula meleeDamage="35.0" distDamage="36.0" wandDamage="17.0" magDamage="22.5" magHealingDamage="38.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="109" name="Buu Reborn 3" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="3600" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="200" gainsoulticks="120" fromvoc="107">
    <formula meleeDamage="41.0" distDamage="41.0" wandDamage="19.0" magDamage="25.5" magHealingDamage="44.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="110" name="Buu Reborn 4" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="107">
    <formula meleeDamage="49.0" distDamage="48.0" wandDamage="23.0" magDamage="28.5" magHealingDamage="51.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="111" name="Buu Reborn 5" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="107">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.0" magHealingDamage="55.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="112" name="Cell Reborn 1" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2000" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="200" gainsoulticks="120" fromvoc="112">
    <formula meleeDamage="27.5" distDamage="25.0" wandDamage="12.0" magDamage="13.0" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="113" name="Cell Reborn 2" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="200" gainsoulticks="120" fromvoc="112">
    <formula meleeDamage="35.0" distDamage="36.0" wandDamage="17.0" magDamage="22.5" magHealingDamage="38.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="114" name="Cell Reborn 3" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="3600" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="200" gainsoulticks="120" fromvoc="112">
    <formula meleeDamage="41.0" distDamage="41.0" wandDamage="19.0" magDamage="25.5" magHealingDamage="44.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="115" name="Cell Reborn 4" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="112">
    <formula meleeDamage="49.0" distDamage="48.0" wandDamage="23.0" magDamage="28.5" magHealingDamage="51.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="116" name="Cell Reborn 5" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="112">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.0" magHealingDamage="55.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="117" name="C17 Reborn 1" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2000" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="200" gainsoulticks="120" fromvoc="117">
    <formula meleeDamage="27.5" distDamage="25.0" wandDamage="12.0" magDamage="13.0" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="118" name="C17 Reborn 2" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="200" gainsoulticks="120" fromvoc="117">
    <formula meleeDamage="35.0" distDamage="36.0" wandDamage="17.0" magDamage="22.5" magHealingDamage="38.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="119" name="C17 Reborn 3" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="3600" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="200" gainsoulticks="120" fromvoc="117">
    <formula meleeDamage="41.0" distDamage="41.0" wandDamage="19.0" magDamage="25.5" magHealingDamage="44.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="120" name="C17 Reborn 4" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="117">
    <formula meleeDamage="49.0" distDamage="48.0" wandDamage="23.0" magDamage="28.5" magHealingDamage="51.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="121" name="C17 Reborn 5" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="117">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.0" magHealingDamage="55.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="122" name="C18 Reborn 1" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2000" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="200" gainsoulticks="120" fromvoc="122">
    <formula meleeDamage="27.5" distDamage="25.0" wandDamage="12.0" magDamage="13.0" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="123" name="C18 Reborn 2" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="200" gainsoulticks="120" fromvoc="122">
    <formula meleeDamage="35.0" distDamage="36.0" wandDamage="17.0" magDamage="22.5" magHealingDamage="38.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="124" name="C18 Reborn 3" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="3600" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="200" gainsoulticks="120" fromvoc="122">
    <formula meleeDamage="41.0" distDamage="41.0" wandDamage="19.0" magDamage="25.5" magHealingDamage="44.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="125" name="C18 Reborn 4" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="122">
    <formula meleeDamage="49.0" distDamage="48.0" wandDamage="23.0" magDamage="28.5" magHealingDamage="51.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="126" name="C18 Reborn 5" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="122">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.0" magHealingDamage="55.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="127" name="Picollo Reborn 1" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2000" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="200" gainsoulticks="120" fromvoc="127">
    <formula meleeDamage="27.5" distDamage="25.0" wandDamage="12.0" magDamage="13.0" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="128" name="Picollo Reborn 2" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="200" gainsoulticks="120" fromvoc="127">
    <formula meleeDamage="35.0" distDamage="36.0" wandDamage="17.0" magDamage="22.5" magHealingDamage="38.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="129" name="Picollo Reborn 3" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="3600" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="200" gainsoulticks="120" fromvoc="127">
    <formula meleeDamage="41.0" distDamage="41.0" wandDamage="19.0" magDamage="25.5" magHealingDamage="44.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="130" name="Picollo Reborn 4" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="127">
    <formula meleeDamage="49.0" distDamage="48.0" wandDamage="23.0" magDamage="28.5" magHealingDamage="51.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="131" name="Picollo Reborn 5" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="127">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.0" magHealingDamage="55.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="132" name="Dende Reborn 1" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2000" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="200" gainsoulticks="120" fromvoc="132">
    <formula meleeDamage="27.5" distDamage="25.0" wandDamage="12.0" magDamage="13.0" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="133" name="Dende Reborn 2" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="200" gainsoulticks="120" fromvoc="132">
    <formula meleeDamage="35.0" distDamage="36.0" wandDamage="17.0" magDamage="22.5" magHealingDamage="38.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="134" name="Dende Reborn 3" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="3600" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="200" gainsoulticks="120" fromvoc="132">
    <formula meleeDamage="41.0" distDamage="41.0" wandDamage="19.0" magDamage="25.5" magHealingDamage="44.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="135" name="Dende Reborn 4" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="132">
    <formula meleeDamage="49.0" distDamage="48.0" wandDamage="23.0" magDamage="28.5" magHealingDamage="51.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="136" name="Dende Reborn 5" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="132">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.0" magHealingDamage="55.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="137" name="Goten" description="a Goten" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="300" gainmanaticks="3" gainmanaamount="400" manamultiplier="1.1" attackspeed="1800" soulmax="100" gainsoulticks="120" fromvoc="137">
    <formula meleeDamage="8.0" distDamage="8.0" wandDamage="3.0" magDamage="3.5" magHealingDamage="7.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="138" name="Goten Ssj" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="600" gainmanaticks="3" gainmanaamount="700" manamultiplier="1.1" attackspeed="1500" soulmax="100" gainsoulticks="120" fromvoc="137">
    <formula meleeDamage="15.0" distDamage="15.0" wandDamage="5.0" magDamage="6.5" magHealingDamage="16.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="139" name="Goten Gogetta" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="1100" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="100" gainsoulticks="120" fromvoc="137">
    <formula meleeDamage="22.0" distDamage="22.0" wandDamage="8.0" magDamage="9.0" magHealingDamage="23.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="140" name="Goten Gogetta Ssj" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="1700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="100" gainsoulticks="120" fromvoc="137">
    <formula meleeDamage="29.0" distDamage="29.0" wandDamage="12.0" magDamage="13.5" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="141" name="Goten Gogetta Ssj 2" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="2300" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="100" gainsoulticks="120" fromvoc="137">
    <formula meleeDamage="37.0" distDamage="37.0" wandDamage="16.0" magDamage="22.5" magHealingDamage="35.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="142" name="Goten Gogetta Ssj 3" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="2900" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="100" gainsoulticks="120" fromvoc="137">
    <formula meleeDamage="45.0" distDamage="45.0" wandDamage="20.0" magDamage="25.0" magHealingDamage="42.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="143" name="Goten Gogetta Ssj 3 Fury" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="100" soulmax="100" gainsoulticks="120" fromvoc="137">
    <formula meleeDamage="50.0" distDamage="58.0" wandDamage="28.0" magDamage="28.5" magHealingDamage="47.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="144" name="Goten Reborn" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2000" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="200" gainsoulticks="120" fromvoc="144">
    <formula meleeDamage="27.5" ditDamage="25.0" wandDamage="12.0" magDamage="13.0" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="145" name="Goten Reborn Ssj" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="200" gainsoulticks="120" fromvoc="144">
    <formula meleeDamage="35.0" distDamage="36.0" wandDamage="17.0" magDamage="22.5" magHealingDamage="38.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="146" name="Goten Gogetta Reborn" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="3600" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="200" gainsoulticks="120" fromvoc="144">
    <formula meleeDamage="41.0" distDamage="41.0" wandDamage="19.0" magDamage="25.5" magHealingDamage="44.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="147" name="Goten Gogetta Ssj Reborn" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="144">
    <formula meleeDamage="49.0" distDamage="48.0" wandDamage="23.0" magDamage="28.5" magHealingDamage="51.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="148" name="Goten Gogetta Ssj 3 Reborn" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="144">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.0" magHealingDamage="55.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="149" name="Chibi Trunks" description="a Chibi Trunks" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="300" gainmanaticks="3" gainmanaamount="400" manamultiplier="1.1" attackspeed="1800" soulmax="100" gainsoulticks="120" fromvoc="149">
    <formula meleeDamage="8.0" distDamage="8.0" wandDamage="3.0" magDamage="3.5" magHealingDamage="7.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="150" name="Chibi Trunks Ssj" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="600" gainmanaticks="3" gainmanaamount="700" manamultiplier="1.1" attackspeed="1500" soulmax="100" gainsoulticks="120" fromvoc="149">
    <formula meleeDamage="15.0" distDamage="15.0" wandDamage="5.0" magDamage="6.5" magHealingDamage="16.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="151" name="Trunks Gotenks" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="1100" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="100" gainsoulticks="120" fromvoc="149">
    <formula meleeDamage="22.0" distDamage="22.0" wandDamage="8.0" magDamage="9.0" magHealingDamage="23.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="152" name="Trunks Gotenks Ssj" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="1700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="100" gainsoulticks="120" fromvoc="149">
    <formula meleeDamage="29.0" distDamage="29.0" wandDamage="12.0" magDamage="13.5" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="153" name="Trunks Gotenks Ssj 2" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="2300" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="100" gainsoulticks="120" fromvoc="149">
    <formula meleeDamage="37.0" distDamage="37.0" wandDamage="16.0" magDamage="22.5" magHealingDamage="35.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="154" name="Trunks Gotenks Ssj 3" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="2900" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="100" gainsoulticks="120" fromvoc="149">
    <formula meleeDamage="45.0" distDamage="45.0" wandDamage="20.0" magDamage="25.0" magHealingDamage="42.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="155" name="Trunks Gotenks Ssj 3 Fury" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="100" soulmax="100" gainsoulticks="120" fromvoc="149">
    <formula meleeDamage="50.0" distDamage="58.0" wandDamage="28.0" magDamage="28.5" magHealingDamage="47.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="156" name="Chibi Trunks Reborn" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2000" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="200" gainsoulticks="120" fromvoc="156">
    <formula meleeDamage="27.5" distDamage="25.0" wandDamage="12.0" magDamage="13.0" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="157" name="Chibi Trunks Reborn Ssj" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="200" gainsoulticks="120" fromvoc="156">
    <formula meleeDamage="35.0" distDamage="36.0" wandDamage="17.0" magDamage="22.5" magHealingDamage="38.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="158" name="Trunks Gotenks Reborn" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="3600" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="200" gainsoulticks="120" fromvoc="156">
    <formula meleeDamage="41.0" distDamage="41.0" wandDamage="19.0" magDamage="25.5" magHealingDamage="44.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="159" name="Trunks Gotenks Ssj Reborn" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="156">
    <formula meleeDamage="49.0" distDamage="48.0" wandDamage="23.0" magDamage="28.5" magHealingDamage="51.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="160" name="Trunks Gotenks Ssj 3 Reborn" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="156">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.0" magHealingDamage="55.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="161" name="Vegetto Goku" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="1400" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1100" soulmax="100" gainsoulticks="120" fromvoc="1">
    <formula meleeDamage="23.0" distDamage="23.0" wandDamage="8.0" magDamage="7.5" magHealingDamage="23.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="162" name="Vegeta Goku Ssj" description="" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.0" gainhpamount="2100" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="800" soulmax="100" gainsoulticks="120" fromvoc="1">
    <formula meleeDamage="31.0" distDamage="31.0" wandDamage="12.0" magDamage="11.0" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="163" name="Vegetto Vegeta" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="1400" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1100" soulmax="100" gainsoulticks="120" fromvoc="7">
    <formula meleeDamage="23.0" distDamage="23.0" wandDamage="8.0" magDamage="7.5" magHealingDamage="23.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="164" name="Vegetto Vegeta Ssj" description="" needpremium="0" gaincap="50" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="2100" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="800" soulmax="100" gainsoulticks="120" fromvoc="7">
    <formula meleeDamage="31.0" distDamage="31.0" wandDamage="12.0" magDamage="11.0" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="165" name="Tsuful" description="a Tsuful" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.5" gainhpamount="300" gainmanaticks="3" gainmanaamount="400" manamultiplier="1.1" attackspeed="1800" soulmax="100" gainsoulticks="120" fromvoc="165">
    <formula meleeDamage="8.0" distDamage="8.0" wandDamage="3.0" magDamage="3.5" magHealingDamage="7.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="166" name="Tsuful 2" description="" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="600" gainmanaticks="3" gainmanaamount="700" manamultiplier="1.1" attackspeed="1500" soulmax="100" gainsoulticks="120" fromvoc="165">
    <formula meleeDamage="15.0" distDamage="15.0" wandDamage="5.0" magDamage="6.5" magHealingDamage="16.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="167" name="Tsuful 3" description="" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="1100" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="100" gainsoulticks="120" fromvoc="165">
    <formula meleeDamage="22.0" distDamage="22.0" wandDamage="8.0" magDamage="9.0" magHealingDamage="23.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="168" name="Tsuful 4" description="" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="1700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="100" gainsoulticks="120" fromvoc="165">
    <formula meleeDamage="29.0" distDamage="29.0" wandDamage="12.0" magDamage="13.5" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="169" name="Tsuful 5" description="" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="2300" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="100" gainsoulticks="120" fromvoc="165">
    <formula meleeDamage="37.0" distDamage="37.0" wandDamage="16.0" magDamage="22.5" magHealingDamage="35.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="170" name="Tsuful 6" description="" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="2900" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="100" gainsoulticks="120" fromvoc="165">
    <formula meleeDamage="45.0" distDamage="45.0" wandDamage="20.0" magDamage="25.0" magHealingDamage="42.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="171" name="Tsuful 7" description="" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="100" soulmax="100" gainsoulticks="120" fromvoc="165">
    <formula meleeDamage="50.0" distDamage="58.0" wandDamage="28.0" magDamage="28.5" magHealingDamage="47.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="172" name="Tsuful Reborn 1" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2000" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="200" gainsoulticks="120" fromvoc="172">
    <formula meleeDamage="27.5" distDamage="25.0" wandDamage="12.0" magDamage="13.0" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="173" name="Tsuful Reborn 2" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="200" gainsoulticks="120" fromvoc="172">
    <formula meleeDamage="35.0" distDamage="36.0" wandDamage="17.0" magDamage="22.5" magHealingDamage="38.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="174" name="Tsuful Reborn 3" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="3600" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="200" gainsoulticks="120" fromvoc="172">
    <formula meleeDamage="41.0" distDamage="41.0" wandDamage="19.0" magDamage="25.5" magHealingDamage="44.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="175" name="Tsuful Reborn 4" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="172">
    <formula meleeDamage="49.0" distDamage="48.0" wandDamage="23.0" magDamage="28.5" magHealingDamage="51.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="176" name="Tsuful Reborn 5" description="" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="172">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.0" magHealingDamage="55.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="201" name="Gotenks Ssj 4 Reborn" description="a gotenks" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="144">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.0" magHealingDamage="55.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="300" name="Brolly" description="a Brolly" needpremium="0" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.5" gainhpamount="300" gainmanaticks="3" gainmanaamount="400" manamultiplier="1.1" attackspeed="1800" soulmax="100" gainsoulticks="120" fromvoc="300">
    <formula meleeDamage="8.0" distDamage="8.0" wandDamage="3.0" magDamage="3.5" magHealingDamage="7.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="301" name="Brolly SSJ" description="a Brolly" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="600" gainmanaticks="3" gainmanaamount="700" manamultiplier="1.1" attackspeed="1500" soulmax="100" gainsoulticks="120" fromvoc="300">
    <formula meleeDamage="15.0" distDamage="15.0" wandDamage="5.0" magDamage="6.5" magHealingDamage="16.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="302" name="Brolly SSJ2" description="a Brolly" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="1100" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="100" gainsoulticks="120" fromvoc="300">
    <formula meleeDamage="22.0" distDamage="22.0" wandDamage="8.0" magDamage="9.0" magHealingDamage="23.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="303" name="Brolly SSJ Ultimate " description="a Brolly" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="1700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="100" gainsoulticks="120" fromvoc="300">
    <formula meleeDamage="29.0" distDamage="29.0" wandDamage="12.0" magDamage="13.5" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="304" name="Brolly Ultimate2" description="a Brolly" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="2300" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="100" gainsoulticks="120" fromvoc="300">
    <formula meleeDamage="37.0" distDamage="37.0" wandDamage="16.0" magDamage="22.5" magHealingDamage="35.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="305" name="Brolly Ultimate 3 " description="a Brolly" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="2900" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="100" gainsoulticks="120" fromvoc="300">
    <formula meleeDamage="45.0" distDamage="45.0" wandDamage="20.0" magDamage="25.0" magHealingDamage="42.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="306" name="Legendary Brolly" description="a Brolly" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="100" soulmax="100" gainsoulticks="120" fromvoc="300">
    <formula meleeDamage="50.0" distDamage="58.0" wandDamage="28.0" magDamage="28.5" magHealingDamage="47.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="307" name="Brolly Reborn 1" description="a Brolly" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2000" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="200" gainsoulticks="120" fromvoc="nill">
    <formula meleeDamage="27.5" distDamage="25.0" wandDamage="12.0" magDamage="13.0" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="308" name="Brolly Reborn 2" description="a Brolly" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="200" gainsoulticks="120" fromvoc="300">
    <formula meleeDamage="35.0" distDamage="36.0" wandDamage="17.0" magDamage="22.5" magHealingDamage="38.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="309" name="Brolly Reborn 3" description="a Brolly" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="3600" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="200" gainsoulticks="120" fromvoc="300">
    <formula meleeDamage="41.0" distDamage="41.0" wandDamage="19.0" magDamage="25.5" magHealingDamage="44.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="310" name="Brolly Reborn 4" description="a Brolly" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="300">
    <formula meleeDamage="49.0" distDamage="48.0" wandDamage="23.0" magDamage="28.5" magHealingDamage="51.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="311" name="Brolly Reborn 5" description="a Brolly" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="300">
    <formula meleeDamage="55.0" distDamage="55.0" wandDamage="31.0" magDamage="34.0" magHealingDamage="55.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="350" name="Kame" description="a Kame" needpremium="1" gaincap="70" gainhp="160" gainmana="150" gainhpticks="3.5" gainhpamount="300" gainmanaticks="3" gainmanaamount="400" manamultiplier="1.1" attackspeed="1800" soulmax="100" gainsoulticks="120"> fromvoc="nil">
    <formula meleeDamage="8.0" distDamage="8.0" wandDamage="3.0" magDamage="3.5" magHealingDamage="7.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="351" name="Kame 2" description="a Kame" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="600" gainmanaticks="3" gainmanaamount="700" manamultiplier="1.1" attackspeed="1500" soulmax="100" gainsoulticks="120" fromvoc="350">
    <formula meleeDamage="15.0" distDamage="15.0" wandDamage="5.0" magDamage="6.5" magHealingDamage="16.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="352" name="Kame 3" description="a Kame" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="1100" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="100" gainsoulticks="120" fromvoc="350">
    <formula meleeDamage="22.0" distDamage="22.0" wandDamage="8.0" magDamage="9.0" magHealingDamage="23.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="353" name="Kame 4" description="a Kame" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="1700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="100" gainsoulticks="120" fromvoc="350">
    <formula meleeDamage="29.0" distDamage="29.0" wandDamage="12.0" magDamage="13.5" magHealingDamage="30.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="354" name="Kame 5" description="a Kame" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="2300" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="100" gainsoulticks="120" fromvoc="350">
    <formula meleeDamage="37.0" distDamage="37.0" wandDamage="16.0" magDamage="22.5" magHealingDamage="35.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="355" name="Kame 6" description="a Kame" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="2900" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="100" gainsoulticks="120" fromvoc="350">
    <formula meleeDamage="45.0" distDamage="45.0" wandDamage="20.0" magDamage="25.0" magHealingDamage="42.5" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="356" name="Kame 7" description="a Kame" needpremium="0" gaincap="70" gainhp="155" gainmana="155" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="100" soulmax="100" gainsoulticks="120" fromvoc="350">
    <formula meleeDamage="53.0" distDamage="61.0" wandDamage="31.0" magDamage="31.5" magHealingDamage="50.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="357" name="Kame Reborn 1" description="a Kame" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2000" gainmanaticks="3" gainmanaamount="900" manamultiplier="1.1" attackspeed="1200" soulmax="200" gainsoulticks="120" fromvoc="nil">
    <formula meleeDamage="30.5" distDamage="30.0" wandDamage="15.0" magDamage="16.0" magHealingDamage="33.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="358" name="Kame Reborn 2" description="a Kame" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="2700" gainmanaticks="3" gainmanaamount="1150" manamultiplier="1.1" attackspeed="900" soulmax="200" gainsoulticks="120" fromvoc="357">
    <formula meleeDamage="38.0" distDamage="36.0" wandDamage="20.0" magDamage="25.5" magHealingDamage="41.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="359" name="Kame Reborn 3" description="a Kame" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="3600" gainmanaticks="3" gainmanaamount="1400" manamultiplier="1.1" attackspeed="600" soulmax="200" gainsoulticks="120" fromvoc="357">
    <formula meleeDamage="44.0" distDamage="44.0" wandDamage="22.0" magDamage="28.5" magHealingDamage="47.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="360" name="Kame Reborn 4" description="a Kame" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="4200" gainmanaticks="3" gainmanaamount="1800" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="357">
    <formula meleeDamage="52.0" distDamage="52.0" wandDamage="26.0" magDamage="31.5" magHealingDamage="54.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    <vocation id="361" name="Kame Reborn 5" description="a Kame" needpremium="0" gaincap="50" gainhp="75" gainmana="65" gainhpticks="3.0" gainhpamount="5000" gainmanaticks="3" gainmanaamount="2500" manamultiplier="1.1" attackspeed="300" soulmax="200" gainsoulticks="120" fromvoc="357">
    <formula meleeDamage="58.0" distDamage="64.0" wandDamage="34.0" magDamage="37.0" magHealingDamage="58.0" defense="1.1" magdefense="1.3" armor="1.0"/>
    <skill fist="1.1" club="1.1" sword="1.0" axe="1.2" distance="1.1" shielding="1.1" fishing="1.1" experience="1.0"/>
    </vocation>
    </vocations>

    Loguin.lua

    local config = {
    loginMessage = getConfigValue('loginMessage'),
    useFragHandler = getBooleanFromString(getConfigValue('useFragHandler'))
    }
    function onLogin(cid)
    local loss = getConfigValue('deathLostPercent')
    if(loss ~= nil) then
    doPlayerSetLossPercent(cid, PLAYERLOSS_EXPERIENCE, loss * 10)
    end
    if(not isPlayerGhost(cid)) then
    doSendMagicEffect(getCreaturePosition(cid), 26)
    end
    if (getPlayerStorageValue(cid,30023) == 1) then
    doChangeSpeed(cid, 250)
    end
    registerCreatureEvent(cid, "Instrukcja")
    registerCreatureEvent(cid, "Techniques")
    registerCreatureEvent(cid, "Instrukcja")
    registerCreatureEvent(cid, "Teleport")
    registerCreatureEvent(cid, "Paccexp")
    registerCreatureEvent(cid, "Dstolvl")
    registerCreatureEvent(cid, "Stolvl")
    registerCreatureEvent(cid, "Bsitemy")
    registerCreatureEvent(cid, "potwor")
    registerCreatureEvent(cid, "SkullLogin2")
    registerCreatureEvent(cid, "BlackSkull")
    registerCreatureEvent(cid, "LevelBlessMowa")
    registerCreatureEvent(cid, "LevelProtection")
    registerCreatureEvent(cid, "SkullDeath")
    registerCreatureEvent(cid, "SkullLogin")
    registerCreatureEvent(cid, "Logujem")
    registerCreatureEvent(cid, "Mail")
    registerCreatureEvent(cid, "GuildMotd")
    registerCreatureEvent(cid, "Effect")
    registerCreatureEvent(cid, "Idle")
    if(config.useFragHandler) then
    registerCreatureEvent(cid, "SkullCheck")
    end
    registerCreatureEvent(cid, "ReportBug")
    registerCreatureEvent(cid, "AdvanceSave")
    function onLogin(cid)
    registerCreatureEvent(cid, "PlayerDeath")
    return TRUE
    end
    return true
    end

    Pode me ajudar?
  • Quem Está Navegando   0 membros estão online

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