- Joined
- Dec 23, 2014
- Messages
- 2,476
- Solutions
- 69
- Reaction score
- 1,135
Is it possible to get the spell words in the xml file from the lua file of the spell?
.xml
.lua
.xml
XML:
words = "exori"
.lua
LUA:
function onCastSpell(c, v)
if spellWords = "exori" then
....
end
end
[code]