• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

Weird Vocations Idea

zizimaza

New Member
Joined
Nov 4, 2007
Messages
73
Reaction score
3
Okay, so I have a server with an odd vocation dynamic on my server...
  1. Knights have no mana, everything is based off exhaust (low damage, but very tanky)
    1. E.g. Garen from League of Legends
  2. Paladins have 200 mana no matter what level and they heal/attack with that pool
    1. E.g. Akali/Zed's stamina from League of Legends
  3. Mages have gain 40 mana per level
    1. Felt like mages needed more of a buffer for mana shield
    2. Skill shots deal far more damage than point and click (i.e. sudden death runes)

My server has this dynamic implemented in its BETA testing. Hop on and try it out!
Code:
www.honorandchaos.com
Let me know what you think!
DrewWeth
 
Great ideas. I have one vocation in my brain: drunken warrior. It's a knight with low attack but when he is drunked his power increases.
 
Drunken Warrior ..

PHP:
local condition = createConditionObject(CONDITION_ATTRIBUTES)
setConditionParam(condition, CONDITION_PARAM_TICKS, 5 * 60 * 1000)
setConditionParam(condition, CONDITION_PARAM_SKILL_MELEE, 150)

function onUse(cid, item, fromPosition, itemEx, toPosition)
    if(doAddCondition(cid, condition)) then
        doSendMagicEffect(fromPosition, CONST_ME_MAGIC_RED)
        doRemoveItem(item.uid)
    end

    return true
end
Use Any Alchool .
 
Back
Top