PDA

View Full Version : Change my post count to a word?


Chris M
07-04-2002, 02:20 PM
Hi...

At The Lyceum (http://www.thelyceum.org/), I have built up a bit of a reputation as a Spammer...

Previous versions of The Lyceum, i.e. The Phora, Freedom Forums & HellFireForums, have resulted in me amassing a large Post Count...

Id like to be able to change my Post Count to something like :

"The Spamlord" or something...

Is there a hack or modification that I could do to just my user? Without changing usergroups I mean...

My userid=1, obviously lol...

Thanks...

Satan

ULTIMATESSJ
07-04-2002, 02:45 PM
Originally posted by hellsatan
Hi...

At The Lyceum (http://www.thelyceum.org/), I have built up a bit of a reputation as a Spammer...

Previous versions of The Lyceum, i.e. The Phora, Freedom Forums & HellFireForums, have resulted in me amassing a large Post Count...

Id like to be able to change my Post Count to something like :

"The Spamlord" or something...

Is there a hack or modification that I could do to just my user? Without changing usergroups I mean...

My userid=1, obviously lol...

Thanks...

Satan

can't you do that thru the admin cp, just go to their profile, and change the post count to a word, dunno if it will work but it's worth a try

Brad
07-04-2002, 02:58 PM
https://vborg.vbsupport.ru/showthread.php?s=&threadid=40637 for the usergourp verson.


##Open admin/fuctions.php

##Find:


if ($post[aim]!="") {
eval("\$post[aimicon] = \"".gettemplate("aim")."\";");
} else {
$post[aim]="";
}


##Below add:


if($post[userid] == *) {
$post[posts] = The Spamlord;
}


change * to their user id

Chris M
07-04-2002, 02:59 PM
Thanks:)

Satan

Brad
07-04-2002, 03:10 PM
Originally posted by ULTIMATESSJ


can't you do that thru the admin cp, just go to their profile, and change the post count to a word, dunno if it will work but it's worth a try

no

Chris M
07-04-2002, 03:14 PM
Heh...

I knew you couldnt, else I wouldnt have asked:)

Satan

Chris M
07-04-2002, 03:20 PM
Parse error: parse error in /home2/thelyceu/public_html/forum/admin/functions.php on line 279

Fatal error: Call to undefined function: getuserinfo() in /home2/thelyceu/public_html/forum/admin/sessions.php on line 324

Doesnt work :(

Satan

Brad
07-04-2002, 03:37 PM
from my file.



if ($post[aim]!="") {
eval("\$post[aimicon] = \"".gettemplate("aim")."\";");
} else {
$post[aim]="";
}
if($post[userid] == 88) {
$post[posts] = Oo;
}



im sure you can figure it out.

Xenon
07-04-2002, 03:51 PM
Anime you always forgot the " around your strings!

Brad
07-05-2002, 02:31 AM
Originally posted by Xenon
Anime you always forgot the " around your strings!

:eek:, i knew i was doing something wrong ;), still learning php.

Chris M
07-05-2002, 07:45 AM
So would it be :

if($post[userid] == 1) {
$post[posts] = "The Spamlord";
}
?

Satan

Xenon
07-05-2002, 07:50 AM
correct

Chris M
07-05-2002, 09:12 AM
Coolies:)

Satan