Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 3.5 > vBulletin 3.5 Add-ons
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Inferno Warning System v1.3 Details »»
Inferno Warning System v1.3
Version: 1.3, by Zero Tolerance Zero Tolerance is offline
Developer Last Online: Nov 2023 Show Printable Version Email this Page

Version: 3.5.2 Rating:
Released: 08-04-2005 Last Update: 01-07-2006 Installs: 564
DB Changes Uses Plugins Template Edits
Additional Files  
No support by the author.

Well this was created purely for my own self and staff needs, but i'm sure you guys and gals will need a warning system to keep control over any member that doesn't wish to follow your rules.

The previews pretty much tell you all the features available, one that isn't shown is that the graphical representation of warnings will be displayed in a members profile, so that you may warn members via their profile or post(s).

v1.1 Updates:
- You can now enter a "Reason To Show User" input, this message is shown for users who are banned.
- Minor gramatical error in the ACP options.

v1.2 Updates:
- Missing template added (minor)
- WOL Fixed (minor)
- Unable to warn user via profile more than once if warn duplcation was not allowed (high)
- Ability to remove warnings
- ACP option to allow/disallow staff to remove warnings
- Warn log stretched page if it was large

1.3 Updates:
- Bug Fix: Warning points to be given were not consistant with maximum points allowed (the drop down menu went from 0 - 10 no matter what)
- Bug Fix: Those who cannot recieve PMs (either via turning it off themselves or due to other permissions) resulted in an error when you tried to warn them, this no longer happens but the PM will not send.
- Added new flexible warning expirations 'Hour' (Allows you to make the warnings expire in hours aswell as days/months)
- Added extensive flexible ban times (Now allowed to ban a user for x hours/days/months)
- Added post modifier notice (Allows the staff member to automatically add a notice to the top of the users post, allowing others to see that the post was warned)

Enjoy

- Zero Tolerance

Show Your Support

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

Comments
  #182  
Old 10-19-2005, 04:27 PM
Andy R's Avatar
Andy R Andy R is offline
 
Join Date: Feb 2002
Location: Traveling...
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Can you provide any insight on what this conditional should look like? i.e. how to write it (I know we will have to wrap it around the current template edits on the postbit and memberprofile) but don't know how to write the conditional statement to look at the warning level value.
Quote:
Originally Posted by eoc_Jason
Call me crazy, but couldn't you just use a template conditional so that if their warning level is zero not to show the image?
Reply With Quote
  #183  
Old 10-19-2005, 05:37 PM
Mastar's Avatar
Mastar Mastar is offline
 
Join Date: Sep 2005
Posts: 680
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Flawless installation
Reply With Quote
  #184  
Old 10-20-2005, 07:51 PM
eoc_Jason's Avatar
eoc_Jason eoc_Jason is offline
 
Join Date: Dec 2001
Location: Houston, TX
Posts: 493
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Andy R
Can you provide any insight on what this conditional should look like? i.e. how to write it (I know we will have to wrap it around the current template edits on the postbit and memberprofile) but don't know how to write the conditional statement to look at the warning level value.
Modify your Warn Display [Post Bit] hook plugin, and replace with the following code:

PHP Code:
global $vbulletin;

if (
$post['postid'] && (can_moderate($forum['forumid']) || ($vbulletin->userinfo['userid'] == $post['userid'] && $vbulletin->options['warn_allow_view'] && $post['inferno_warn_level'])))
{
    require_once(
DIR '/includes/functions_warning.php');
    
$show['warning'] = true;
    
$post['warning'] = construct_warning_display($postcan_moderate($forum['forumid']));

Basically the only addition is the && $post['inferno_warn_level'] check. So all your moderators and such will still see them for everyone.
Reply With Quote
  #185  
Old 10-21-2005, 05:57 AM
Keyser S?ze's Avatar
Keyser S?ze Keyser S?ze is offline
 
Join Date: Apr 2002
Location: USA
Posts: 690
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by ozmazdaclub
in the forum control panel under vb options there should be a warning section... you can untick to show to non staff groups...i beleive this was mentioned a few times already..
unless i am missing something, i do not see that, to allow non staff to see everyone elses warning

i see this

Allow non-staff members to view their own warning level and logs.

but all that means, is i myself can see my own warning even tho i am not staff

i also see "protected usergroups", but that again is not the same thing

is there another options section besides the one?
Reply With Quote
  #186  
Old 10-21-2005, 12:35 PM
Andy R's Avatar
Andy R Andy R is offline
 
Join Date: Feb 2002
Location: Traveling...
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thanks for helping with this Jason but that code is still showing a regular user with no warning the warning meter...
Reply With Quote
  #187  
Old 10-21-2005, 11:18 PM
Keyser S?ze's Avatar
Keyser S?ze Keyser S?ze is offline
 
Join Date: Apr 2002
Location: USA
Posts: 690
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

i would also like it how andy asks for it, i mean why have it show up if they have no warning, seems odd

also, i prefer for everyone to see everyone elses warning, or be able to set it urself as to what usergroup can see warning level, and reasons

i mean, normal members dont need to see reasons, but why not level? shame ppl into doing the right thing ;D

------------------

also would be great if the default msg in the PM being sent to users was "Rules Violation" which if u clear it out u can change it to whatever, but to have it there, i get sick of typing it ;p
Reply With Quote
  #188  
Old 10-23-2005, 08:59 PM
dethfire dethfire is offline
 
Join Date: Feb 2003
Posts: 441
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

We can no longer view a member's warning history to be able to see what specific warnings the member has received for what particular posts.

Also I wish there were a global record of everyone who has been warned.
Reply With Quote
  #189  
Old 10-24-2005, 02:37 AM
Holidazed's Avatar
Holidazed Holidazed is offline
 
Join Date: May 2002
Location: Van Nuys, CA
Posts: 713
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Zero Tolerance
SMods/Admins can warn via profile, and mods of a forum can warn people in those forums (if they have made posts).
Is there a way for me to specify who can warn? I have specific usergroups for my enforcers. I need them to be able to warn too.

In addition, I looked at a profile and posts and could not find any way to warn somebody. How does this work?

I saw references in the post and in the profile shat showed the current warning level, but no option add/edit or remove a warning.
Reply With Quote
  #190  
Old 10-25-2005, 03:44 AM
Holidazed's Avatar
Holidazed Holidazed is offline
 
Join Date: May 2002
Location: Van Nuys, CA
Posts: 713
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Is there any support for this? Does this mod work? I am having trouble with it and no answers?

Help!!
Reply With Quote
  #191  
Old 10-25-2005, 05:07 AM
Keyser S?ze's Avatar
Keyser S?ze Keyser S?ze is offline
 
Join Date: Apr 2002
Location: USA
Posts: 690
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by bitg
1 -Is there a way for me to specify who can warn? I have specific usergroups for my enforcers. I need them to be able to warn too.

2 -In addition, I looked at a profile and posts and could not find any way to warn somebody. How does this work?

3 -I saw references in the post and in the profile shat showed the current warning level, but no option add/edit or remove a warning.
1 -no as of v1.2 only admins, smods, and the mod of that forum, can warn ppl

2 -the little thing that says warning, and then the images, click on the plus or minus images, and ul get to the warning screen

link will be something simiar to this forums/warn.php?do=warn&data=plus;post;153;430274

what i said in 2, to add, to delete click on the number in the post, like

Warn: (0%)

you would click the 0
Reply With Quote
  #192  
Old 10-25-2005, 12:37 PM
Holidazed's Avatar
Holidazed Holidazed is offline
 
Join Date: May 2002
Location: Van Nuys, CA
Posts: 713
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Thank you very much.
Reply With Quote
  #193  
Old 10-28-2005, 08:11 AM
pipin's Avatar
pipin pipin is offline
 
Join Date: Jan 2005
Posts: 164
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

if the coder will be back sometime.

Improvement suggestions:

- PMs should be saved in the warners pm folder

- 2 banned usergroups should be supported. one for temporary bans and one for everlasting bans
Reply With Quote
  #194  
Old 10-28-2005, 09:45 PM
redlabour's Avatar
redlabour redlabour is offline
 
Join Date: Mar 2004
Location: Wuppertal, NRW, Germany
Posts: 1,541
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Hi,

Zero Tolerance please check your PM?s. You will see then several Request from the official german vBulletin Hackcommunity to translate this Hack in our german Language.

Can you please give us your ok officialy here ?

Thx.....

P.S: It is enough for us if we are allowed to post the german Translation here and give german Support at us.

http://www.vbhacks-germany.com

BTW - yes this is the "official" German Hack Community by vbulletin-germany.com.
Reply With Quote
  #195  
Old 10-29-2005, 08:50 PM
Andy R's Avatar
Andy R Andy R is offline
 
Join Date: Feb 2002
Location: Traveling...
Posts: 93
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Our community wants to setup this script in a pretty simple format where each warning is worth 1 point and they are banned after the 5th warning for 180 days. Is there a way to set this up so that some of the values are placed in hidden fields for mods so that when warnings are given no values are edited in a manner inconsitent with our policies...

Attached is what I want to accomplish. Can anyone point me in the right direction as far as using conditionals to accomplish this. Also, I think these options would make a great addition to an already awesome script (recommendation for future feature).
Reply With Quote
  #196  
Old 10-29-2005, 11:54 PM
MGM MGM is offline
 
Join Date: Jan 2003
Location: Michigan
Posts: 245
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by Andy R
Our community wants to setup this script in a pretty simple format where each warning is worth 1 point and they are banned after the 5th warning for 180 days. Is there a way to set this up so that some of the values are placed in hidden fields for mods so that when warnings are given no values are edited in a manner inconsitent with our policies...

Attached is what I want to accomplish. Can anyone point me in the right direction as far as using conditionals to accomplish this. Also, I think these options would make a great addition to an already awesome script (recommendation for future feature).
Go to your vBulletin Options -> Inferno Warning Options -> Max Warning Level -> Change this value to 1

Edit the template warn_user and remove everything. Use the text file I uploaded below and paste it into warn_user. That should do what you're asking

MGM out
Reply With Quote
Reply


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 07:32 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.04981 seconds
  • Memory Usage 2,379KB
  • Queries Executed 30 (?)
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
  • (1)bbcode_php
  • (6)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
  • (4)pagenav_pagelink
  • (2)pagenav_pagelinkrel
  • (16)post_thanks_box
  • (16)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (16)post_thanks_postbit_info
  • (15)postbit
  • (16)postbit_onlinestatus
  • (16)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_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