mirror of
https://github.com/emagi/eq2emu
synced 2026-08-12 18:23:04 -04:00
518 B
518 B
Function: RemoveSkill(player_spawn, skill_id, more_to_remove)
Description: Remove's the skill from the player's skill list.
Parameters:
player_spawn(Spawn) - Spawn object representingplayer_spawn.skill_id(uint32) - Integer valueskill_id.more_to_remove(bool) - Boolean flagmore_to_remove.
Returns: None.
Example:
-- From ItemScripts/BardCertificationPapers.lua
if HasSkill(Player, 1408356869) then -- Martial/Fighter
RemoveSkill(Player, 1408356869)
end