• 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!

[8.5] The Forgotten Server 0.3.5pl1 (Crying Damson)

Status
Not open for further replies.
0.3.6 will be released at Monday, I want to give a shoot on fixing exhaustion at Swift Foot and Protector spells.
 
some months ago i come here to ask it, and now whjen i stop with tibia i see that ? III AAAAAAM BAAACCKK!
thanks Elf' :)
 
0.3.6 will be released at Monday, I want to give a shoot on fixing exhaustion at Swift Foot and Protector spells.

You are too nice Elf....People should learn to compile a bit by themselves instead of releasing all the time a new project.
 
Hello Elf,

I noticed there is something wrong with the spellpack.
A paladin of level 9 heals with 2/3 hp, but they should heal with a start of 10 minimum damage and max 10 damage. How can I edite it?

Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HEALING)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false)
setCombatParam(combat, COMBAT_PARAM_DISPEL, CONDITION_PARALYZE)
setHealingFormula(combat, COMBAT_FORMULA_LEVELMAGIC, 5, 5, 1.5, 2)

function onCastSpell(cid, var)
	return doCombat(cid, combat, var)
end

Should be something like this?
Code:
local combat = createCombatObject()
setCombatParam(combat, COMBAT_PARAM_TYPE, COMBAT_HEALING)
setCombatParam(combat, COMBAT_PARAM_EFFECT, CONST_ME_MAGIC_BLUE)
setCombatParam(combat, COMBAT_PARAM_AGGRESSIVE, false)
setCombatParam(combat, COMBAT_PARAM_DISPEL, CONDITION_PARALYZE)
setHealingFormula(combat, COMBAT_FORMULA_LEVELMAGIC, -1, -10, 5, 5, 1.5, 2)

function onCastSpell(cid, var)
	return doCombat(cid, combat, var)
end
 
Was there any changes in functions name etc. from 0.3.4pl2 to 0.3.5pl1?
 
@Up, i Think the only one change is that True = True, and don't True = 1 anymore..
change it and will work good' :)
 
MMm dude.

Next update 0.3.6 Protocol game¿?
more Functions¿?
 
@elf on next update can you put base speed configuration?
linke now is moster atack 1.0
you can put that to vocations base speed that would be great

If want/can if not doesnt matter
 
Next update 0.3.6 Protocol game¿?
more Functions¿?
CHANGELOG -+ You can say?
 
Status
Not open for further replies.
Back
Top