No categories assigned

LUA:AddSkillBonus


LUA:AllFunctions - AddSkillBonus

Return to: LUA:AllFunctions | Tutorials | Portal | Forum | Project Manager | Bug Tracker


Adds a bonus to the given skill

Syntax

AddSkillBonus(param1, param2, param3)

Parameters

Required - param1 (Spawn), param2 (int32), param3 (sint32)
param1 is the spawn receiving the bonus
param2 is the skill id
param3 is the bonus value


Example

function cast(Caster, Target)
    AddSkillBonus(Caster, 1, 15)
end

Adds 15 points to skill 1 to the caster of the spell.

Notes

param2 refers to the skills table in the DB.

If this function is used in a spell script the target param (param1) will be overwritten by the code to use the spells targets.