All I wish to do is a seemingly simple task; remove the status bar from the SBox GUI. It is taking up valuable space which could be used for other things
I don't know where to start. How would I remove the status bar?
Moderator: Thema
Thema wrote:I am working on the scrollbar issue, as soon as I learn how to add one I will.
Thema wrote:At the very least I will look at it again during the next few. If I come up with anything I will post it.
Thema wrote:Sorry the question about op prefixes in the SBox GUI went by me somehow.
Yes that should be doable. All I need to do is copy the code from the Prefixed GUI to the relevent place in the shoutbox.
I can see how it would be useful to know if you're talking to a ChanOp before you upset them and end up kicked...
![]()
![]()
![]()
I will find time for it very soon. I will try for the weekend, or sooner.
Thema wrote:Perhaps you can tell me what it means in terms of how the GUI behaves...
Thema wrote:Are you sure?
Perhaps you need to clear out your Java cache.
That GUI has been in a production environment now for some time as it was a special request from Syzop who is one of the coders for the UnrealIRCD. I would have thought he would have told me if it didn't work.
Even so I will test it for myself over the weekend if not sooner.
<param name="pixx:prefixops" value="true">
<param name="pixx:prefixbold" value="false">
<param name="pixx:prefixfg" value="1">
<param name="pixx:prefixbg" value="0">
<param name="pixx:prefixopfg" value="1">
<param name="pixx:prefixopbg" value="0">
<param name="pixx:prefixsopfg" value="1">
<param name="pixx:prefixsopbg" value="0">
<param name="pixx:prefixhopfg" value="1">
<param name="pixx:prefixhopbg" value="0">
<param name="pixx:prefixvopfg" value="1">
<param name="pixx:prefixvopbg" value="0">
if((full!=null) && (!full.equals(nick))) // Check to see if there is a prefixed nick
{
String prefix=full.substring(0,1);
int fg=0;
int bg=0;
if (prefix.equals("~"))
{
fg=_pixxConfiguration.getI("prefixsopfg"); // Get the foreground colour
bg=_pixxConfiguration.getI("prefixsopbg"); // Get the background colour
}
else if (prefix.equals("@"))
{
fg=_pixxConfiguration.getI("prefixopfg"); // Get the foreground colour
bg=_pixxConfiguration.getI("prefixopbg"); // Get the background colour
}
else if (prefix.equals("%"))
{
fg=_pixxConfiguration.getI("prefixhopfg"); // Get the foreground colour
bg=_pixxConfiguration.getI("prefixhopbg"); // Get the background colour
}
else if (prefix.equals("+"))
{
fg=_pixxConfiguration.getI("prefixvopfg"); // Get the foreground colour
bg=_pixxConfiguration.getI("prefixvopbg"); // Get the background colour
}
nick=""+fg+","+bg+full+""; // Add the new background & foreground colours, and remove them after the nick.
if (_pixxConfiguration.getB("prefixbold"))
{
nick=""+nick+""; // Embolden the nick if needed.
}
}
if((full!=null) && (!full.equals(nick))) // Check to see if there is a prefixed nick
{
String prefix=full.substring(0,1);
int fg=0;
int bg=0;
if (prefix.equals("~"))
{
fg=_pixxConfiguration.getI("prefixsopfg"); // Get the foreground colour
bg=_pixxConfiguration.getI("prefixsopbg"); // Get the background colour
}
else if (prefix.equals("&"))
{
fg=_pixxConfiguration.getI("prefixpopfg"); // Get the foreground colour
bg=_pixxConfiguration.getI("prefixpopbg"); // Get the background colour
}
else if (prefix.equals("@"))
{
fg=_pixxConfiguration.getI("prefixopfg"); // Get the foreground colour
bg=_pixxConfiguration.getI("prefixopbg"); // Get the background colour
}
else if (prefix.equals("%"))
{
fg=_pixxConfiguration.getI("prefixhopfg"); // Get the foreground colour
bg=_pixxConfiguration.getI("prefixhopbg"); // Get the background colour
}
else if (prefix.equals("+"))
{
fg=_pixxConfiguration.getI("prefixvopfg"); // Get the foreground colour
bg=_pixxConfiguration.getI("prefixvopbg"); // Get the background colour
}
nick=""+fg+","+bg+full+""; // Add the new background & foreground colours, and remove them after the nick.
if (_pixxConfiguration.getB("prefixbold"))
{
nick=""+nick+""; // Embolden the nick if needed.
}
}config.set("prefixops",getBoolean("prefixops",false)); // Added by Thema for Syzop.
config.set("prefixbold",getBoolean("prefixbold",true)); // Added by Thema for Syzop.
config.set("prefixsopfg",getInt("prefixsopfg",4)); // Added by Thema for Syzop.
config.set("prefixopfg",getInt("prefixopfg",4)); // Added by Thema for Syzop.
config.set("prefixhopfg",getInt("prefixhopfg",4)); // Added by Thema for Syzop.
config.set("prefixvopfg",getInt("prefixvopfg",4)); // Added by Thema for Syzop.
config.set("prefixsopbg",getInt("prefixsopbg",0)); // Added by Thema for Syzop.
config.set("prefixopbg",getInt("prefixopbg",0)); // Added by Thema for Syzop.
config.set("prefixhopbg",getInt("prefixhopbg",0)); // Added by Thema for Syzop.
config.set("prefixvopbg",getInt("prefixvopbg",0)); // Added by Thema for Syzop. config.set("prefixops",getBoolean("prefixops",false)); // Added by Thema for Syzop.
config.set("prefixbold",getBoolean("prefixbold",true)); // Added by Thema for Syzop.
config.set("prefixsopfg",getInt("prefixpopfg",4)); // Added by Antiaverage for Thema.
config.set("prefixsopfg",getInt("prefixsopfg",4)); // Added by Thema for Syzop.
config.set("prefixopfg",getInt("prefixopfg",4)); // Added by Thema for Syzop.
config.set("prefixhopfg",getInt("prefixhopfg",4)); // Added by Thema for Syzop.
config.set("prefixvopfg",getInt("prefixvopfg",4)); // Added by Thema for Syzop.
config.set("prefixsopfg",getInt("prefixpopbg",0)); // Added by Antiaverage for Thema.
config.set("prefixsopbg",getInt("prefixsopbg",0)); // Added by Thema for Syzop.
config.set("prefixopbg",getInt("prefixopbg",0)); // Added by Thema for Syzop.
config.set("prefixhopbg",getInt("prefixhopbg",0)); // Added by Thema for Syzop.
config.set("prefixvopbg",getInt("prefixvopbg",0)); // Added by Thema for Syzop.
Users browsing this forum: No registered users and 1 guest