Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Full Releases

Reply
 
Thread Tools
Pip System Details »»
Pip System
Version: 1.00, by mx3 mx3 is offline
Developer Last Online: Apr 2012 Show Printable Version Email this Page

Version: 2.3.x Rating:
Released: 07-27-2003 Last Update: Never Installs: 5
 
No support by the author.

Pip System Hack
By mx3/Hyper22shadow

What this does is display an image a certain amount of times based on post count in the postbit.

Demo: http://www.ugfederation.com/forums (check any thread)
Screenshot: https://vborg.vbsupport.ru/attachmen...&postid=421155
Contact: Hyper22Shadow@cableone.net for email, or you can contact me via AIM. My AIM name is Hyper22Shadow2

I just made this today, it appears to be working fine for me...Any bugs just post them here and i'll try to help as best i can.
Enjoy!

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #32  
Old 07-28-2003, 07:00 AM
mx3's Avatar
mx3 mx3 is offline
 
Join Date: Nov 2002
Location: prescott valley, az
Posts: 278
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

It isn't? How many posts does the user have?
Reply With Quote
  #33  
Old 07-28-2003, 07:02 AM
Hostc
Guest
 
Posts: n/a
Default

Posts: 65535

Reply With Quote
  #34  
Old 07-28-2003, 07:04 AM
mx3's Avatar
mx3 mx3 is offline
 
Join Date: Nov 2002
Location: prescott valley, az
Posts: 278
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

ok...
find:
PHP Code:
} elseif($post[posts] >=' 5501' AND $post[posts] <= '10000') {
$pipcount=15;
$showpips="<img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip>"
add under:
PHP Code:
} elseif($post[posts] > '10000') {
$pipcount=16;
$showpips="<img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip>"
Tell me if that works...



And i don't really think there are many boards out there with members that have post counts that high
Reply With Quote
  #35  
Old 07-28-2003, 07:19 AM
Hostc
Guest
 
Posts: n/a
Default

I know, but if a user had more posts then whats set in the functions.php it wouldn't show the image
Reply With Quote
  #36  
Old 07-28-2003, 07:22 AM
Hostc
Guest
 
Posts: n/a
Default

You mean


Find:

PHP Code:
} elseif($post[posts] >=' 5501' AND $post[posts] <= '5500') {
$pipcount=15;
$showpips="<img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip><img src=$pip>"
?
Reply With Quote
  #37  
Old 07-28-2003, 07:29 AM
Hostc
Guest
 
Posts: n/a
Default

Yep that works

P.S: Don't forget to update the zip.
Reply With Quote
  #38  
Old 07-28-2003, 07:48 AM
assassingod's Avatar
assassingod assassingod is offline
 
Join Date: Jul 2002
Posts: 3,337
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Today at 07:42 AM Hostc said this in Post #3
Isn't that what the "Stars" in the image folder are for?
Technically, no, but there have been hacks out that are similar to this that uses stars. Also, vBulletinTemplates.com had a modification to use stars as well.
Reply With Quote
  #39  
Old 07-28-2003, 07:25 PM
minder minder is offline
 
Join Date: May 2003
Posts: 22
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

another way to do this without a hack is the way i have made the rank stars on my forum.....


in the admin cp

When defining the ranks, simply ad a <br>followed by an img tag for the appropriate star image. For example:
Starting at 0 posts:
Forum Newbie<br><img src="images/stars/1star.gif">
Starting at 51 posts:
Forum Member<br><img src="images/stars/2star.gif">

You would then make appropriate images and place them in forums/images/stars.

regards
rob
:smoke:
my forum
Reply With Quote
  #40  
Old 07-28-2003, 07:33 PM
Oblivion Knight's Avatar
Oblivion Knight Oblivion Knight is offline
 
Join Date: May 2002
Location: Sheffield, UK
Posts: 1,757
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Today at 09:25 PM minder said this in Post #38
another way to do this without a hack is the way i have made the rank stars on my forum.....


in the admin cp

When defining the ranks, simply ad a <br>followed by an img tag for the appropriate star image. For example:
Starting at 0 posts:
Forum Newbie<br><img src="images/stars/1star.gif">
Starting at 51 posts:
Forum Member<br><img src="images/stars/2star.gif">

You would then make appropriate images and place them in forums/images/stars.

regards
rob
:smoke:
my forum
You can only have so many stars doing it this way since there is a limit to how many characters you can enter in the rank field.. Though of course this can be fixed with a small MySQL database query..
Reply With Quote
  #41  
Old 07-28-2003, 07:38 PM
minder minder is offline
 
Join Date: May 2003
Posts: 22
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Today at 02:03 AM Oblivion Knight said this in Post #39
You can only have so many stars doing it this way since there is a limit to how many characters you can enter in the rank field.. Though of course this can be fixed with a small MySQL database query..
i dont see what u mean?
as you are linking to an image file and that image could have say 10 or even 20 stars

maybe im wrong as im new to vb

regards
rob
:smoke:
Reply With Quote
Reply

Thread Tools

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 06:48 AM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.07640 seconds
  • Memory Usage 2,300KB
  • Queries Executed 27 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (3)bbcode_php
  • (3)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (7)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.php 

Hooks Called:
  • init_startup
  • init_startup_session_setup_start
  • init_startup_session_setup_complete
  • cache_permissions
  • fetch_postinfo_query
  • fetch_postinfo
  • fetch_threadinfo_query
  • fetch_threadinfo
  • fetch_foruminfo
  • style_fetch
  • cache_templates
  • global_start
  • parse_templates
  • global_setup_complete
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete