View Single Post
11-24-05, 08:09 AM   #7
Gello
A Molten Giant
AddOn Author - Click to view addons
Join Date: Jan 2005
Posts: 521
Oh yeah unfortunately mods can't put stuff into other character's folders.

If your information saves per-character now, you could add an option to make global data someplace. To give the user the option from within your mod instead of the .toc. That's not too hard to do:

user = UnitName("player").." of "..GetCVar("realmName")
-- immediately after getting the user check if they want global and substitute a global name
if tf_user_options.Global then
user = "Global of AllServers"
end

But then "Global of AllServers" would have default settings. So not an ideal solution either but it's one approach.
  Reply With Quote