ID:158716
 
I recently learned how to make my own skin and I was wondering if know how to do either of the following and if so explain how this can be done

1. a output box that only displays system messages like u level up etc..

2. a info box that will only display skills

1. Use output() to the appropriate element whenever an event like levelling up happens.

2. Um, use grids instead? Or you can limit what is shown in the stats by modifying variables - though it is less efficient:
client/Stat()
if(mob.showstat&INFO) // binary stuff
...info stuff... shown only when showstat has the bit value of INFO
In response to GhostAnime
Cool thanx for the info