View Single Post
  #1  
Old 08-09-2011, 01:57 AM
callimuc callimuc is offline
callimuc's Avatar
Join Date: Nov 2010
Location: Germany
Posts: 1,015
callimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to beholdcallimuc is a splendid one to behold
Player flags and GuiMLTextEditCtrl()

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};
  
5;
  
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?
__________________
MEEP!
Reply With Quote