|
ibProBattle v1.5.1
|
Aug 2 2006, 08:31 PM
Post
#1
|
|
![]() Member ![]() ![]() Group: Members Posts: 164 Joined: 23-January 04 Member No.: 78,977 |
ibProBattle v1.5.1
Category: Full Modifications Compatibility: Invision Power Board 2.1 Demo: http://www.ibparcade.com/index.php?act=atkshop Quick Description: Battle System For Your IPB Forums Description: Battle System For Your IPB Forums with built in points system that can be use with IbProArcade, IbProCasino and anything else using a points system. This version works for IPB 2.1.x 2.2.x and 2.3.x 1.5.1 Changelog Remaining Attacks in ATKShop Remaining Attacks in Target Page ibProBattle Stats 1.1.0 with settings Revive and Kill mod Fixed some ACP stuff Weapon Stat has been added for ATKShop Unreal Portal blocks tutorials For IbProBattle support goto: http://www.ibparcade.com View Modification -------------------- |
|
|
|
![]() |
Aug 4 2006, 01:02 PM
Post
#16
|
|
|
Newbie ![]() Group: Members Posts: 23 Joined: 7-July 03 From: California Member No.: 25,499 |
QUOTE(Rabid @ Aug 4 2006, 06:43 PM) [snapback]1717232[/snapback] no i have it all in there up and running....2.1.7 i didnt see any settings like what you were referring too.... also a side note, how do i change how many attacks you can do (default 4) and how many times to attack a member (default 1)? The base # of attacks are in the group settings for the forums now. Be careful with that setting... every 10 levels, players gain an attack... so it could cause a little havoc. As far as the same person attacking the same member more than once before the last attack expires, that's the way it is. So, do you have the ibProBattle settings in your ACP or not? I would imagine you do if the mod is working (and your links are there). When you go to your ACP, click on Manage Components, then look for ibProBattle, once located, click on the icon to the right and it will drop down a menu, click on Edit Component... then look for that field Component Board Header URL. |
|
|
|
Aug 4 2006, 07:50 PM
Post
#17
|
|
![]() Newbie ![]() Group: Members Posts: 99 Joined: 8-July 04 From: Alaska Member No.: 115,507 IPB Version: 1.3.x |
ok i think i found it, its in the admin tab...
-------------------- |
|
|
|
Aug 5 2006, 02:24 AM
Post
#18
|
|
|
Newbie ![]() Group: Members Posts: 41 Joined: 16-March 05 Member No.: 148,987 IPB Version: Not Applicable |
have any portugues translation to this mod?
|
|
|
|
Aug 5 2006, 06:50 AM
Post
#19
|
|
|
Newbie ![]() Group: Members Posts: 23 Joined: 7-July 03 From: California Member No.: 25,499 |
Not that I know of, but we would like to support as many languages as possible. The cache/lang_cache/en/lang_attack.php is very complete, don't think there is one word hard coded into the mod (only the ACP).
If anyone wants to translate, please feel free |
|
|
|
Aug 7 2006, 05:21 AM
Post
#20
|
|
|
Newbie ![]() Group: Members Posts: 17 Joined: 20-August 04 Member No.: 121,419 IPB Version: 2.0.x |
frikin' great mod!!! thanx!!
but.. i have some errors... first, when i click to see members profile i got this error: Fatal error: Call to undefined function: attack_log_row() in /home2/nippon/public_html/forum/sources/action_public/profile.php on line 945 (but i dont get that error when i clink on show members profile in Members list, or when i clink on members name whose b-day is today - only when i clink on members name on Online list, in Shoutbox and in posts, etc...) when i try to edit settings in Admin CP i got this error: IPB WARNING [2] auto_run(/home2/nippon/public_html/forum/sources/components_acp/attack.php): failed to open stream: No such file or directory (Line: 138 of /sources/acp_loaders/acp_components.php) and.. when i try to Skin install/repair i got error also: Error Returned mySQL query error: REPLACE INTO ibf_skin_templates SET set_id=1, group_name='skin_attack', func_name='shop_main', section_content='<script type="text/javascript">\n<!--\n function bulk_popup( theFunc , theItem )\n {\n window.open( ipb_var_base_url + \'act=atkshop&do=\' + theFunc + \'&item=\' + theItem ....... pleeeease help (but i can attack and make gulids...) |
|
|
|
Aug 7 2006, 12:41 PM
Post
#21
|
|
![]() IZE Wubber ![]() ![]() ![]() ![]() Group: Members Posts: 782 Joined: 2-June 03 From: Liverpool, England Member No.: 16,699 |
ok it says this below but if you do that half the code is missing from it if you replace it like the old version you used to replace it with 2 versions of it and it would be ok but this is different fromt he other version you lose all this
CODE m.id,m.name,m.mgroup,m.email,m.joined,m.posts, m.last_visit, m.last_activity,m.login_anonymous,m.title,m.hide_email, m.warn_level, m.warn_lastwarn, Find: CODE function topics_get_posts( $a ) { # topics.php return "SELECT p.*, m.id,m.name,m.mgroup,m.email,m.joined,m.posts, m.last_visit, m.last_activity,m.login_anonymous,m.title,m.hide_email, m.warn_level, m.warn_lastwarn, me.msnname,me.aim_name,me.icq_number,me.signature, me.website,me.yahoo,me.location, me.avatar_location, me.avatar_type, me.avatar_size, m.members_display_name FROM ".SQL_PREFIX."posts p LEFT JOIN ".SQL_PREFIX."members m ON (p.author_id=m.id) LEFT JOIN ".SQL_PREFIX."member_extra me ON (me.id=m.id) WHERE p.pid IN(".implode(',', $a['pids']).") ORDER BY {$a['scol']} {$a['sord']}"; } Replace With: CODE //ibProBattle Start
function topics_get_posts( $a ) { # topics.php return "SELECT p.*,m.*,gi.g_id,gi.g_name, me.msnname,me.aim_name,me.icq_number,me.signature, me.website,me.yahoo,me.location, me.avatar_location, me.avatar_type, me.avatar_size FROM ".SQL_PREFIX."posts p LEFT JOIN ".SQL_PREFIX."members m ON (p.author_id=m.id) LEFT JOIN ".SQL_PREFIX."member_extra me ON (me.id=m.id) LEFT JOIN ".SQL_PREFIX."guilds_nfo gi ON (gi.g_id=m.gu_affil) WHERE p.pid IN(".implode(',', $a['pids']).") ORDER BY {$a['scol']} {$a['sord']}"; } //ibProBattle End -------------------- |
|
|
|
Aug 7 2006, 02:24 PM
Post
#22
|
|
|
Newbie ![]() Group: Members Posts: 17 Joined: 20-August 04 Member No.: 121,419 IPB Version: 2.0.x |
i edited all the files correctly... -.-
nothing again... |
|
|
|
Aug 7 2006, 07:50 PM
Post
#23
|
|
|
Newbie ![]() Group: Members Posts: 41 Joined: 16-March 05 Member No.: 148,987 IPB Version: Not Applicable |
some times itens not show "use" link show only Tranfer wy? how many days i revive if i die? and revive iten how can i use?
This post has been edited by zemane: Aug 7 2006, 07:52 PM |
|
|
|
Aug 7 2006, 09:07 PM
Post
#24
|
|
![]() Newbie ![]() Group: Members Posts: 99 Joined: 8-July 04 From: Alaska Member No.: 115,507 IPB Version: 1.3.x |
yes, i too am curious as to what circumstances you can use phoenix down...
-------------------- |
|
|
|
Aug 8 2006, 02:50 PM
Post
#25
|
|
|
Member ![]() ![]() Group: Members Posts: 209 Joined: 9-June 04 From: USA Member No.: 113,711 IPB Version: 2.3.x |
QUOTE(Rabid @ Aug 7 2006, 11:07 PM) [snapback]1718809[/snapback] yes, i too am curious as to what circumstances you can use phoenix down... You can use it on someone else who is dead, but you can not use it on yourself!!! -------------------- ![]() |
|
|
|
Aug 9 2006, 09:51 PM
Post
#26
|
|
![]() Newbie ![]() Group: Members Posts: 99 Joined: 8-July 04 From: Alaska Member No.: 115,507 IPB Version: 1.3.x |
it wont let me use it at all....
-------------------- |
|
|
|
Aug 10 2006, 02:21 AM
Post
#27
|
|
|
Newbie ![]() Group: Members Posts: 23 Joined: 17-November 05 From: SMB Central Member No.: 186,030 IPB Version: Not Applicable |
Two questions:
1.) When I type "http://myforumsurl.net/index.php?act=attack" I get: Error There has been one or more errors. The following error(s) were found: * Invalid user id in url, attempt to attack or donate to guest, or attempt to attack or donate to self. What's this? and 2.) Is there a way to make a link on people's profiles so when members click on it, It starts a battle? (It can be done). |
|
|
|
Aug 10 2006, 05:30 AM
Post
#28
|
|
![]() Member ![]() ![]() Group: Members Posts: 203 Joined: 8-September 05 Member No.: 174,342 |
I keep getting this error when going to profiles.
Ayn help.. Thanks CODE Fatal error: Call to undefined function: attack_log_row() in /home/wrestlem/public_html/forums/sources/action_public/profile.php on line 1116 Edit I got it I just reinstell it. seems fine now. Thanks This post has been edited by smiley8533: Aug 10 2006, 10:28 PM -------------------- |
|
|
|
Aug 11 2006, 03:08 AM
Post
#29
|
|
|
Newbie ![]() Group: Members Posts: 23 Joined: 17-November 05 From: SMB Central Member No.: 186,030 IPB Version: Not Applicable |
Is there any soultion to my question?
Re-Install of the mod doesn't work. EDIT: FOUND AND FIXED. This post has been edited by Matto: Aug 11 2006, 07:43 PM |
|
|
|
Aug 12 2006, 11:06 AM
Post
#30
|
|
![]() Newbie ![]() Group: Members Posts: 99 Joined: 8-July 04 From: Alaska Member No.: 115,507 IPB Version: 1.3.x |
ok in mine, the revive option only shows in profile view, not in topic view...
-------------------- |
|
|
|
![]() ![]() |
|
Lo-Fi Version | Time is now: 17th March 2010 - 04:41 PM |
|
Search Engine Keywords
|