- Joined
- Jun 22, 2017
- Messages
- 540
- Reaction score
- 1,362
- First Language
- Norwegian
- Primarily Uses
- RMMZ
I used the DevTools to add text to the status menu.
Which makes it look like this

But I don't know how to implement it tbh. Anyone able to make this into a plugin or can I use the code as is?
The intention is to show which skills the class learns at the indicated levels, it can just be text form as I don't have class changes, or show the text based on skill id I suppose?
If I could just see how the text is implemented then I would not mind manually adding each text to each class even.
Code:
SceneManager._scene._statusWindow.drawTextEx(" \\c[0]Job Lv. \\c[4]10 \\c[0]-\n\n \\c[0]Job Lv. \\c[4]20 \\c[0]-\n\n \\c[0]Job Lv. \\c[4]30 \\c[0]-\n\n \\c[0]Job Lv. \\c[4]40 \\c[0]-\n\n \\c[0]Job Lv. \\c[4]50 \\c[0]-", 15, 210)
SceneManager._scene._statusWindow.drawTextEx(" \\c[0]Job Lv. \\c[4]60 \\c[0]-\n\n \\c[0]Job Lv. \\c[4]70 \\c[0]-\n\n \\c[0]Job Lv. \\c[4]80 \\c[0]-\n\n \\c[0]Job Lv. \\c[4]90 \\c[0]-\n\n \\c[0]Job Lv. \\c[4]99 \\c[0]-", 320, 210)
Which makes it look like this

But I don't know how to implement it tbh. Anyone able to make this into a plugin or can I use the code as is?
The intention is to show which skills the class learns at the indicated levels, it can just be text form as I don't have class changes, or show the text based on skill id I suppose?
If I could just see how the text is implemented then I would not mind manually adding each text to each class even.