View Single Post
  #1857  
Old 06-20-2003, 05:19 PM
Moreliator Moreliator is offline
 
Join Date: Feb 2003
Posts: 71
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Well, a guy from my boards named Kirby King and I worked out a new addon. This addon allows you to lock all users' RPG options in their USER CP when they reach a certain level. The following code locks the stats at level 5, but you can change this number to whatever you want. I would recommend giving the users at least a couple levels' time where they can test different characters. This addon stops a lot of the cheap strategies some users have, such as a user switching his element to be strong against the opponent just before he challenges.

************************************************** ******
// Lock RPG Options at a Specified Level
// Edits: member.php and an optional "modifyprofile" template edit
// By Moreliator
************************************************** ******

in member.php find
Code:
$user = $DB_site->query_first("SELECT rpgclass, rpggender, rpgrace, alignment, element, inbattle FROM user WHERE userid='$bbuserinfo[userid]'");
$classarrays = "var gd0 = new Array('Unknown','0');\n";

if (!ismoderator()) {
  $specclasses = "WHERE visible=1";
}
and REPLACE with
Code:
$user = $DB_site->query_first("SELECT rpgclass, rpggender, rpgrace, rpgtype, alignment, element, inbattle FROM user WHERE userid='$bbuserinfo[userid]'");
$classarrays = "var gd0 = new Array('Unknown','0');\n";
$userstats = $DB_site->query_first("SELECT hp, maxhp, element, ma, maxma, pp, maxpp, ap, posts, xp FROM user WHERE userid='$bbuserinfo[userid]'");
$battleopt = $DB_site->query_first("SELECT * FROM battle_options");
$level = getlevel($userstats[xp], $battleopt[exprate], 1);
$warning = "you may not change your RPG information once you reach level 5";
$showlevel = floor($level + 1);

if (!ismoderator()) {
  $specclasses = "WHERE visible=1";
}

//################## Locked Stats Addon by Moreliator and Kirby King at smashboards.com ##################
if ($level > 4) {
  $alignmentoptions = "<option value=\"al$user[alignment]\" DISABLED>Your Alignment is locked (Level 5+)</option>";
  $classoptions = "<option value=\"$user[rpgclass]\" DISABLED>Your Class is locked (Level 5+)</option>";
  $raceoptions = "<option value=\"$user[rpgrace]\" DISABLED>Your Race is locked (Level 5+)</option>";
  $elementoptions = "<option value=\"$user[element]\" DISABLED>Your Element is locked (Level 5+)</option>";
  $genderoptions = "<option value=\"gd$user[rpggender]\" DISABLED>Your Gender is locked (Level 5+)</option>";
  $rpgtypename = "Predetermined";
  $rpgtypeid = $user[rpgtype];

} ELSE {
next (near the end of the rpg code section in member.php) find
Code:
$rpgtypeid = $user[rpgtype];
}
and REPLACE with
Code:
$rpgtypeid = $user[rpgtype];
}
}
Now, if you want to edit your template to let users know why their RPG options are locked, continue to follow the instructions for the modifyprofile template edit. If you have edited your modifyprofile template before, it may look different than what you find below. Finally, ff you do not wish to edit your template, you are done

in the MODIFYPROFILE template, find
Code:
$customfields
and AFTER it add
Code:
<tr>
<td bgcolor="#1D6AA0" colspan="2">
<normalfont color="#EEEEFF" class="thtcolor"><b>RPG Options -</normalfont></b>
<i><smallfont color="#EEEEFF" class="thtcolor"> $warning</smallfont></i>
<normalfont color="#EEEEFF" class="thtcolor"><b> </i><br><small>Current Level: $showlevel</small></b></normalfont>
</td>
</tr>
Enjoy! I'm going on vacation tomorrow, and won't be back until July 1. Don't do too much while I'm gone :P
Reply With Quote
 
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.01141 seconds
  • Memory Usage 1,784KB
  • 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
  • (6)bbcode_code
  • (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