dreads
07-10-2009, 10:00 PM
How to add a post requirement to view a ShoutBox
This mod was actually designed for Inferno Shoutbox Series, yet you could use this for many of the other sb mods.
Original Article: http://www.g4hq.com/forum/showthread.php?t=19981
How to add a post requirement to a ShoutBox
by: h0ly
Skill: 2 out of 10
Mod: Inferno Shoutbox. (Popular shoutbox software)
Original Code for Shoutbox
<!--{%SHOUTBOX%}-->
Replace it with this one.
<if condition="$bbuserinfo[posts] < '10' AND THIS_SCRIPT == 'index'">You require 10 Posts to see the shoutbox.<else /><!--{%SHOUTBOX%}--></if>
If you do not want guests to see the "You require 10 posts.." than instead use this code
<if condition="$bbuserinfo[posts] < '10' AND THIS_SCRIPT == 'index' AND $bbuserinfo[userid]">You require 10 Posts to see the shoutbox.<else/><!--{%SHOUTBOX%}--></if>
Now how does it work?
Well, You are putting down a condition.
$bbuserinfo[posts] gets the number of posts the user has.
THIS_SCRIPT == 'index' - this means that it must be the index.
Support is offered on G4HQ Forums (http://www.g4hq.com/forum) as well as mod requests.
Thanks!
This mod was actually designed for Inferno Shoutbox Series, yet you could use this for many of the other sb mods.
Original Article: http://www.g4hq.com/forum/showthread.php?t=19981
How to add a post requirement to a ShoutBox
by: h0ly
Skill: 2 out of 10
Mod: Inferno Shoutbox. (Popular shoutbox software)
Original Code for Shoutbox
<!--{%SHOUTBOX%}-->
Replace it with this one.
<if condition="$bbuserinfo[posts] < '10' AND THIS_SCRIPT == 'index'">You require 10 Posts to see the shoutbox.<else /><!--{%SHOUTBOX%}--></if>
If you do not want guests to see the "You require 10 posts.." than instead use this code
<if condition="$bbuserinfo[posts] < '10' AND THIS_SCRIPT == 'index' AND $bbuserinfo[userid]">You require 10 Posts to see the shoutbox.<else/><!--{%SHOUTBOX%}--></if>
Now how does it work?
Well, You are putting down a condition.
$bbuserinfo[posts] gets the number of posts the user has.
THIS_SCRIPT == 'index' - this means that it must be the index.
Support is offered on G4HQ Forums (http://www.g4hq.com/forum) as well as mod requests.
Thanks!