Go Back   vb.org Archive > vBulletin Modifications > Premium Modifications > ibProArcade
FAQ Community Calendar Today's Posts Search

Reply
 
Thread Tools
[DOWNLOAD] Converter (from v3arcade to ibProArcade) Details »»
[DOWNLOAD] Converter (from v3arcade to ibProArcade)
Version: , by MrZeropage MrZeropage is offline
Developer Last Online: Mar 2023 Show Printable Version Email this Page

Version: Unknown Rating:
Released: 06-26-2006 Last Update: Never Installs: 0
 
No support by the author.

Anybody who has v3arcade running on his site and wants to migrate to ibProArcade... Here is the solution


This will automatically convert your installed games and, if you want to, even all the scores from v3arcade to ibProArcade.
The converter is designed to be used on a fresh ibProArcade-installation as you will lose all installed games and scores in your ibProArcade.


The Converter is compatible to:
  • vBulletin 3.5.x / 3.6.x
  • ibProArcade v2.5.9+ and later
  • v3arcade 1.0.6 (for vBulletin 3.5.x)
    usage with <1.0.6 are untested yet, please let me know if/how this works


Just follow those steps to migrate:

1) don't touch your v3arcade-installation yet, just close the arcade
2) download ibProArcade and install it
3) upload the attached converter to your forum's root-directory and run it

That's all, the converter is interactive and will tell you what to do ect.


Don't forget to remove the converter.php after everything is done !


The converter will let you choose if you want to remove v3arcade after conversion or not.

After you successfully converted, feel free to click UNINSTALL for v3arcade


Note to the sceptics
If you want to take a look on ibProArcade first while not losing your v3arcade, make sure you rename your /arcade.php to /v3arcade.php before you install ibProArcade. Then, after conversion is done, do not remove v3arcade at this time and test ibProArcade.
If you feel comfortable with it, remove v3arcade later via vBulletin's Product-Manager or (and that is what I point you to) run the converter again, it will provide a link for uninstallation on the first page and then guide you through the complete uninstallation (will even tell you which files and folders to remove, which the Product-uninstaller does not!). Remember to remove the renamed /v3arcade.php too
If you dislike ibProArcade, please let me know the reason and uninstall ibProArcade via the Product-Manager, then rename your /v3arcade.php to /arcade.php and you can use your v3arcade again.



If you find any bugs, if you have any improvements, ideas ect. please let me know

Download Now

File Type: php converter.php (11.3 KB, 1921 views)

Show Your Support

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

Comments
  #52  
Old 12-27-2006, 12:36 PM
MrZeropage's Avatar
MrZeropage MrZeropage is offline
 
Join Date: Nov 2003
Location: Munich, Germany
Posts: 3,012
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

gameid is stable, but the link maybe somehow different ...
Reply With Quote
  #53  
Old 12-29-2006, 08:35 AM
MorrisMcD's Avatar
MorrisMcD MorrisMcD is offline
 
Join Date: Nov 2003
Location: Cincinnati, Ohio
Posts: 415
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by MrZeropage View Post
Ok seems you really have too much scores.

Remove all with zero value ...
DELETE FROM `arcade_sessions` WHERE `score` = 0
worked by the way.. I never posted since.. But all went well after i ran that query.. I have tripled the amount of games we have due to converting.. Thanks

Quote:
Originally Posted by MrZeropage View Post
@altdelete47:
Thanks for using ibProArcade
That is a thing I thought of to integrate in AdminCP for next v2.5.7+: prune all lower scores of a user per game if setting is changed to "save only users top score", or just provide a function in "Score Tools" for that.
By now there is no option to do that automatically, sorry.
Is this an option yet? I like the leaderboard, but many players have 1st, 2nd,3rd, 4th, 6th, 7th, whatever... From the old system and the leftover scores... Just curious how to do this if possible.. Basically just removing all but the highest score of each user in each game...

Thanks again
Reply With Quote
  #54  
Old 12-30-2006, 09:20 AM
Spinball's Avatar
Spinball Spinball is offline
 
Join Date: Feb 2002
Location: Telford, England
Posts: 705
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Got some feedback on this for you. With 150,000 users, the converter script always timed out on step 2.
So I put in a line of code:
PHP Code:
        while ($score $vbulletin->db->fetch_array($scores))
        {
            
$vbulletin->db->query_write("INSERT INTO " TABLE_PREFIX "games_scores    (s_id, gid, name, mid, datescored, comment, score)
                                            VALUES 
                                            ('
$score[sessionid]', $score[gameid], '".addslashes($score[username])."', $score[userid]$score[finish], '".cleanstring($score['comment'])."', $score[score])");
            
$counter++;
            echo (
"$counter, ");
        } 
Inserting the echo ("$counter, ");

After which it ran just fine.
Reply With Quote
  #55  
Old 01-03-2007, 09:55 PM
Evil Dave Evil Dave is offline
 
Join Date: Dec 2006
Posts: 13
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Excuse me for being a newbie, but how exactly do you start the converter? I uploaded it to the root but how do I make it run?

Thanks
Reply With Quote
  #56  
Old 01-06-2007, 11:19 AM
MrZeropage's Avatar
MrZeropage MrZeropage is offline
 
Join Date: Nov 2003
Location: Munich, Germany
Posts: 3,012
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

simply call it

http://www.yourforum.com/converter.php
Reply With Quote
  #57  
Old 01-08-2007, 11:50 PM
AuroraStorm's Avatar
AuroraStorm AuroraStorm is offline
 
Join Date: Nov 2006
Location: ATHell
Posts: 332
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by MrZeropage View Post
Dude, I don't mean to be a pain in the butt about this but I've been all over this board trying to find the template modifications for the ibProArcade. I uploaded some styles on my board and for some of them I've had to go back into the Edit Templates to update the vbPlaza which is working fine, but I need to do this for the Arcade to show up on the new styles and I've searched this site until my fingers hurt without much luck. It's not in the Readme file or else I wouldn't be here. Please can you provide the hacks for me to update the Edit Template...I'd really appreciate it...I'll even bookmark it...
Reply With Quote
  #58  
Old 01-09-2007, 05:41 AM
Feckie (Roger)'s Avatar
Feckie (Roger) Feckie (Roger) is offline
 
Join Date: May 2005
Location: Dublin Eire
Posts: 392
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

arcade/skins/
Reply With Quote
  #59  
Old 01-09-2007, 11:09 AM
fly fly is offline
 
Join Date: Oct 2003
Posts: 1,215
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

Quote:
Originally Posted by AuroraStorm View Post
Dude, I don't mean to be a pain in the butt about this but I've been all over this board trying to find the template modifications for the ibProArcade. I uploaded some styles on my board and for some of them I've had to go back into the Edit Templates to update the vbPlaza which is working fine, but I need to do this for the Arcade to show up on the new styles and I've searched this site until my fingers hurt without much luck. It's not in the Readme file or else I wouldn't be here. Please can you provide the hacks for me to update the Edit Template...I'd really appreciate it...I'll even bookmark it...
You're in the wrong thread. You can re-download the correct hack here: https://vborg.vbsupport.ru/showthrea...ht=ibproarcade
Reply With Quote
  #60  
Old 01-12-2007, 11:12 PM
ezekiel97 ezekiel97 is offline
 
Join Date: Sep 2005
Posts: 12
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

VERY NICE! I LOVE IT! Thanks alot man!
Reply With Quote
  #61  
Old 01-21-2007, 01:53 PM
carbide carbide is offline
 
Join Date: Nov 2006
Posts: 38
Благодарил(а): 0 раз(а)
Поблагодарили: 0 раз(а) в 0 сообщениях
Default

conversion went along very smooth

conversion went along very smooth
kept all my high scores
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 02:05 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.04699 seconds
  • Memory Usage 2,346KB
  • Queries Executed 26 (?)
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
  • (1)bbcode_php
  • (4)bbcode_quote
  • (1)footer
  • (1)forumjump
  • (1)forumrules
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (1)modsystem_post
  • (1)navbar
  • (4)navbar_link
  • (120)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)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
  • (1)postbit_attachment
  • (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_attachment
  • postbit_display_complete
  • post_thanks_function_can_thank_this_post_start
  • pagenav_page
  • pagenav_complete
  • tag_fetchbit_complete
  • forumrules
  • navbits
  • navbits_complete
  • showthread_complete