mirror of
https://github.com/ornfelt/azerothcore_lua_scripts
synced 2026-08-22 06:26:03 -04:00
13 lines
No EOL
293 B
Lua
13 lines
No EOL
293 B
Lua
-- dump all your skills as json
|
|
|
|
abSkillList=""
|
|
abSkillCount=GetNumSkillLines()
|
|
for a=1,abSkillCount do
|
|
local b,c=GetSkillLineInfo(a)
|
|
if not c then
|
|
abSkillList=abSkillList..b;
|
|
if a<abSkillCount then
|
|
abSkillList=abSkillList.."; "
|
|
end
|
|
end
|
|
end |