BUG: The Eldritch Knight incorrectly reports "Too many magic levels!".
All prestige classes that grant extra magic levels to other classes are currently calculating the number of levels they should grant as 0 at all levels. I've gotten it fixed for the next update, but I'm afraid it didn't make it into the 3.7 update. Thanks for catching it.
Fortunately, this is only a problem that reports an error it shouldn't (and doesn't tell the user how many they can really add). The table to add magic levels is still present, and the magic levels still function as normal once they're added.
WISH: Can we add Gauntlets of Ogre Power stack with Belt of Giant Strength as a House Rule? If not, Can you tell me how to create a copy of the GoOP will stack?
In the editor, go to the Wondrous tab, and press the "New (Copy)" button on the lower left. In the list of things to copy, find the Gauntlets of Ogre Power, and note that in parentheses next to the name is their unique Id (ioGaOgrePw) - write that down on a piece of scrap paper, and select the gauntlets.
Next, add a Belt of Giant Strength the same way.
For each of those items, press the "Eval Scripts" button on the top right, and compare the scripts for each item (here's the Gauntlets of Ogre Power's script):
Code:
if (field[gIsEquip].value <> 0) then
#enhancementbonus[hero.child[aSTR], 2]
endif
So, what it's saying is, if the item is equipped, add an enhancement bonus of 2 to the strength.
Looking at the belt of giant strength, you'll see that its script is identical, except that the bonus is 4.
Enhancement bonuses don't stack in d20, which is why those items don't stack with each other. So, to make them stack with each other, you'll have to change the type of bonus that's being applied on one or the other.
An un-typed bonus:
Code:
if (field[gIsEquip].value <> 0) then
hero.child[aSTR].field[Bonus].value += 2
endif
A sacred bonus:
Code:
if (field[gIsEquip].value <> 0) then
#applybonus[BonSacred, hero.child[aSTR], 2]
endif
Pick one of those, or take the second one, look up the bonus types that are available on the "Reference Information" page of the editor manual to choose a different bonus to apply, and replace the Eval Script on the Gauntlets of Ogre power with that.
Now, on the right-hand side of the editor, find the "Replaces Thing Id" box - in that box, fill in the unique Id of the Gauntlets of Ogre power - "ioGaOgrePw".
At the top, give your replacement item a new unique Id, like "ioGaOgreA" and save the copy. Now delete the copy of the belt of giant strength you made, save the file, and press the "Test Now!" button at the top left of the editor. You've now replaced the Gauntlets of Ogre power with a version that grants a different type of bonus, instead of an enhancement bonus.
As someone who's DMed this game before, I would recommend increasing the price for your new gauntlets - the gauntlets + belt+4 combo should cost as much as a belt +6, or the cost of a high strength bonus becomes too cheap.