Moon Wizard how do we define what buttons are visible by default for players? Can see where to do it for GMs but players by default seem to pickup the default options which include GM only tools.
Do you have a guess as to when this might go live?
Printable View
Moon Wizard how do we define what buttons are visible by default for players? Can see where to do it for GMs but players by default seem to pickup the default options which include GM only tools.
Do you have a guess as to when this might go live?
The folders / tabs i Mutants and Masterminds are a complete mess in 3.2.0. If you add any, all content vanishes. But if you don't everything is just in one confusing pile i a single folder. I get that M&M isn't made for core, but I sure hope it will get fixed.
Vires Animi
I dont think M&M should be affected by an upgrade to CoreRPG so there must be engine changes as well....
There are engine changes, so M&M may be effected.
I asked Moon about "Default Buttons" and there is an array where they can be listed - Moon has said that he doesn't want that list being modified, so there is noway to add or subtract to it except as part of an overright. The array is hard-coded in the data_library.lua file.
At least, that's how I understand things :)
But anything thats written in an XML can be overwritten...
Sets the default sidebar buttons for the GM to Characters, Story, Images, NPCs, Encounters, Items, Tables, Notes and Rolls.Code:LibraryManager.setDefaultSidebarState("play", "charsheet,story,image,npc,battle,item,table,note,cas");
Havent as yet found where to set it for the Client connection.
You'll have to forgive my lua newbishness, but couldn't you do a check for host/client status using an "if/then/else" function and setting defualts respectively that way?
Damned, the way it is set up is by modes not GM/client. "Play", "Live", "Local". I added to the "play" and made GM and client versions of "play". In the end I abandoned the effort, by adding the GM buttons to keep the stack single column. If you want to make changes it as Dulux states... "array" away!
Damned,
That's true, only modes are left. You have to take the "play" mode and change it to allow for gm and player stacks; ala "playplayer" and "playgm".
This is from the manager_library.lua first few lines.
aDefaultSidebarState = {
["play"] = "charsheet,note,image,table,story,quest,npc,battle ,item,treasureparcel",
["create"] = "charsheet",
};
change it to something like this:
aDefaultSidebarState = {
["playgm"] = "charsheet,note,image,table,story,quest,npc,battle ,item,treasureparcel",
["playplayer"] = "charsheet,note,table"
["create"] = "charsheet",
};
The functions: "function reset()" and "function resetSidebar" have to be changed to allow the new modes. I don't remember changing much else to make this work. If you want to change icon sizing placement etc, then you need to enter the manager_desktop.lua.