The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
RPG Integration Hack /w Battle (BETA) Details »» | |||||||||||||||||||||||||
RPG Integration Hack BETA by Bitsys
(vBulletin versions 2.2.6?, 2.2.7, 2.2.8, 2.2.9, and 2.3.0) This hack combines several RPG hacks into one and adds a battle hack. The hacks included in this hack are:
In addition to re-releasing thse hacks, I have added features to all of them (or else there would be no point in re-releasing).
This means that the RPG hacks are database driven and have been partially integrated with the Itemshop. This was necessary in order to make a battle hack, which is also included. Since most people are familiar with the RPG and Itemshop hacks, I will give a brief description of the Battle hack. If you want more information about either of the other two hacks, then refer to their original posts or download the .zip file and read the "readme.txt". If you are a visual learner, then you can scroll down to the second post in this thread, which contains the pictures of all of these hacks. Battle Features:
Getting started with the battle hack:
Why is this a BETA hack? I have tested the installation of this hack on vBulletin versions 2.2.7, 2.2.8, 2.2.9, and 2.3.0. However, because of the scale of this hack, there is plenty of room for errors. Therefore I am making the following disclaimer while this hack is in the BETA stage: WARNINGS:
Miscellaneous: The beta of this hack is free. The full/final release will also be free. All installation instructions and credits are included in the attachment. If you find a bug or have problems, feel free to post them here and I will try to fix them. Please read the included readme file if you have questions. If you can't find the answer, then post your question here and I will answer it. All hacks included in this hack have been re-released with permission of their original creators. Screenshots are in the second post of this thread. Installation: Installation instructions are included in the .zip file. ACKK! I NEED HELP!!! If you are having trouble and need some help, please refer to the help documentation included in the .zip file. It is located in the "extra" directory. If you need help and you have already installed the hack, make sure you check the RPG Manual link in the admin cp. Also, make sure you read the FAQ included with the manual. MY THREADS STOPPED DISPLAYING CORRECTLY!!! See if you are experiencing one of the following symptoms:
If you are experiencing one or more of the above problems, then your showthread.php file was not edited correctly by the installer. This problem usually occurs on boards with other hacks installed that modify the queries in showthread.php. Please go to https://vborg.vbsupport.ru/showpost....postcount=2261 and follow the instructions there. Add-ons: The following add-ons are not included in the default installation. You must apply these add-ons after you have installed the hack successfully. Member profile add-on This add-on let's you display the user's RPG Stats in their member profile. See the .zip file for the add-on. It is located in the "Member Profile Add-on" directory. Auto-update stats after posting This add-on automatically updates the user's stats after they make a post, instead of having to click on the update stats button in the user cp. This add-on involves 2 file edits. The add-on is located at https://vborg.vbsupport.ru/showthrea...452#post356452 Donation Queue by Darkwaltz4 Moderate all Donations. See Who is Donating to Who. All Donations go through Admins or Mods. The add-on is located at https://vborg.vbsupport.ru/showthrea...652#post408652 Battle Background Midi System by Darkwaltz4 Full control over the music that plays during your battles! The add-on is located at https://vborg.vbsupport.ru/showthrea...530#post410530 Randomized First Turn Addon by Moreliator "The following code gives the challenger a 33% chance to start the battle and the challenged person a 66% chance. Works quite well. I also included instructions on how to display "Determining..." on the battle.php browse page, that way people won't decline a challenge if they see they aren't going first. ". The add-on is located at https://vborg.vbsupport.ru/showthrea...614#post410614 Lock RPG Options at a Specified Level Addon by Moreliator This addon allows you to lock all users' RPG options in their USER CP when they reach a certain level. This add-on is located at https://vborg.vbsupport.ru/showthrea...111#post411111 Personal Shop Items Have Battle Bonuses by Triade The original personal shop, allows to have an item the don't do nothing in battle. With this add-on, you can build items with bonus in battle (the bonus is in the attack now). This add-on is located at https://vborg.vbsupport.ru/showthrea...328#post426328 Challengable Option by Darkwaltz4 Allows users to set themselves against recieving battle challenges. This add-on can be found at https://vborg.vbsupport.ru/showthrea...143#post411143 Contact Info: Bitsys Email: bitsys AT mail DOT com PM me for a faster response. I prefer PMs. ~~~~~~~~~~~~ Update 09/04/03 @ 1:46pm v0.68c Battle debug messages were accidentally left on. Minor shield bug was fixed in battlefight.php (Thanks Telchar). Re-upload battleupdate.php and battlefight.php. The new .zip file is located at the bottom of this post. Finally, here is the .zip file (v0.68c): Show Your Support
|
Comments |
#352
|
|||
|
|||
The races you can add yourself. You did see that in your AdminCP right??
|
#353
|
||||
|
||||
Another Great Addition could be, users can make thier clans the when you join a clan, it displays your clan on your profile, every clan has a Icon(Avatar) and a Little Description which is displayed on the user profile. All Clans must be approved by admins. Just another idea..
|
#354
|
||||
|
||||
here is a screenshot of what it should look like in the user profile, and sry, i didnt know about adding races, lol...
|
#355
|
||||
|
||||
someone can post me a simple postbit idea for signature?
|
#356
|
||||
|
||||
Wow, I see the ideas were just flowing last night
mr e: Here is how damage is calculated based on your weapon: $damagedone = ($weapon[damage] + $uregatt) * $anger + $bonusattack - $armor - $oregdef + $uspeed % 50 + 1; Where $weapon[damage] = the 'buff' of the weapon that determines how much damage it does. $uregatt = The attacker's regular attack $anger = the anger percentage (1 if the user is not angry, 1.1 if the user is at 100% AP) $bonusattack = The amount of bonus damage given to the attacker by "persistent modifier" items. Persistent Modifier items are any items that give + to Att, + to Def, or + to Att and Def in the item's category. On my board, we made Ring items always give to attack. $armor = the defender's total armor, including + to Def items. $oregdef = the defender's regular defense $uspeed = the attacker's speed $damagedone = the total damage done to the defender by the attacker. This formula will change. I will take out speed and use that and evade for calculating the chance to hit. Currently, chance to hit is 9 out of 10 times and is statically defined. Here is how the damage is calculated based on the spell: $damagedone = $spell[damage] + $umagicatt - $omagicdef; Where: $spell[damage] = the 'buff' or damage assigned to that spell. $umagicatt = the attacker's magic attack $omagicdef = the defender's magic defense $damagedone = the total damage done by the spell to the defender by the attacker Armor is not taken in to account when spells are used. From the first formula, you can see how armor is affected. mr e (second post): The next version now has the text boxes in the admin cp in the same order. I will think about the element modifiers on weapons a little more. The reason you can buy items when you are in battle is because this is a beta and people often forget to buy weapons before they go in to battle. To make it easier, I allowed people to buy items while in battle tot test potions etc. In the final version, you will not be allowed to buy items while in battle. Strider Xero: Read the formula above to see how damage is calculated. If I were to make them permanent, then user's could not update their stats. If they can't update their stats, then they can't gain levels. I am not sure about how to make the changes permanent, but I am open to any ideas you have. Strider Xero (second post): There is an INCOMPLETE manual attached to the bottom of this post. It is in HTML format and has a quick-link index at the top. I am about 50% done with it. I think you will find parts of it useful, however I don't advise that you read the whole thing straight through. Instead, click on the topic that you are interested in and it will give a detailed explanation of everything about that topic. If you have any suggestions, then let me know. AViO 07: Yes, I will change it. AViO 07 (second post): Included in version 0.57 was a file called "Flip Code". In this file there is code that flips an image given to it. If you know php, then you can open up battlefight.php and play around with it. AViO 07 (third post): I will work on adding the profile variables. It won't be installed by default, but I will make a short add-on file that does it. AViO 07 (fourth post): Hmm, the clan idea sounds like an addon. I will think about it. Kevorkian: If you want a sample postbit to display the RPG/Itemshop/Battle stuff, then the .zip file includes a sample postbit. Look in the file called "sample postbit.txt". Copy the contents of that file into your postbit template just below "Posts: $post[posts]". Finally, here is the INCOMPLETE manual. You can find the same information in multiple places, making it easier to locate what you want. Do not read straight through, as it does not have any flow. Instead, use the index to browse a topic of interest. Feedback is welcomed. |
#357
|
|||
|
|||
Wow...hey bitsy's thanks for replying to everyone including me...from the look of the post, it must have taken forever. geez everyone, isn't he just a great guy!!??
|
#358
|
||||
|
||||
ok thanks ^_^ *clik install*
|
#359
|
||||
|
||||
wow thanks
|
#360
|
||||
|
||||
Yeah, Bitsys is a great guy
PS. Will a *new* spells system/add-on/thing be easy to implement? I could do with it... |
#361
|
||||
|
||||
Bitsys, the flip code thing I don't know how to make it work..
|
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|