Log in

View Full Version : Easy Karma mod


Lea Verou
10-11-2005, 01:10 AM
It would be nice if somebody made a mod so that depending on the Karma it shows a different image and not many times the same one.

It doesn't look hard for somebody that has the knowledge...

Thanks in advance :)

I have a good idea of using it. :p

Zachery
10-11-2005, 01:21 AM
you could already do this with some simple if conditions.

<if condition="$post[reputation] > X">img code here</if>
<if condition="$post[reputation] > Y">img code here</if>
<if condition="$post[reputation] > Z">img code here</if>

Lea Verou
10-11-2005, 01:33 AM
you could already do this with some simple if conditions.

<if condition="$post[reputation] > X">img code here</if>
<if condition="$post[reputation] > Y">img code here</if>
<if condition="$post[reputation] > Z">img code here</if>

Wow I thought conditionals only accepted 0 or >0!!!
Thanks so much!!!

Zachery
10-11-2005, 04:36 PM
conditionals allow you to do some basic php functions, comparisons are one of them

you can do

=
==
===
!=
!==
<
>
>=
<=

as well as tons of other stuff.

Lea Verou
10-11-2005, 04:53 PM
Can you do AND/OR?

Zachery
10-12-2005, 04:26 PM
Can you do AND/OR?

Yes.