PDA

View Full Version : Modify the reputation mod!


CampinCarl
04-21-2008, 11:28 PM
This should be a relatively simple modification. I need it so instead of showing an image as reputation, it says Karma: "reputation description", and if the reputation description requires a reputation of negative, the rep description turns red, if it requires a reputation of zero, it turns black, and if it requires a rep of more then 1, it turns green. Also I need to change all "reputation" to "Karma"

thanks a bunch

Dismounted
04-22-2008, 07:28 AM
This can be done by changing the phrases. To change the images to text, you can look through the postbit template and change them.

CampinCarl
04-23-2008, 10:28 PM
ummm

how do I do that?

im not good with php :/

Dismounted
04-24-2008, 06:45 AM
Phrase Manager > Search in Phrases

CampinCarl
04-25-2008, 03:37 AM
whats the postbit template?

Dismounted
04-25-2008, 06:38 AM
Styles & Templates > Style Name > Edit Templates > postbit

CampinCarl
04-25-2008, 01:04 PM
Ah excellant! I now have it displaying almost what i want! All that I need to do now is make it so if you have negative karma, the text displayed is red, if you have posotive karma, the text is green, and if you have Zero, the text doesnt change :D

Dismounted
04-25-2008, 02:25 PM
You can use conditionals in templates like so:
<if condition="$foo == 0">
Value is zero
<else />
<if condition="$foo > 0">
Value is bigger than zero
<else />
Value is smaller than zero
</if>
</if>

CampinCarl
04-26-2008, 03:56 AM
would you mind writing exactly what I need to put in? im not so good with this lol

<if condition="$show['minimumreputation'] == 0">Karma: <b>$post[level]</b>
<else />
<if condition="$show['minimumreputation'] > 0">Karma: <font color="green"><b>$post[level]</b></font>
<else />Karma: <font color="red"><b>$post[level]</b></font>
</if>
</if>


wats wrong with that

Dismounted
04-26-2008, 04:56 AM
$show['minimumreputation'] is boolean value, not the actual reputation level.

CampinCarl
04-26-2008, 05:04 AM
can you make it work plz?

I just copied what it said in the postbit thing in the hope that it works, i dont actualy know wat to do

Wired1
04-26-2008, 06:03 AM
<if condition="$post[reputation] == 0">Karma: <b>$post[level]</b>
<else />
<if condition="$post[reputation] > 0">Karma: <font color="green"><b>$post[level]</b></font>
<else />Karma: <font color="red"><b>$post[level]</b></font>
</if>
</if>

Try that (AT YOUR OWN RISK).

CampinCarl
04-26-2008, 06:10 AM
wow! that actualy worked! thanks!!

Is it possible to make reputation only count as 1 point, not 6, so if i set normal karma to 10, it takes 10 +k's to get to it?

Eagle Eyes
06-20-2008, 07:28 AM
^ I am looking for the same thing. One rep counts as 1 addition/difference.