Go Back   vb.org Archive > vBulletin Modifications > Archive > vB.org Archives > vBulletin 2.x > vBulletin 2.x Beta Releases
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
Ultima Battle System -- vB Integration Details »»
Ultima Battle System -- vB Integration
Version: 1.00, by Link14716 Link14716 is offline
Developer Last Online: Oct 2023 Show Printable Version Email this Page

Version: 2.2.x Rating:
Released: 10-30-2002 Last Update: Never Installs: 16
Supported
Is in Beta Stage  

This is definetly in BETA. I am not feeling too good, and may have missed something in the instructions, but I doubt it. This has been tested minimally. Use at your own peril.

To use this hack, you must have UBS (Ultima Battle System) 1.0.5 installed. You can get it from http://www.gaming-honor.com/hq.

This integrates templates and users between the two. Templates will be ran out of the vB Admin Center like any other template, and users will be equally shared.

REQUIREMENTS:
-Ultima Battle System
-Caffine... lots of it.
-Band-aids.
-A lot of patience.

This is a brutal process, involving renamng every template UBS has and a find/replace spaning through all of the UBS files. If you can survive that, well, then you can get this hack installed.

Support only offered in this thread and the one at UB Systems HQ. Enjoy!

UB Systems HQ Support: http://www.gaming-honor.com/hq/threa...tyleid=&page=1

Show Your Support

  • This modification may not be copied, reproduced or published elsewhere without author's permission.

Comments
  #22  
Old 10-31-2002, 11:02 PM
Goldknight's Avatar
Goldknight Goldknight is offline
 
Join Date: Aug 2002
Posts: 304
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Ok here it is..

Code:
Database error in Character battle system: Invalid SQL: select me from yes where id='1' 
mysql error: Table 'XXXXXX.yes' doesn't exist 
mysql error number: 1146 
Date: 01.11.2002 @ 00:59 
Script: /forum/rpg/ 
Referer: 

There seems to be some technical problems with the database at this moment.
Please use the reload-button of your browser to try again.
If these problems continue, please contact the Admin of this Forum.
That was after [sql]DELETE FROM db_users;[/sql] then misc instruction work and I went to rpg and it roll out the error above... heh
Reply With Quote
  #23  
Old 10-31-2002, 11:31 PM
Link14716's Avatar
Link14716 Link14716 is offline
 
Join Date: Jun 2002
Location: Georgia, USA
Posts: 2,519
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Oh yeah, that happened with me too. I think it has to do with something in the RPG. To fix it:

Open up header.php (root/UBS):
Find:
Code:
if($user_name != Guest && $room != 'lobby') {
REPLACE WITH:
Code:
if($user_name != Guest && $room != 'lobby' && $room != 'yes') {
And in index.php (root/UBS):
Find:
Code:
if($user_name != Guest && $room != 'lobby'){
REPLACE WITH:
Code:
if($user_name != Guest && $room != 'lobby' && $room != 'yes'){
Reply With Quote
  #24  
Old 10-31-2002, 11:51 PM
Goldknight's Avatar
Goldknight Goldknight is offline
 
Join Date: Aug 2002
Posts: 304
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally posted by Link14716

And in index.php (root/UBS):
Find:
Code:
if($user_name != Guest && $room != 'lobby'){
REPLACE WITH:
Code:
if($user_name != Guest && $room != 'lobby' && $room != 'yes'){
Thats one I couldnt find any in rpg/index.php =\
There are only two like that in index.php are..
PHP Code:
if($user_name != Guest){ 
Nothing after that such as yours above..

But as for header.php I m done edit and change.
Reply With Quote
  #25  
Old 11-01-2002, 12:28 PM
Link14716's Avatar
Link14716 Link14716 is offline
 
Join Date: Jun 2002
Location: Georgia, USA
Posts: 2,519
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Replace the second instance of what you found, then.
Reply With Quote
  #26  
Old 11-01-2002, 03:08 PM
Goldknight's Avatar
Goldknight Goldknight is offline
 
Join Date: Aug 2002
Posts: 304
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Link, I follow your instruction, I replace second one..

PHP Code:
if($user_name != Guest){
if(
$userclass==""){
      
$warning="Warning: You have not chosen a class, your stats are all set to 0!";

to
PHP Code:
if($user_name != Guest && $room != 'lobby' && $room != 'yes'){
if(
$userclass==""){
      
$warning="Warning: You have not chosen a class, your stats are all set to 0!";

Then I go to http://www.xxxxxxxxxxx.com/forum/rpg and it still roll out same error:

Code:
Database error in Character battle system: Invalid SQL: select me from yes where id='1' 
mysql error: Table 'xxxxx.yes' doesn't exist 
mysql error number: 1146 
Date: 01.11.2002 @ 17:02 
Script: /forum/rpg/ 
Referer: 

There seems to be some technical problems with the database at this moment.
Please use the reload-button of your browser to try again.
If these problems continue, please contact the Admin of this Forum.
:ermm: :ermm: :ermm:
Reply With Quote
  #27  
Old 11-01-2002, 03:27 PM
Neo's Avatar
Neo Neo is offline
 
Join Date: Oct 2001
Location: Anywhere
Posts: 1,817
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Bleh I dont like the layout of that at all.
Reply With Quote
  #28  
Old 11-01-2002, 07:08 PM
Link14716's Avatar
Link14716 Link14716 is offline
 
Join Date: Jun 2002
Location: Georgia, USA
Posts: 2,519
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Then edit the templates....

Goldknight: Try the first one, then.
Reply With Quote
  #29  
Old 11-01-2002, 07:28 PM
Goldknight's Avatar
Goldknight Goldknight is offline
 
Join Date: Aug 2002
Posts: 304
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Link14716, yup it s on first one. Thanks! =D I m now see if I can find any bugs or flaws..

I wonder about images.. seem that there is no upload feature for users to add the images. =\ I seem have to use upload hack to ulitize it for users to use it. Thanks for patience with me

Edit: Also images of items and few seem miss too. I have my own items from FF sites, do I have to use these to fill up? Thanks
Reply With Quote
  #30  
Old 11-01-2002, 07:34 PM
Goldknight's Avatar
Goldknight Goldknight is offline
 
Join Date: Aug 2002
Posts: 304
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

uh hu, I found a error already.. it is chat error... When I finally access rpg with your codes and there is white page on chat at homepage of UBS.

Error:
Code:
Warning: fopen("", "r+") - Success in /www.XXXXXXXXXX.com/forum/rpg/chat.php on line 417
error when reading in yes
And I attach the image in case..

On 417 lines in chat.php:
PHP Code:
$fp fopen ($file"r+") or die ("error when reading $file in $userroom");
$mess file($file);

if (
$name2 == "$user_name) { $name2 "name"; } 
Edit: I cannot access AdminCP, it keep redirect to homepage of UBS.
Reply With Quote
  #31  
Old 11-01-2002, 07:52 PM
Link14716's Avatar
Link14716 Link14716 is offline
 
Join Date: Jun 2002
Location: Georgia, USA
Posts: 2,519
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

You have to CHMOD all of the .dat files to 777.

And are you sure you are going to admin/admin.php?
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT. The time now is 07:28 PM.


Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2024, vBulletin Solutions Inc.
X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.12568 seconds
  • Memory Usage 2,323KB
  • Queries Executed 25 (?)
More Information
Template Usage:
  • (1)SHOWTHREAD
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (1)ad_showthread_beforeqr
  • (9)bbcode_code
  • (4)bbcode_php
  • (1)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (6)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (3)pagenav_pagelink
  • (11)post_thanks_box
  • (11)post_thanks_button
  • (1)post_thanks_javascript
  • (1)post_thanks_navbar_search
  • (11)post_thanks_postbit_info
  • (10)postbit
  • (11)postbit_onlinestatus
  • (11)postbit_wrapper
  • (1)spacer_close
  • (1)spacer_open
  • (1)tagbit_wrapper 

Phrase Groups Available:
  • global
  • inlinemod
  • postbit
  • posting
  • reputationlevel
  • showthread
Included Files:
  • ./showthread.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/functions_bigthree.php
  • ./includes/class_postbit.php
  • ./includes/class_bbcode.php
  • ./includes/functions_reputation.php
  • ./includes/functions_post_thanks.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
  • showthread_start
  • showthread_getinfo
  • forumjump
  • showthread_post_start
  • showthread_query_postids
  • showthread_query
  • bbcode_fetch_tags
  • bbcode_create
  • showthread_postbit_create
  • postbit_factory
  • postbit_display_start
  • post_thanks_function_post_thanks_off_start
  • post_thanks_function_post_thanks_off_end
  • post_thanks_function_fetch_thanks_start
  • post_thanks_function_fetch_thanks_end
  • post_thanks_function_thanked_already_start
  • post_thanks_function_thanked_already_end
  • fetch_musername
  • postbit_imicons
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete