[BETA] Power Pack - for Moogie's RPG mod 0.0.4

A place for MOD Authors to post and receive feedback on MODs still in development. No MODs within this forum should be used within a live environment! No new topics are allowed in this forum.
Forum rules
READ: phpBB.com Board-Wide Rules and Regulations

IMPORTANT: MOD Development Forum rules

On February 1, 2009 this forum will be set to read only as part of retiring of phpBB2.
Post Reply
nomercy
Registered User
Posts: 174
Joined: Wed Mar 10, 2004 8:11 pm

[BETA] Power Pack - for Moogie's RPG mod 0.0.4

Post by nomercy »

Power Pack
for Moogie's RPG mod, DBAL version

Latest version: 0.0.4


Main Features:
- 36 background arenas
- 108 weapons
- 81 armour items
- Several other items
- 8 different classes & 8 promotional classes
- 5 optional bonus classes
- Each item has a unique (matching) image
- Items based on Shining Force 3 & Shining: The Holy Ark

RPG Stats & Battle Mod main fixes:
- A working DBAL version
- phpbb_ prefix 'bug' removed
- Compatible with phpBB +2.0.9
- Display user stats in HQ
- Used item selected after usage in battle
- Multiple items displayed as number during battle
- Global variables no longer allowed
- Improved item bonus randomizer function
- Boss Battle included

Shop Mod & Usable item mod main fixes:
- Mod compatible with 2.6.0 version (1.2.0 untested & probably does not work any more)
- DBAL
- Compatible with phpBB +2.0.9
- Global image used if no image is available
- Moogie's Auction Mod supported

'Best RPG Players' module:
- For Statistics Mod/Hack 2.1.5 and 3.0.0b3
- Includes a ranking based on 'player level'

It still contains some bugs, but nothing major.

Power Pack: http://www.phpbb-rpg.com/dload.php?acti ... file_id=10
Pre-edited files: http://www.phpbb-rpg.com/dload.php?acti ... file_id=11

Update 0.0.2-0.0.3: http://www.phpbb-rpg.com/dload.php?acti ... file_id=27
Update 0.0.3-0.0.4: http://www.phpbb-rpg.com/dload.php?acti ... file_id=35

Best RPG Players - Stat Module v2.1.5: http://www.phpbb-rpg.com/dload.php?acti ... file_id=14
Best RPG Players - Stat Module v3.0.0b3: http://www.phpbb-rpg.com/dload.php?acti ... file_id=15
Moogie's Original RPG Mod, DBAL: http://www.phpbb-rpg.com/dload.php?acti ... &file_id=7
Last edited by nomercy on Sat Dec 18, 2004 7:40 pm, edited 10 times in total.
seteo-bloke
I've Been Banned!
Posts: 281
Joined: Tue Jan 28, 2003 1:41 pm

Post by seteo-bloke »

Nice work dude. :)
xmulder
Registered User
Posts: 429
Joined: Thu Jun 27, 2002 8:37 pm

Post by xmulder »

oh my god, i think i love you :D Thankyou SO much for this - its just what i need
gopunkyourself
Registered User
Posts: 122
Joined: Mon Dec 01, 2003 9:41 pm

Post by gopunkyourself »

hey do you think you could include instructions to update from moogies current mod to your fixed version? I have moogies original non-dbal version installed but I would like to fix some of those bugs and add some of those nice features you have...including using it withj shop 2.6.0

so if you could provide upgrade instructions id be really grateful.
nomercy
Registered User
Posts: 174
Joined: Wed Mar 10, 2004 8:11 pm

Post by nomercy »

One part of this mod are all the items with images and sql commands.

The other part of this mod is fixing the DBAL version and making it compatible with shop 2.6.0, which was the biggest problem with this mod. The DBAL didn't work and only shop 1.2.0 was supported, but that version couldn't be found anywhere any more.

Fixes for shop 2.6.0 are given in the fixlist. They are tagged. Just search for 'shop' or '2.6.0' and you'll find your fixes. I don't know if they'll be enough though.
You could also try the pre-edited files, as arena_ticket.php and headquarters.php are included there + the files for shop 2.6.0
Epostile
Registered User
Posts: 121
Joined: Sat Nov 15, 2003 1:56 pm
Location: Somewhere...
Contact:

Post by Epostile »

Actually 1.2.0 can be found quite easilly... Two places it can be found is Erics Boards and Allula...
DERP Fantasy Gaming
The home of Fantasy Gaming.
XTTX
Registered User
Posts: 234
Joined: Thu Jan 15, 2004 8:01 pm
Location: New York
Contact:

Post by XTTX »

question does it work with non dbal?
User avatar
trogdor7
Registered User
Posts: 14
Joined: Tue May 18, 2004 2:29 am

Post by trogdor7 »

THe statistics doesn't work with statistic mod 3 :cry: Can u add an update for it?
nomercy
Registered User
Posts: 174
Joined: Wed Mar 10, 2004 8:11 pm

Post by nomercy »

No problem. Didn't know version 3 was out already.

The fixes are not tested with non-DBAL. They probably don't work, because that wasn't really the goal of the fix list. The images/items/sql things should work fine with the non-DBAL version.
nomercy
Registered User
Posts: 174
Joined: Wed Mar 10, 2004 8:11 pm

Post by nomercy »

I hope double posting doesn't give problems... (it's an update)

Best RPG Players - Stat Module v3.0.0:
http://www.blueace.pwp.blueyonder.co.uk ... .0.0b3.zip

Best RPG Players - Stat Module v2.1.5:
http://www.blueace.pwp.blueyonder.co.uk ... v2.1.5.zip
XTTX
Registered User
Posts: 234
Joined: Thu Jan 15, 2004 8:01 pm
Location: New York
Contact:

Post by XTTX »

you said you had a fix for the error getting cash name?
nomercy
Registered User
Posts: 174
Joined: Wed Mar 10, 2004 8:11 pm

Post by nomercy »

Yeah, this is the fix. I recommend using user_points instead of user_gil. Members won't see the difference and most mods use it.

Code: Select all

#
# - [ NOTE ] -----
#
(For cash mod 2.2.1) - Shows the name matching user_points instead of a blank. 

#
# - [ FIND ] -----
#
//get points name
	$sql = "select config_value from " . CONFIG_TABLE . " where config_name='points_name'";

#
# - [ REPLACE WITH ] -----
#
//get points name
	$sql = "select cash_name from {$table_prefix}cash where cash_dbfield='user_points'";

#
# - [ FIND EVERY INSTANCE OF ] -----
#
$prow['config_value']

#
# - [ REPLACE WITH ] -----
#
$prow['cash_name']
If you're still having problems, let me know.
Daniel009
Registered User
Posts: 21
Joined: Fri Aug 22, 2003 4:29 am

Post by Daniel009 »

Can the Points Mod be used with this?
nomercy
Registered User
Posts: 174
Joined: Wed Mar 10, 2004 8:11 pm

Post by nomercy »

The points mod has been untested with this version. It is very likely that it WILL work though. You will just have to skip the fixes for the Cashmod (which are all tagged).
MG_Peter
Registered User
Posts: 21
Joined: Thu Feb 19, 2004 3:20 pm
Location: Poland

Post by MG_Peter »

If i understand - you've made the shop mod 2.6 compatible with moogie's RPG ? ;] Good work! - i'll install it... i'm reading this files now - it is great, especially the randomizer!
Post Reply

Return to “[2.0.x] MODs in Development”