Hey there.
I was going on working on my own profile system and came up to this:
I added a status "system" to it with storing the status into the player flags. For the GUI part I used:
PHP Code:
new GuiMLTextEditCtrl("callimuc_profile-status") {
useOwnProfile = true;
profile.fontSize = 12;
profile.fontStyle = "b";
profile.fontType = "Arial";
profile.fontColor = {139,69,19};
x = 5;
y = 0;
width = 290;
height = 45;
text = thiso.playerstatus; //through other stuff this is linked to the player flag called clientr.status
}
So this should be the GUI supporting the HTML codes (looked up in Graal Bible). In my flags i have:
clientr.status=test<br>test
but in the status it says than the exact thing as the flag but ignored the HMTL part. Even if I change it to
PHP Code:
text = "test<br>test";
that wont work. What should I do?