############################################################## 
## MOD Title: Users Reputations System v.1.0.0 Templates Only - EM Friendly - subSilver
## MOD Author: antongranik < anton@granik.com > (Anton Granik) http://granik.com 
## MOD Description: Allows users to give reputation points to each others, earn it by posts and by "living" on forum, see the history of givings. Admin can edit users' reputations in admin cp. The whole system can be a text or a graphic version (5 different medals) and simple or advanced version (with choosing of how much reputation to give). You can get help on the system in the guide/ folder.
## MOD Version: 1.0.0 
## 
## Installation Level: (Intermediate) 
## Installation Time: 30 Minutes 
## Files To Edit (3):
##		templates/subSilver/profile_view_body.tpl
##		templates/subSilver/viewtopic_body.tpl
##		templates/subSilver/admin/user_edit_body.tpl
##		
## Included Files (2):
##		templates/subSilver/reputation.tpl
##		templates/subSilver/admin/reputation_config_body.tpl
##		
## License: http://opensource.org/licenses/gpl-license.php GNU General Public License v2 
############################################################## 
## For security purposes, please check: http://www.phpbb.com/mods/ 
## for the latest version of this MOD. Although MODs are checked 
## before being allowed in the MODs Database there is no guarantee 
## that there are no security problems within the MOD. No support 
## will be given for MODs not found within the MODs Database which 
## can be found at http://www.phpbb.com/mods/ 
############################################################## 
## Author Notes: 
##		1. For the latest release always go to http://granik.com/forum/viewtopic.php?t=16
## 		2. Official support forum is http://granik.com/forum/viewforum.php?f=3 If you download this mod from other sides then the mentioned sites above, it might cause malicious code to enter into your phpBB Forum.
##		3. Russian translation is included in folder lang_russian/
##		4. In folder different medals/buckets/ there are different medals. The medals are buckets with paint. :) Just copy these files to your forum_root_directory/images/
##		5. Special thanks to my wife and daughter for leaving me untouched while writing this mod :) , rockboyteek, Raul Duke, cherokee red, Patrick Simmons, aboyd, Infamy and all those I have forgotten for testing and helping...
##		6. Tested on phpbb 2.0.19, 2.0.20.
############################################################## 
## MOD History: 
## 
##   2006-04-22, release version 1.0.0:
##		1) Changed page_constant to the proper one (officially reserved 5 constants).
##		2) Wrote the guide (look in folder guide/).
##		3) Fixed the bug with wrong points to subtract from your points when you give (thanks to aboyd).
##		4) Fixed the collisions with some mods (viewtopic and viewprofile didn't show up) (thanks to Infamy).
##		5) Fixed the bug in database ('user_reputation' field has to be float, not decimal) (thanks to Infamy).
##		
##   2006-03-13, Version RC2 (0.0.2):
##		1) The stats in viewtopic are made only visible to admins/mods (configurable in admin cp) (idea: cherokee red)
##		2) Ability to set the limit of the amount of reputation points one can give out to a user (configurable in admin cp) (idea: Raul Duke)
##		3) Changed multiplications constants from 1-5 to 1.0-1.4 (to level a bit the givings)
##		4) The user gets a private message when he receives new reputation points (configurable in admin cp)
##		5) The admin can now see and edit users' reputations in admin cp -> user admin -> management 
##		6) The ability to turn on the simple version of reputation givings: set default amount in admin cp and users won't think how much to give (idea: Patrick Simmons)
##		7) Fixed the bugs with postings by a new user (bug found: Raul Duke) and wrong givings' stats of a user (bug found: rockboyteek)
##		8) Now the reputations are decreased when a moderator removes the topics through ModCP.
##
##   2006-02-16, Version RC1 (0.0.1)
## 
############################################################## 
## Before Adding This MOD To Your Forum, You Should Back Up All Files Related To This MOD 
############################################################## 
# 
#-----[ COPY ]------------------------------------------ 
# 
copy templates/subSilver/*.* to templates/subSilver/*.*
copy templates/subSilver/admin/*.* to templates/subSilver/admin/*.*
#
#-----[ OPEN ]------------------------------------------ 
# 
templates/subSilver/profile_view_body.tpl

# 
#-----[ FIND ]------------------------------------------ 
#
{INTERESTS}
# 
#-----[ FIND ]------------------------------------------ 
#
</tr>
# 
#-----[ AFTER, ADD ]------------------------------------------ 
# 
		<tr> 
		  <td valign="top" align="right" nowrap="nowrap"><span class="gen">{L_REPUTATION}:</span></td>
		  <td> <span class="gen">{REPUTATION}</span></td>
		</tr>

# 
#-----[ OPEN ]------------------------------------------ 
# 
templates/subSilver/viewtopic_body.tpl
# 
#-----[ FIND ]------------------------------------------ 
#
{postrow.POSTER_FROM}
# 
#-----[ IN-LINE FIND ]------------------------------------------ 
#
{postrow.POSTER_FROM}
# 
#-----[ IN-LINE AFTER, ADD ]------------------------------------------ 
#
<br />{postrow.REPUTATION}
# 
#-----[ OPEN ]------------------------------------------ 
# 
templates/subSilver/admin/user_edit_body.tpl
# 
#-----[ FIND ]------------------------------------------ 
#
<tr> 
{L_ICQ_NUMBER}
# 
#-----[ BEFORE, ADD ]------------------------------------------ 
#
	<tr> 
	  <td class="row1"><span class="gen">{L_REPUTATION}</span></td>
	  <td class="row2"> 
		<input class="post" type="text" name="reputation" size="10" maxlength="15" value="{REPUTATION}" />
	  </td>
	</tr>
# 
#-----[ SAVE/CLOSE ALL FILES ]------------------------------------------ 
#
# EoM