i want to set up the hot keys like this where the 2 on the right r skills only & 1 on the left is items the pick in the right is the battle graphic
(http://i184.photobucket.com/albums/x287/nathmatt/NewBitmapImage-3.jpg)
If you are using "Direct Hotkeys" (which I can see on your HUD), then you can't use the skill and item buttons.
u cant go in the script & change the hot key controls to that
Hotkeys = 1..10 to
Hotkeys = ( I, J, K)
Actually you do with a bit of scripting.
how would u go a bout doing it i might be able to do it myself but not sure how to make the i key only store items i kinda want to skip the hot key but have 2 or more skill slots
There are two positions in the script which are important in this case. One if the hotkey assignment scene and the other is the hotkey use during the map scene. The methods are "class Scene_Controls" in part 3 line 7090 and "update_skill" in part 3 line 3848 with "update_item" in part 3 line 3894. For the first part: Somebody would need to edit the scene a bit so only 3 keys are assigned and that your HUD add-on is used for it instead. For the second part: Instead of iterating just through the numbers for the hotkeys, they should iterate through the numbers but use letters for the activation.