hey blasT.,
hier mal eine kleine Anleitung für dich
1. Öffne die Datei
include/includes/func/user.php
und füge unter
function sendpm ($sid,$eid,$ti,$te,$status = 0) {
db_query("INSERT INTO `prefix_pm` (sid,eid,time,titel,txt,status) VALUES (".$sid.",".$eid.",'".time()."','".$ti."','".$te."',".$status.")");
}
das
function userbwpoints ($uid) {
$q = db_query("SELECT SUM(b.points) as `sum`
FROM prefix_bewertung a
INNER JOIN prefix_bewertung_types b ON a.tid = b.id
WHERE a.uid = $uid");
$r = db_fetch_assoc($q);
return($r['sum']);
}
darunter ein.
2. Öffne die Datei
include/contents/forum/show_posts.php und suche nach
if ( $row['posts'] != 0 ) {
$row['erst'] = '<a href="index.php?user-details-'.$row['erstid'].'"><b>'.$row['erst'].'</b></a>';
} elseif ( $row['erstid'] != 0 ) {
$row['rang'] = 'gelöschter User';
}
und füge das
if ( $row['posts'] != 0 AND userbwpoints($row['erstid']) > 0 ) {
$row['USERPOINTS'] = 'Punkte: '.userbwpoints($row['erstid']).'<br />';
} else {
$row['USERPOINTS'] = '';
}
darunter wieder ein.
3. Öffne die Datei
include/templates/forum/showpost.htm Suche nach
<td width="20%" valign="top"><a name="{id}"></a>{erst}<br /><font class="smalfont">{rang}{avatar}{posts}</font></td>
und ersetze ihn durch
<td width="20%" valign="top"><a name="{id}"></a>{erst} <br />{USERPOINTS}<font class="smalfont">{rang}{avatar}{posts}</font></td>
.
MfG OloX