Belohnungssystem

Du suchst einen bestimmten Mod, weißt aber nicht genau wo bzw. ob er überhaupt existiert? Wenn dir dieser Artikel nicht weiterhilft, kannst du hier den von dir gewünschten/gesuchten Mod beschreiben ...
Falls ein Mod-Autor eine der Anfragen hier aufnimmt um einen neuen Mod zu entwicklen, geht's in phpBB 2.0: Mods in Entwicklung weiter.
Forumsregeln
phpBB 2.0 hat das Ende seiner Lebenszeit überschritten
phpBB 2.0 wird nicht mehr aktiv unterstützt. Insbesondere werden - auch bei Sicherheitslücken - keine Patches mehr bereitgestellt. Der Einsatz von phpBB 2.0 erfolgt daher auf eigene Gefahr. Wir empfehlen einen Umstieg auf phpBB 3.0, welches aktiv weiterentwickelt wird und für welches regelmäßig Updates zur Verfügung gestellt werden.
DaVee
Mitglied
Beiträge: 29
Registriert: 25.05.2004 21:57

Belohnungssystem

Beitrag von DaVee »

Ich bin ein großer Fan von Foren mit komlexen Belohnungs- und Rängesystemen.
Gibt es sowas wie einen Mod mit diesen Funktionen:

-Moderatoren können sowas wie Karmapunkte für besonders gelungene Beiträge geben
-Die Ränge werden nicht nach Beiträgen vergeben, sondern nach so was wie "Erfahrungspunkten", also braucht man ne bestimmte Zahl "Erfahrungspunkte" um aufzusteigen
-Man soll für lange Beiträge mehr Punkte bekommen, als für kurze, für umfragen und dafür, dass man ein neues Topic eröffnet

Hat irgendwie was von Rollenspiel, oder??

Wäre echt cool, wenn es sowas gibt. Wenn es das nicht geben sollte, dann nehmt diesen Beitrag vielleicht als Anregung, selbst mal so ein Projekt zu unternehmen.

DANKE IM VORRAUS!!!

mfg
DaVee
http://www.PcGamesForum.de.vu
Best GameZ Foruim ever!!
Christian Benz
Mitglied
Beiträge: 854
Registriert: 25.02.2004 00:41
Wohnort: Regen
Kontaktdaten:

Beitrag von Christian Benz »

Hi,

vielleicht ist das hier was für dich:
http://www.phpbbhacks.com/download/3936

Gruß,
Chris
MsNeukirch

Beitrag von MsNeukirch »

das ist ja so wie im wbb oder wie meinst du das?
MsNeukirch

Beitrag von MsNeukirch »

Code: Alles auswählen

##############################################################
## MOD Title: HP/MP/EXP (Poster Level) for PCP 2.0.x
## MOD PCP Integration Author: MrDSL < naug@thehottub.net > (MrDSL) http://www.thehottub.net
## MOD HP/MP/EXP Author: Jon Borzilleri <jon@asylumsw.com> - http://www.asylumsw.com
## MOD PCP Author: Ptirhiik < admin@rpgnet-fr.com > (Ptirhiik) http://rpgnet.clanmckeen.com/demo/
## Description: This mod adds an rpg-like level, hp, mp, and exp rating 
## to a user's profile, and under their name in their posts. 
##  Level: a user's level is based on how many posts the user has made. 
##   This should be able to scale up indefinitly. 
##  HP: represents how active the user is. max hp is based off level, 
##   current hp is based on how often the user posts. 
##  MP: represnts how quickly the user posts. Max mp is based on level, 
##   each post costs mp, and mp regenerates over time. 
##  Exp: a percentage showing how many more posts the user has to make 
##   to get to the next level. 
##
## MOD Version: 1.0.0
## MOD PCP Version: 2.0.x
## MOD phpBB Version: 2.1.10
##
## Installation Level: Easy
## Installation Time: 2 Minutes
## Files To Edit:
##		profilcp/def/def_usermaps.php
##
## Included Files:
##              images/level_mod/*.gif Files
##              def_userfuncs_level.php
##
## Author Notes: 
##
##	This is a integration of the HP/MP/EXP MOD by Jon Borzilleri <jon@asylumsw.com> - http://www.asylumsw.com
##	The code used in my function is mostly his and I only adapted it to work with the Profile Control Panel
##      so a big thanks to him. It seems there may be a issue with the MP always being at MAX so if anyone knows a 
##      fix please email me or pm me at my forums. This adds ZERO queries..
##      
##
##	Change log:
##		v 1.0.0 :
##			- First release
##
##############################################################
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
##############################################################
#
#-----[ COPY ]------------------------------------------------
#
copy images/level_mod/*.* to images/level_mod/*.*
copy def_userfuncs_level.php to profilcp/def/def_userfuncs_level.php

#
#-----[ OPEN ]------------------------------------------------
#
profilcp/def/def_usermaps.php

#
#-----[ FIND ]------------------------------------------------
# 
		),
	),

	'PCP.viewprofile.base.messangers' => array(
#
#-----[ BEFORE, ADD ]------------------------------------------
#
			'user_level_mod' => array(
				'class'        => 'generic',
				'type'         => 'VARCHAR',
				'dsp_func'     => 'pcp_output_level_mod',
				'txt'          => true,
				'style'        => '<div align="center" class="gensmall">%s</div></div></td>',
			),
#
#-----[ FIND ]------------------------------------------------
# You can put this anywhere above in the left topics panel that you want.
# Doing this will add a break and place it at the bottom.
#
		),
	),

	'PHPBB.viewtopic.left.ignore' => array(
#
#-----[ BEFORE, ADD ]-----------------------------------------
#
			'user_level_mod' => array(
				'class'        => 'generic',
				'type'         => 'VARCHAR',
				'dsp_func'     => 'pcp_output_level_mod',
				'txt'          => true,
				'style'        => '<br /><div align="center" class="gensmall">%s</div>',
			),
#
#-----[ SAVE/CLOSE ALL FILES ]--------------------------------
#
# EoM
#
# NOTE: Some of you may not like yours centered like I have mine and may like it to align left
#       then just change the center above to left.
#
ist ja der code.
aber ich hab da jetz ein prob.

Die Datei profilcp/def/def_usermaps.php
gibts nämlich garne
Christian Benz
Mitglied
Beiträge: 854
Registriert: 25.02.2004 00:41
Wohnort: Regen
Kontaktdaten:

Beitrag von Christian Benz »

Hallo,
ber ich hab da jetz ein prob.

Die Datei profilcp/def/def_usermaps.php
gibts nämlich garne
Diese Änderungen betrifft scheinbar nur den "Profile Control Panel"-Mod - falls der installiert ist. Guck mal hier die letzten beiden Beiträge an:
http://www.phpbb.de/viewtopic.php?t=197 ... c&start=10

Gruß,
Chris
DaVee
Mitglied
Beiträge: 29
Registriert: 25.05.2004 21:57

Beitrag von DaVee »

Danke, aber was bedeutet daas mit den MP?:
MP: represnts how quickly the user posts. Max mp is based on level,
## each post costs mp, and mp regenerates over time.
Heißt das, man kann erst nach einer bestimmten Zeit wieder etwas schreiben?
Gibt es trotzdem noch die Symbole für die Ränge und die Namen, die man vorher hatte?

das ist ja so wie im wbb oder wie meinst du das?
Was ist WBB?
http://www.PcGamesForum.de.vu
Best GameZ Foruim ever!!
MsNeukirch

Beitrag von MsNeukirch »

Die Ränge und die Bilder bleiben danach auch noch so.

WBB ist auch ein Forumtyp, aber das woltlab burning board ist kostenpflichtig.
DaVee
Mitglied
Beiträge: 29
Registriert: 25.05.2004 21:57

Beitrag von DaVee »

Ich hab gelesen das man den "Profile Control Panel Mod" braucht, um das zu installieren und das der nicht so toll sein soll, wie man meint.


Außerdem soll der bei einigen Boards Probleme machen.

Wie sieht das mit meinem aus:
PHPBB2 V. 2.0.14
Style fi_black
?????

http://www.pcgamesforum.de.vu

Hat jemand von euch den Mod schon ausprobiert??

mfg
DaVee
http://www.PcGamesForum.de.vu
Best GameZ Foruim ever!!
MsNeukirch

Beitrag von MsNeukirch »

also guck mal auf
http://blueskyge.bl.funpic.de/neu/phpBB2/

da hab ich das jetz eingebaut.

kannst dich ja mal neu reggen oder mit a:a anmelden.
MsNeukirch

Beitrag von MsNeukirch »

wer sich als a:a anmeldet hat auch adminrechte.
Antworten

Zurück zu „phpBB 2.0: Mod Suche/Anfragen“