View Single Post
  #7  
Old 01-25-2005, 05:02 AM
Dechevious Dechevious is offline
 
Join Date: Dec 2004
Posts: 21
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by T3MEDIA
Sorry I see I made a typo. I ment...If I am part of Usergroup B... 100 credits. I run out. Will I go back to Usergroup A who all have 0 credits.
or will I just be Usergroup B with no money.
With the hack as is, you will just be out of credits, and thats the end of it until you do whatever is required by the admin, to get more credits. Your access level will not change.

HOWEVER - Just for you my friend, I have created the following addon which which allow you to do just that!

Updated: 01-25-2005 - The following is an 'Add On' mod which will allow you to define a default usergroup that the user will be placed into, once he has used up all of his game plays. This will remove the user from his/her 'premium' access level and place them into a 'normal' access level that you define in your usergroup manager. Further, it will reset his credit level (IE: totalplays) back to 0. In doing so, it makes it much easier for that user to resubscribe, and regain instant access via subscription.

This 'Add-On' assumes you have already installed the hack, as is, above.

Run the following Query to set the field in your SQL DB - Dont forget to add your prefix if needed:

Code:
ALTER TABLE usergroup ADD COLUMN expiretousergroupid smallint(5) unsigned NOT NULL default '0';
IN FILE: admin/undergroup.php FIND:

Code:
'pmquota' => 0, 'playquota' => 0, 'pmsendmax' => 5, 'attachlimit' => 1000000,
REPLACE IT WITH THE FOLLOWING:

Code:
'pmquota' => 0, 'playquota' => 0, 'expiretousergroupid' => 0, 'pmsendmax' => 5, 'attachlimit' => 1000000,
FIND:

Code:
print_input_row("How many Games can they Play ? <dfn>You can restrict them to how many games they can play in the arcade</dfn>", 'usergroup[playquota]', $usergroup['playquota'], 1, 20);
DIRECTLY BELOW IT ADD:

Code:
print_chooser_row("What usergroup is assigned when all plays are used ? <dfn>This will become their new DEFAULT usergroup.</dfn>" , 'usergroup[expiretousergroupid]', 'usergroup', $usergroup['expiretousergroupid']);
	if (!empty($user['membergroupids']))
	{
		$usergroupids = $user['usergroupid'] . (!empty($user['membergroupids']) ? ',' . $user['membergroupids'] : '');
		print_chooser_row($vbphrase['display_usergroup'], 'user[displaygroupid]', 'usergroup', iif($user['displaygroupid'] == 0, -1, $user['displaygroupid']), $vbphrase['default'], 0, "WHERE usergroupid IN ($usergroupids)");
	}
	$tempgroup = $user['usergroupid'];
	$user['usergroupid'] = 0;
Save the File, Upload it and move onto the next step.

IN FILE: arcade.php FIND:

Code:
if ($bbuserinfo['totalplays'] > $permissions['playquota'] OR ($bbuserinfo['totalplays'] == $permissions['playquota']))
{
DIRECTLY BELOW THIS ADD:

Code:
$expirestogroup = $permissions['expiretousergroupid'];
$DB_site->query("UPDATE " . TABLE_PREFIX . "user SET usergroupid='$expirestogroup', totalplays=0 WHERE userid = $bbuserinfo[userid]");
Save the File, Upload it. All modifications are now complete!

Make sure you now also define the default access level the user will be placed in once his game plays are complete.

I updated the usergroupmanager.gif thumbnail as well, in this post.

Enjoy!
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01094 seconds
  • Memory Usage 1,785KB
  • Queries Executed 11 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD_SHOWPOST
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (7)bbcode_code
  • (1)bbcode_quote
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)post_thanks_box
  • (1)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (1)post_thanks_postbit_info
  • (1)postbit
  • (1)postbit_onlinestatus
  • (1)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • reputationlevel
  • showthread
Included Files:
  • ./showpost.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
  • showpost_start
  • bbcode_fetch_tags
  • bbcode_create
  • postbit_factory
  • showpost_post
  • 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
  • showpost_complete