Excessive Plus v1.04-beta5

90 replies [Last post]
ALPHA WOLF KODI
Offline
Joined: Jun 2009
Posts:
Thanks

Okay I understand now thanks! Winking

cml
Forum moderator Rank moderator LIVING LEGEND
camel-xp's picture
Offline
Joined: Mar 2006
Posts:
PL Poland
Excessive Plus v1.04-beta5

Thx Easy for updated font.php :thumbright:
Waiting for instructions to webspider, how to display teams on 1.04 servers correctly with flags Happy

btw I think that flags on spider should display Real Countries not fake flags.

cml
Forum moderator Rank moderator LIVING LEGEND
camel-xp's picture
Offline
Joined: Mar 2006
Posts:
PL Poland
Excessive Plus v1.04-beta5
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 flags Happy

btw 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 Happy

@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 Happy

thx

FEST
Offline
Joined: Sep 2003
Posts:
Excessive Plus v1.04-beta5
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 flags Happy

btw 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 Happy

@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 Happy

thx

just do something like....

function removechars(){
}

then

$tagname = removechars($row['user']);

if($user == "mod"){
$color = "^3";
}

echo "$color$tagname";

or some like! Big grin

Cyaz

FEST
Offline
Joined: Sep 2003
Posts:
Excessive Plus v1.04-beta5

removecolor()

sry Big grin not chars

outofhere!
hook's picture
Offline
Joined: Mar 2008
Posts:
Excessive Plus v1.04-beta5

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 Big grin

Fragmovies and more Arrow Click ME!

AsphyxEvents Website Arrow Click ME!

cml
Forum moderator Rank moderator LIVING LEGEND
camel-xp's picture
Offline
Joined: Mar 2006
Posts:
PL Poland
Excessive Plus v1.04-beta5
FEST wrote:

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 flags Happy

btw 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 Happy

@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 Happy

thx

just do something like....

function removechars(){
}

then

$tagname = removechars($row['user']);

if($user == "mod"){
$color = "^3";
}

echo "$color$tagname";

or some like! Big grin

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 Big grin

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 Big grin

FEST
Offline
Joined: Sep 2003
Posts:
Excessive Plus v1.04-beta5

try something like...

$tagname = preg_replace('!\^x([A-Z0-9]{6})!is','', $tagname);
$tagname = preg_replace('!\^([A-Z0-9]{1})!is','', $tagname);

cya!

cml
Forum moderator Rank moderator LIVING LEGEND
camel-xp's picture
Offline
Joined: Mar 2006
Posts:
PL Poland
Excessive Plus v1.04-beta5
FEST wrote:

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? Happy

FEST
Offline
Joined: Sep 2003
Posts:
Excessive Plus v1.04-beta5

[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 Big grin

pd: this code is not tested! and ofc I dont know whats your source code and how you print them!