vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 2.x Beta Releases (https://vborg.vbsupport.ru/forumdisplay.php?f=5)
-   -   RPG Integration Hack /w Battle (BETA) (https://vborg.vbsupport.ru/showthread.php?t=46417)

Darkwaltz4 06-20-2003 02:07 AM

that doesnt seem...too hard, lol :-p i unno, i might add that to what to do TOMARROW ^_^ :D

kaotic 06-20-2003 02:18 AM

Fine with me. And can I get some fries with that? :p Seriously, though. I'm loving the add-ons thus far. :D

Moreliator 06-20-2003 02:42 AM

Alright bitsy, the donation thing has been fixed.

My other problem is with user records. We have so many people on the boards since the RPG opened up that our database goes down for about 5 minutes at various times during the day. Now if the timing is just right, and a user is finishing the battle just as the databse is going down, their record can get messed up. For example, one guy had listed games played: 1 but then 8 wins.... it appears to happen only when the databse has been down, but I dunno if it can be fixed. Also, when I have to prune battles, the user's record does not update, because as soon as a user enters a battle, it adds one to their "battles fought" category. If I have to prune it before it is finished, the "battles fought" stays the same, making their records off.

-More

sonic3d 06-20-2003 02:42 PM

Quote:

Yesterday at 08:01 PM Darkwaltz4 said this in Post #1866

NEW ADD ON!!!!!
Darkwaltz4 Shield Add-On for the RPG IH by bitsys...
Features:

Shields' Buff will reflect battle damage
You can apply it to deflect physical, magical, or both, based on which code you edit....

(add no queries) 1 template edit, 6 file edits, 1 query

have fun ^_^

this doesn't always work. i have a shield, but i dont get the options but another member has gotten it and worked.

l8er
sonic

kaotic 06-20-2003 04:44 PM

Does anybody know how the anger system works?Whenever they get angry on my site, they pull off way too much damage. Is there any way that I could lower the attack increase some?

Moreliator 06-20-2003 05:19 PM

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

Darkwaltz4 06-20-2003 07:36 PM

Quote:

Yesterday at 10:42 PM Moreliator said this in Post #1875
And Darkwaltz, your addon for the popup notification isn't working.... I just tested it (and I made sure I had them enabled in profile) and I did not receive a popup.
-More

it wasnt an addon and i didnt test it :-p deleteprompt indeed runs whether or not the popup has been 'popped' yet :-p

Quote:

Today at 10:42 AM sonic3d said this in Post #1876
this doesn't always work. i have a shield, but i dont get the options but another member has gotten it and worked.

l8er
sonic

that sounds like something i did when i was testing summons on my board :-D ~check to make sure you updated the style template ur sitting on (also check if you meet item requirements...)


Quote:

Yesterday at 09:56 PM Me! said this in Post #1871
up their own rp character like normal but then click an option to just not accept battle challenges?
hehehe, i found something to do ^_^ yay! and, um, here it is...doesnt sound TOO bad, something the newbies could use so that the more seasoned members dont just immediately kill them (and the newbies are too stupid to reject a battle >.<) so this should shut them up ^_^ hehe :-p now to find something new to do.................


update: i think IM gunna set MYSELF to it, lol, i have no desire to battle....:-p also, you can set the 'default' to 1(on) 0 (off) based on what you would like the most. i set it to on default...

kaotic 06-20-2003 07:52 PM

@ Darkwaltz4: That attachment is the add-on for the option to not accept challenges? If so... excellent! :D Also, I noticed you updated your signature. The Monster Arena part caught my eye pretty quickly. How much do you think it will cost? PM me if you wish to. Later.

sonic3d 06-20-2003 07:54 PM

Quote:

Today at 03:36 PM Darkwaltz4 said this in Post #1879
that sounds like something i did when i was testing summons on my board :-D ~check to make sure you updated the style template ur sitting on (also check if you meet item requirements...)

both have the template edits and yeah the item requirements are right.

can some1 help me with the damage. my items hit way too much and the buff isn't a lot.

l8er
sonic

sonic3d 06-20-2003 10:20 PM

there stats are almost alike to the default ones.

l8er
sonic


All times are GMT. The time now is 01:09 AM.

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.03341 seconds
  • Memory Usage 1,759KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (6)bbcode_code_printable
  • (5)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (10)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete