Excessive Plus v1.04-beta5
Okay I understand now thanks!
Thx Easy for updated font.php :thumbright:
Waiting for instructions to webspider, how to display teams on 1.04 servers correctly with flags
btw I think that flags on spider should display Real Countries not fake flags.
Thx Easy for updated font.php :thumbright:
Waiting for instructions to webspider, how to display teams on 1.04 servers correctly with flagsbtw I think that flags on spider should display Real Countries not fake flags.
btw since I cant edit my post here I need double post cuz I forgot to ask for smth
@Easy, can you tell me how to display tag in other colors, I mean on forum, everyone who is mod got yellow nickname on main forum page like this:
normally it looks like
I want to know code that makes that, I want to use it on my own forum
thx
The Camels Clan wrote:Thx Easy for updated font.php :thumbright:
Waiting for instructions to webspider, how to display teams on 1.04 servers correctly with flagsbtw I think that flags on spider should display Real Countries not fake flags.
btw since I cant edit my post here I need double post cuz I forgot to ask for smth
@Easy, can you tell me how to display tag in other colors, I mean on forum, everyone who is mod got yellow nickname on main forum page like this:
normally it looks like
I want to know code that makes that, I want to use it on my own forum
thx
just do something like....
function removechars(){
}
then
$tagname = removechars($row['user']);
if($user == "mod"){
$color = "^3";
}
echo "$color$tagname";
or some like!
Cyaz
removecolor()
sry not chars
when come beta6 or release? u have a deadline or so?
i see is not so many bugs then u cant fixed in 1 month
The Camels Clan wrote:The Camels Clan wrote:Thx Easy for updated font.php :thumbright:
Waiting for instructions to webspider, how to display teams on 1.04 servers correctly with flagsbtw I think that flags on spider should display Real Countries not fake flags.
btw since I cant edit my post here I need double post cuz I forgot to ask for smth
@Easy, can you tell me how to display tag in other colors, I mean on forum, everyone who is mod got yellow nickname on main forum page like this:
normally it looks like
I want to know code that makes that, I want to use it on my own forum
thx
just do something like....
function removechars(){
}then
$tagname = removechars($row['user']);
if($user == "mod"){
$color = "^3";
}echo "$color$tagname";
or some like!
Cyaz
Fest go ahead and try it, it wont work.
I meant how to colorize whole tagname that has already colors on it, example:
^3he^2ll^1o
try add at the beggining your ^3
there is some code that makes whole tagname with one specific color, i cant use any php function to erase ^3 or how should I erase code like that ^x777000 etc?
There is code like
^3he^2ll^1o^bg=435678
so there should be also smth like
^3he^2ll^1o&fontcolor=444444
dunno, waiting for Easy
try something like...
$tagname = preg_replace('!\^x([A-Z0-9]{6})!is','', $tagname);
$tagname = preg_replace('!\^([A-Z0-9]{1})!is','', $tagname);
cya!
try something like...
$tagname = preg_replace('!\^x([A-Z0-9]{6})!is','', $tagname);
$tagname = preg_replace('!\^([A-Z0-9]{1})!is','', $tagname);cya!
Tried, wont work, and btw to generate correct long tag names I need to use
rawurlencode function, that gives smth like that
%5E0%5E4%5B%ED%5EF%5E0%5E3%F2%5Es%5E0%5E4.%5D%5E0%5E4%E3%E1%ED%E5%EC
So this is useless..or maybe someone knows other solution?
[code:1]function rmv_tagname($tagname){
$tagname = preg_replace('!\^x([A-Z0-9]{6})!is','', $tagname);
$tagname = preg_replace('!\^([A-Z0-9]{1})!is','', $tagname);
return $tagname;
}
if($row['user_category'] == "Moderator"){
$tagcolor = "^3"; // yellow
$moderator = true;
}
if(isset($moderator)){
$usertag = rmv_tagname($row['usertagname']);
$usertag = "$tagcolour $usertag";
echo $usertag;
}[/code:1]
is just somelike, if you have done that panel... then you can get this working
pd: this code is not tested! and ofc I dont know whats your source code and how you print them!