1
0
EQ2Emu/docs/lua_functions/SetSpellData.md
2025-05-25 21:42:32 -04:00

713 B

Function: SetSpellData(spell, field, fieldvalue)

Description: Set's the spell data value

Parameters:

  • spell (Spell) - Spell object representing spell.
  • field (string) - String field.
  • fieldvalue (value) - fieldvalue.

Returns: None.

Example:

-- From ItemScripts/AbbatoirCoffee.lua
function cast(Item, Player)
	Spell = GetSpell(5463)
	Regenz = 18.0
	newDuration = 180000
	SetSpellData(Spell, "duration1", newDuration)
	SetSpellData(Spell, "duration2", newDuration)
	SetSpellDataIndex(Spell, 0, Regenz)
	SetSpellDisplayEffect(Spell, 0, "description", "Increases Out-of-Combat Power Regeneration of target by " .. Regenz)
	CastCustomSpell(Spell, Player, Player)
end