vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vB3 General Discussions (https://vborg.vbsupport.ru/forumdisplay.php?f=111)
-   -   Need a little help displaying rank image for admin only (https://vborg.vbsupport.ru/showthread.php?t=19686)

Castel 06-08-2001 07:00 AM

I want an extra rank image added for admins as part of the galaga shiled ranking hack. I thought it would be simple enough for my limited PHP knowledge but I got stuck anyway.

Here is what I have in showthread.php

PHP Code:

if ($bbuserinfo['usergroupid']==6) {
$rank "<img src=\"images/ranks/admin.gif\" border=0>";
} else {
$rank "";


It displays the extra image for everybody. I have tinkered with it for a while now and I either get no image or an image for everybody. What am I doing wrong here?

Thanks

Castel 06-08-2001 11:38 AM

Nevermind..finally figured it out :D

Prezident 06-08-2001 01:32 PM

I would like to be able to display an images for each different rank I have on my board.

Maybe a variation of what you did would allow me do to this. Are you willing to share your knowledge about this?

Castel 06-08-2001 05:55 PM

It sound like what you are looking to do is the Star Hack, just replace the star images with whatever images you like.

My users prefer the Galaga ranking system because the image ranking changes every 10 posts they make. They just love that stuff.

This hack is also a little easier to install I think. It only requires one change in showthread.php and no database changes. What I did is add a mod shield before the actual ranking shields.

change:

PHP Code:

$RankNum $userpostcount 10
$rank ""

in the Galaga hack (link above) to:

PHP Code:

$RankNum $post[posts] / 10
if ((
$post[usergroupid] ==5) || ($post[usergroupid] ==6) || ($post[usergroupid] ==7)) {
$rank "<img src=\"images/ranks/mod.gif\" border=0>";
} else {
$rank "";


This will give all admins, mods and supermods an extra shield.

Prezident 06-09-2001 02:59 AM

The star hack only lets you add multiples of 1 image.

I want to have a unique image for each different ranking on my board.

I was able to do this on phpBB.

Not that I am trying to compare the two of them, obviously VB is better, but I would still like to be able to do something like this.

kicks 06-09-2001 04:55 AM

Prez: I'm pretty sure you can do that with the star hack

I could be wrong, but in the admin cp you have to type in the image name and the number of posts required to meet that image name

Prezident 06-11-2001 06:19 PM

I tried installing the Stars hack, and it caused some kind of problem in my database, so I had to revert back, and have decided not to use the hack. I am pretty sure I followed the instructions to the letter, and don't have the knowledge to trouble shoot it when something like that doesn't work.

I am certainly no expert when it comes to this stuff, but it sounds like Castel's version could be adapted to what I want to do, but I don't know how to do it.

Maybe an additional custom template that could be called from the right point in showthread.php to get the images to display that I would like to add.

Currently I have 11 different user titles that I would like to have an additional graphic file associated with.

The difference in what he has implemented, and the way the user titles are obtained on my board is that he has it change on every 10 posts, and mine gets progressively harder to obtain a higher rank, so I don't think the division process would work for me.

Castel 06-11-2001 08:45 PM

I think this will do exactly what you are looking for. Save your original showthread.php because I am very new to PHP. But it seems to work fine on my test board.

In showthread.php find :

PHP Code:

$post[joindate]=vbdate($registereddateformat,$post[joindate]); 

Right above that add :

PHP Code:

$RankNum $post[posts];  
if (
$RankNum 1000) {
$rank "<img src=\"images/ranks/1000.gif\" border=0>";
}
elseif ((
$RankNum 500) && ($RankNum 999)) {
$rank "<img src=\"images/ranks/500.gif\" border=0>";
}
elseif ((
$RankNum 100) && ($RankNum 499)) {
$rank "<img src=\"images/ranks/100.gif\" border=0>";
}
elseif ((
$RankNum 50) && ($RankNum 99)) {
$rank "<img src=\"images/ranks/50.gif\" border=0>";
}
elseif ((
$RankNum 10) && ($RankNum 49)) {
$rank "<img src=\"images/ranks/10.gif\" border=0>";
}
elseif ((
$RankNum 5) && ($RankNum 9)) {
$rank "<img src=\"images/ranks/5.gif\" border=0>";
}
else {
$rank "<br>";


Upload the images in images/ranks/ of your forum directory and add $rank in the postbit template where you want the image to appear.

You mentioned you have 11 user titles so you will need to add more elseif routines and change the number of posts in this example to fit your forum title settings.

Prezident 06-11-2001 11:33 PM

OK, here is what I did so far, but I will add a couple questions afterwards.

PHP Code:

$RankNum $post[posts];  
if (
$RankNum 500) {
$rank "<img src=\"images/ranks/gen.gif\" border=0>";
}
elseif ((
$RankNum 400) && ($RankNum 499)) {
$rank "<img src=\"images/ranks/col.gif\" border=0>";
}
elseif ((
$RankNum 300) && ($RankNum 399)) {
$rank "<img src=\"images/ranks/ltcol.gif\" border=0>";
}
elseif ((
$RankNum 200) && ($RankNum 299)) {
$rank "<img src=\"images/ranks/major.gif\" border=0>";
}
elseif ((
$RankNum 150) && ($RankNum 199)) {
$rank "<img src=\"images/ranks/capt.gif\" border=0>";
}
elseif ((
$RankNum 100) && ($RankNum 149)) {
$rank "<img src=\"images/ranks/1stlt.gif\" border=0>";
}
elseif ((
$RankNum 75) && ($RankNum 99)) {
$rank "<img src=\"images/ranks/2ndlt.gif\" border=0>";
}
elseif ((
$RankNum 50) && ($RankNum 74)) {
$rank "<img src=\"images/ranks/sgt.gif\" border=0>";
}
elseif ((
$RankNum 25) && ($RankNum 49)) {
$rank "<img src=\"images/ranks/corporal.gif\" border=0>";
}
elseif ((
$RankNum 1) && ($RankNum 24)) {
$rank "<img src=\"images/ranks/private.gif\" border=0>";
}
else {
$rank "<br>";


I would like to be able to exclude myself from being assigned a graphic related to my rank based on the amount of posts I have.

Also, there might be the rare case that I would want to give someone a custom rank, and maybe have a custom graphic associated with that and over ride this mathematical part of it.

Is it possible to relate the graphics to the user title rather then how many posts they have?

Thank you so much for the help, you are awesome.

Ludikraut 06-12-2001 11:38 PM

Quote:

Originally posted by Castel
...My users prefer the Galaga ranking system because the image ranking changes every 10 posts they make. They just love that stuff...
Heh, us tekkenites are so vain :rolleyes:

l8r)

Ludikraut (aka SauerChoke)

Castel 06-13-2001 10:28 PM

Well you could start out the code like this

PHP Code:

$RankNum $post[posts]; 
if ((
$post[usergroupid] ==5) || ($post[usergroupid] ==8)) {
$rank "<br>";
} elseif (
$RankNum 500) {
$rank "<img src=\"images/ranks/gen.gif\" border=0>";



This would exclude the admin (you) from getting an image and also newly created usergroup that would have a group ID of 8. If you want to give a few people a special status you could move these people in the new user group and edit their profile title from the admin panel. From there you can include html in the title. For example you could put -- General<br><img src=images/ranks/general.gif> -- as the tile for that person. If you have more than one admin (and you want other admins to have the default image) you could change the code above from post[usergroupid] to post[userid] and add your specific ID number

I'm sure there is a better automated way of doing this but that is far beyond my limited PHP knowledge at this point.

Prezident 06-14-2001 02:25 AM

Well you just made my life amazingly simple, maybe without even knowing it.

I can just use the html code in the user title like you just showed me.

Code:

User Title: Corporal<br><img src=images/ranks/corporal.gif>
I added this code with the corresponding gif image to each of my user titles, and it works great. Just needed to update the user tables afterwards. Very easy.

Really no need to make any changes to showthread.php if I can just include html code in the user title text.

Thank you SOOOOO very much. That is exactly what I wanted to do.

I did not realize I could use html code in that area.

Castel 06-14-2001 07:09 AM

Well DOH, I should have thought about that in the first place. I even have one of my user titles like this (before they receive the first Galaga badge at 10 posts.

Oh well, at least I got a little beginner PHP practice out of it.

Prezident 06-14-2001 12:05 PM

It's cool man. I have to say I did gain a little better understanding of PHP in the process even though I didn't apply any of the code.

I was actually starting to understand how variables are assigned, and maybe even started to get a clue how some of the else/if statements work.

Thanks for your help man, I really do appreciate it.

I imagine that this kind of thing can be used more commonly that I had previously though.

justsomedude 10-24-2001 09:58 PM

hmmmm I too am trying to give my mods and admins immunity to the rankings, but i can't seem to get it to work. here's what i did:


In admin/functions.php found:
PHP Code:

$post[joindate]=vbdate($registereddateformat,$post[joindate]); 

and directly above that added:

PHP Code:

$RankNum $post[posts] / 10
$rank ""
while (
$RankNum 1) { 
if (
$RankNum 1000) { 
$rank $rank "<img src=\"images/ranks/1000.gif\" border=0>"
$RankNum -= 1000

elseif (
$RankNum 500) { 
$rank $rank "<img src=\"images/ranks/500.gif\" border=0>"
$RankNum -= 500

elseif (
$RankNum 100) { 
$rank $rank "<img src=\"images/ranks/100.gif\" border=0>"
$RankNum -= 100

elseif (
$RankNum 50) { 
$rank $rank ."<img src=\"images/ranks/50.gif\" border=0>"
$RankNum -= 50

elseif (
$RankNum 10) { 
$rank $rank ."<img src=\"images/ranks/10.gif\" border=0>"
$RankNum -= 10

elseif (
$RankNum 5) { 
$rank $rank ."<img src=\"images/ranks/5.gif\" border=0>"
$RankNum -= 5

else { 
$rank $rank ."<img src=\"images/ranks/1.gif\" border=0>"
$RankNum--; 


$rank $rank "<br>"

I then added:

PHP Code:

$RankNum $post[posts]; 
if ((
$post[usergroupid] ==5) || ($post[usergroupid] ==8)) {
$rank "<br>"

directly above

PHP Code:


$RankNum 
$post[posts] / 10
$rank ""
while (
$RankNum 1) { 
if (
$RankNum 1000) { 
$rank $rank "<img src=\"images/ranks/1000.gif\" border=0>"
$RankNum -= 1000

I tried modifying a couple of diferent ways, but still no go. anyone have any suggestions?

justsomedude 10-26-2001 12:57 AM

anyone??

Castel 10-27-2001 08:01 AM

You just placed your code in the wrong place. You need to reset rank to nothing after it's been created, so add the code at the end.

PHP Code:

if (($post[usergroupid] ==5) || ($post[usergroupid] ==8)) {
$rank "";


Or you could probably limit the rank to just the "Registered" group like this (replace XX with number fo your Registered group):

PHP Code:

if ($post[usergroupid] ==XX) {

--
Entire Original Hack Code--





All times are GMT. The time now is 04:46 PM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01408 seconds
  • Memory Usage 1,836KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)bbcode_code_printable
  • (13)bbcode_php_printable
  • (1)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (17)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.php
  • ./global.php
  • ./includes/init.php
  • ./includes/class_core.php
  • ./includes/config.php
  • ./includes/functions.php
  • ./includes/class_hook.php
  • ./includes/modsystem_functions.php
  • ./includes/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • printthread_start
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete