Code: Alles auswählen
Information
Database type :: mysql
This mod only works with version 2.0.1 of phpBB.
Code: Alles auswählen
Information
Database type :: mysql
This mod only works with version 2.0.1 of phpBB.
Hack revision: 1.0.1
File Size: 14 Kb
phpBB Version: 2.0.0 - 2.0.3
Author: eXplosive
Downloads: 6106
Average Rating: 8.61 / 10
Added: 2002-05-26 16:56:24
Last Update: December 22, 2002
Code: Alles auswählen
if($userdata['user_points']<9) $bild=0;
else if($userdata['user_points']<29) $bild=1;
else if($userdata['user_points']<49) $bild=2;
else if($userdata['user_points']<69) $bild=3;
else if($userdata['user_points']<98) $bild=4;
else $bild=5;
$pointsgif='<img src="http://11f-online.gu2.info/artefakt/stern' . $bild . '.gif">';
Code: Alles auswählen
'POINTSGIF' => $pointsgif;
Code: Alles auswählen
<img src="http://11f-online.gu2.info/artefakt/stern0.gif">
da der wert in $userdata['user_points'] als sting abgespeichert ist muss er erst durch intval zur zahl gemacht werden...$points = intval($userdata['user_points']);
$bild = ( $points < 9 ) ? 0 : ( ( $points < 29 ) ? 1 : ( ( $points < 49 ) ? 2 : ( ( $points < 69 ) ? 3 : ( ( $points < 89 ) ? 4 : 5 ) ) ) );