djoprah2005 candidate dj |
15 May 2005 12:26 xxx.xxx.xxx.xxx = | [reply][?][+/-][ed]
|
I'm amish, bud
Sorry for sounding like a dumbass, but whenever i post it says under my name "DJ" and "Candidate"
now I know the word DJ is there because I put it there when I signed in, but how did the word candidate get there? |
djdmt moderator subscriber dj |
15 May 2005 12:29 xxx.xxx.xxx.xxx +++ | [reply][?][+/-][ed]
|
Re: I'm amish, bud
**********
According to http://junglescene.com/faq.php
* quickuserstatus() - this function sets the "status" of the user by looking
* at the admin and posts variables in the users table. you can change the
* status descriptors. if you want to change the levels, make the corresponding
* changes in setpostrank() and ispoweruser().
*/
######## v.1.0.0
function quickuserstatus($posts, $admin) {
global $errormessage;
if ($admin == 2) $status = "administrator";
else if ($admin == 1) $status = "moderator";
else if ($posts > 5000) $status = "power user";
else if ($posts > 2499) $status = "hardcore";
else if ($posts > 1499) $status = "internet junkie";
else if ($posts > 499) $status = "random title";
else if ($posts > 74) $status = "js regular";
else if ($posts > 19) $status = "js user";
else if ($posts > 2) $status = "candidate";
else if ($posts < 0) $status = "big jerk";
else $status = "new poster";
********** |