PDA

View Full Version : Easy Karma mod


Lea Verou
11 Oct 2005, 02:10
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
11 Oct 2005, 02:21
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
11 Oct 2005, 02:33
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
11 Oct 2005, 17:36
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
11 Oct 2005, 17:53
Can you do AND/OR?

Zachery
12 Oct 2005, 17:26
Can you do AND/OR?

Yes.