View Single Post
11/30/18, 03:27 PM   #6
votan
 
votan's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2014
Posts: 577
Originally Posted by r4cken View Post
Right, yes its only in memory before the reloadui or logout/login. But i should be able to edit all the characters i want one after eachother and not having to reloadui in between everyone?
You get all your ids with:
Lua Code:
  1. for i = 1, GetNumCharacters() do
  2.   local _, _, _, _, _, _, id = GetCharacterInfo(i)
  3. ...
  4. end
  Reply With Quote