Graal Forums

Graal Forums (https://forums.graalonline.com/forums/index.php)
-   NPC Scripting (https://forums.graalonline.com/forums/forumdisplay.php?f=8)
-   -   Can anyone help me find a list of the GuiWindowCtrl and GuiBitmapBorderCtrl profiles? (https://forums.graalonline.com/forums/showthread.php?t=134262949)

Jiroxys7 04-23-2011 09:35 PM

Can anyone help me find a list of the GuiWindowCtrl and GuiBitmapBorderCtrl profiles?
 
The built-in ones I mean. And possibly how I can change the text color as well and use custom profiles?

I checked the wiki and these forums with no luck. I'm starting to hate the blue-text-on-blue-gui thing. It makes most text hard to read unless you move the GUI over on top of some dark-colored tiles.

fowlplay4 04-23-2011 10:38 PM

This is what you're looking for:
http://wiki.graal.net/index.php/Crea...g_GUI_Profiles

Creating a Profile Example:

PHP Code:

//#CLIENTSIDE
function onCreated() {
  
// Profiles only need to be created once.
  // Preferably in it's own -Profiles weapon. 
  // Make sure -Profiles is before other weapons that might use these profiles. 
  // (serveroptions: weaponorder=-Profiles,-System)
  
new GuiControlProfile("ZodiacButtonProfile") {
    
bitmap "zodiacguibutton.gif";
    
transparency 1;
    
opaque 1;
    
textoffset "0 -10";
    
align "center";
    
fontcolor "255 255 255";
    
fonttype "Arial";
    
fontsize 12;
    
fontstyle "cb";
    
fillcolor =  fillcolorhl fillcolorna "44 46 44";
  }


Use Own Profile Example:

PHP Code:

new GuiButtonCtrl("Example") {
  
width height 100;
  
profile ZodiacButtonProfile
  
useownprofile true;
  
profile.fontcolor "255 0 0"// Changes Font Color Red



MysticalDragon 04-24-2011 01:01 AM

here is a list of the default profiles
profile = GuiBlueWindowProfile;
profile = GuiBluePopUpMenuProfile;
profile = GuiBlueTextEditProfile;
profile = GuiBlueTextProfile;
profile = GuiBlueButtonProfile;
profile = GuiBlueMLTextEditProfile
profile = GuiBlueRadioProfile;
scrollProfile = GuiBlueScrollProfile
textProfile = GuiBlueTextListProfile;


All times are GMT +2. The time now is 06:49 AM.

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