• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!

[PHP] Character Signature - v4

PHP:
'backgrounds' => array ( 0 => 'images/signature/background.png' ),

Why it don't work?
The requested image...
Forum Link:

Direct Link:
localhost/signature.php?character=God Przemo&image=0
 
Ok :p it work but if I want change the image ID in Forum Link and this second, u know I cant!If i select it it always select all link!
 
Are you using Gesior? If so, add my modification (from the first post) to make it work with it. Then you will see a link to the image at everyones character page (when you search for them).
 
Version 3 has been released (includes 3 signature backgrounds)!!
 
Version 3 has been released (includes 3 signature backgrounds)!!

Hello, look this signature.

my.php


Any help ? What wrong ? Maybe signature is too small or text to big (Oo xD)
 
Find this row:
PHP:
$bolds = "Name: \nSex: \nLevel: \nProfession: \nResidence: \n" . ( $fetchRow['rank_id'] > 0 ? "Guild: \n" : NULL ) . ( $fetchRow['group_id'] > 1 ? "Position: \n" : NULL ) . "Last Login:";
and replace with:
PHP:
$bolds = "Name: \nSex: \nLevel: \nProfession: \nResidence: \n" . ( ( $fetchRow['rank_id'] > 0 and $fetchRow['group_id'] < 2 ) ? "Guild: \n" : NULL ) . ( $fetchRow['group_id'] > 1 ? "Position: \n" : NULL ) . "Last Login:";
 
Find this row:
PHP:
$bolds = "Name: \nSex: \nLevel: \nProfession: \nResidence: \n" . ( $fetchRow['rank_id'] > 0 ? "Guild: \n" : NULL ) . ( $fetchRow['group_id'] > 1 ? "Position: \n" : NULL ) . "Last Login:";
and replace with:
PHP:
$bolds = "Name: \nSex: \nLevel: \nProfession: \nResidence: \n" . ( ( $fetchRow['rank_id'] > 0 and $fetchRow['group_id'] < 2 ) ? "Guild: \n" : NULL ) . ( $fetchRow['group_id'] > 1 ? "Position: \n" : NULL ) . "Last Login:";

Ok very thanks for help : )
Next question how to add color font here ?
PHP:
$arrays['status']   = ( $fetchRow['online'] == 1 ? 'ONLINE' : 'offline' );
Example: ONLINE - green, offline - red
 
As far as I am concerned, I would have to make them into their own string then, I'll investigate the matter.
 
Hehe I highly appreciate the offer, however as I stated in an earlier post I am a very busy man. Thanks once again though.
 
As far as I am concerned, I would have to make them into their own string then, I'll investigate the matter.

Ok thanks for answer.
I see "bug" ?
If i change line, now don't show guild. Position is ok

This line:
PHP:
$bolds = "Name: \nSex: \nLevel: \nProfession: \nResidence: \n" . ( ( $fetchRow['rank_id'] > 0 and $fetchRow['group_id'] < 2 ) ? "Guild: \n" : NULL ) . ( $fetchRow['group_id'] > 1 ? "Position: \n" : NULL ) . "Last Login:";
 
Back
Top