Version: 3.5.1, by Revan
Developer Last Online: Jun 2014
Version: 3.5.4
Rating:
Released: 02-23-2006
Last Update: 08-12-2006
Installs: 213
DB Changes Uses Plugins Template Edits
Additional Files
No support by the author.
[high]
RPG Integration Hack v3.5.1 Patch Level 2
[/high]
RPG Integration Hack (RPG hack for short) v3.5.1 is the first step into the next generation of the classic hack compiled by Bitsys. For those that are unfamiliar with any of what I mentioned above, heres a quick rundown of what this hack is and does.
The RPG hack adds a whole new level of fun to a forum, by allowing uses to duke it out in a fierce battle. Use items to turn the tide of the battle, or use powerful spells to bring down an opponent. Or you can just rely on the good old sword to cut your enemy down to size!
Create or join a clan to amass an army and conquer the boards.
Patch yourself up after a hard battle.
Feeling lucky? Go bet on the lottery!
No RPG forum should be without. Administrator controls every single aspect of how the hack works, right down to every item and an user's level/stat gains.
[high]Important Notices:[/high]
You need an external Cash mod installed for this mod to function properly.
uCash/uShop or vBPlaza, either will do
The Cash mod need to use the `user` table
You need to configure a setting in the RPG Integration Hack - Cash Options after install/upgrade
[high]Known Issues:[/high]
Regular postbit doesn't contain RPG info
RPG Manual is still outdated
These are all issues that will be addressed in upcoming versions.
[high]Upgrading Users:[/high] What's new in v3.5?
OOP coding for query efficiency
Revamped templates
New Battle formulas (Thanks to Decado)
Works with AJAX Quick Reply/Quick Edit
Reoccurring Lotteries
Improved Healing Center
Inventory feature for the ability to carry multiple items from same item category
RPG Info no longer changeable on the fly
And last, but not least: [high]NO FILE EDITS![/high]
To update from Beta 1, simply replace all files and run the installer same way you did when installing it. You will be guided through the Upgrade process. You will need to manually point your browser to the Index file after each upgrade process, though. I think. XD
Ill see about that payment history, Im working on revamping the Headquarters for various features atm.
Another suggestion could be "forms" for a RPG character. Like a class of druid. However, I would assume that such will not be able (as it'll change their status depending on form) until v4... but would be pretty cool in that sense. I'm looking forward to the status system... where characters can be poisoned etc. That'll be awesome.
Hi when I go to Itemshop and click on inventory I get 404 error I have looked in all the downloaded files and there is not a inventory.php file anywhere. Other than that everything seem to be ok
Beta 5 I am using
Hi
Yes I did have vbplaza but I uninstalled it and I have been through all the database and deleted all the referance to vbplaza, and deleted all the files from vbplaza
Kevin
Hi when I go to Itemshop and click on inventory I get 404 error I have looked in all the downloaded files and there is not a inventory.php file anywhere. Other than that everything seem to be ok
Beta 5 I am using
That feature is not yet complete, I've been meaning to add an empty file there.
Hey, Revan. Congrats on a cool, featured hack. I'm testing it now.
I've ran into this error when clicking on the clan info either in the postbit and clan list:
Code:
Fatal error: Cannot instantiate non-existent class: vb_bbcodeparser in /../showclans.php on line 172
So I checked that line in the "showclans.php" file. I'd figured changing just "$parser" to "$bbcode_parser" to no avail. I tried several other adjustments such as removing the entire code bit (below) but it rendered the BB code unusable. No signature would show, only the image. So I did this:
Replaced:
Code:
if ($clan['signature'])
{
/*
Signature parsed with default values:
HTML Off
BBCode On
Image Off
*/
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$show['clansig'] = $parser->do_parse($clan['signature'], false, true, false);
}
else
{
// Boring clan without a sig
$show['clansig'] = $vbphrase['rpg_na'];
}
With:
Code:
if ($clan['signature'])
{
/*
Signature parsed with default values:
HTML Off
BBCode On
Image Off
*/
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$show['clansig'] = $bbcode_parser->do_parse($clan['signature'], false, true, false);
}
else
{
// Boring clan without a sig
$show['clansig'] = $vbphrase['rpg_na'];
}
That seemed to have resolved the issue. Now when I click the clan info in postbit and Clan List the link renders correctly.
The BB Codes don't work on my end but no biggie. I'll post back with update after more testing.
Hey, Revan. Congrats on a cool, featured hack. I'm testing it now.
I've ran into this error when clicking on the clan info either in the postbit and clan list:
Code:
Fatal error: Cannot instantiate non-existent class: vb_bbcodeparser in /../showclans.php on line 172
So I checked that line in the "showclans.php" file. I'd figured changing just "$parser" to "$bbcode_parser" to no avail. I tried several other adjustments such as removing the entire code bit (below) but it rendered the BB code unusable. No signature would show, only the image. So I did this:
Replaced:
Code:
if ($clan['signature'])
{
/*
Signature parsed with default values:
HTML Off
BBCode On
Image Off
*/
$parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$show['clansig'] = $parser->do_parse($clan['signature'], false, true, false);
}
else
{
// Boring clan without a sig
$show['clansig'] = $vbphrase['rpg_na'];
}
With:
Code:
if ($clan['signature'])
{
/*
Signature parsed with default values:
HTML Off
BBCode On
Image Off
*/
require_once(DIR . '/includes/class_bbcode.php');
$bbcode_parser =& new vB_BbCodeParser($vbulletin, fetch_tag_list());
$show['clansig'] = $bbcode_parser->do_parse($clan['signature'], false, true, false);
}
else
{
// Boring clan without a sig
$show['clansig'] = $vbphrase['rpg_na'];
}
That seemed to have resolved the issue. Now when I click the clan info in postbit and Clan List the link renders correctly.
The BB Codes don't work on my end but no biggie. I'll post back with update after more testing.
Seems like I just missed the include() there, thanks for spotting thsi