Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   NPC Scripting (https://forums.graalonline.com/forums/forumdisplay.php?f=8)
-   -   Player flags and GuiMLTextEditCtrl() (https://forums.graalonline.com/forums/showthread.php?t=134264146)

callimuc 08-09-2011 01:57 AM

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?


All times are GMT +2. The time now is 12:05 PM.

Powered by vBulletin® Version 3.8.11
Copyright ©2000 - 2026, vBulletin Solutions Inc.
Copyright (C) 1998-2019 Toonslab All Rights Reserved.