View Single Post
01-24-13, 03:24 PM   #6
Dwargh
A Theradrim Guardian
 
Dwargh's Avatar
AddOn Author - Click to view addons
Join Date: Oct 2008
Posts: 64
Originally Posted by kuracisto View Post
I ran into this problem, and though I do want all my action bar keybindings and locations the same for uniformity (I'm lazy ) there is a "hack" that'll make it work your way.

In your Wow\Interface\AddOns\Ion\ directory there is a Table of Contents file called Ion.toc, the first few lines of it look like this:
## Interface: 50100
## Title: Ion
## Notes: Ion: Action Bar & Object Mananger
## Author: Connor Chenoweth (aka Maul)
## Version: Hydrogen-5
## DefaultState: enabled
## SavedVariables: IonGDB, IonItemCache
## SavedVariablesPerCharacter: IonCDB, IonSpec, IonGDB, IonItemCache

Change the last two lines shown to look like this:
## SavedVariables:
## SavedVariablesPerCharacter: IonCDB, IonSpec, IonGDB, IonItemCache, IonGDB, IonItemCache

This essentially makes all ion data character specific. nothing will be shared between characters.

Hope that might help,
Kuracisto@EmeraldDream
Think you mean from:
## SavedVariables: IonGDB, IonItemCache
## SavedVariablesPerCharacter: IonCDB, IonSpec

to:
## SavedVariables:
## SavedVariablesPerCharacter: IonCDB, IonSpec, IonGDB, IonItemCache
  Reply With Quote