vb.org Archive

vb.org Archive (https://vborg.vbsupport.ru/index.php)
-   vBulletin 4.x Add-ons (https://vborg.vbsupport.ru/forumdisplay.php?f=245)
-   -   Major Additions - ibProArcade - professional Arcade System (https://vborg.vbsupport.ru/showthread.php?t=101554)

gothicuser 10-24-2006 06:19 PM

Quote:

Originally Posted by MrZeropage
stay tuned :cool:

We ARE staying tuned :Dhttps://vborg.vbsupport.ru/

Neo_obs 10-24-2006 09:26 PM

you still need a 3.5.5 user?

kurtbarker 10-24-2006 09:28 PM

Thanks Zero,

i'm installing now, i'll let you know how it goes :D

chkdgate 10-24-2006 10:08 PM

This is the very best hack ever! Seriously.:cool:

Oddjob 10-24-2006 10:58 PM

*Hopes we get the new version tonight*

ed146 10-25-2006 12:42 AM

Yeah I can't wait till the new release!!

chatpalace24 10-25-2006 03:46 AM

Quote:

Originally Posted by MrZeropage
@chatpalace24:
You have PM :)

@MrZeropage :
you have PM :)
Lets take a look. *g*

Hmm, i switch the turbo on for faster realease. *sfg*

chatpalace24 10-25-2006 07:39 AM

Hi there,
i have written a little addon for the ibProArcade :)
This small codesnippet is for writing in an existing Thread , ArcadeHiScore or what ever you called it, the Hiscore from the Game.

Not the first , and not every Score and not if the hiscore from yourself.
Let me Explain :
First Score : 1500
Game : PacMan
User : User1
You Play and win the Hiscore

Second Score : 1501
Game : Pacman
User : User2

Then the Hiscorepost is made.

And here we go :

open the File /arcade.php

search for :
Code:

// Notification via PM
                                                                if (($this->arcade->settings['notification']=="pm") || ($this->arcade->settings['notification']=="pm+mail"))
                                                                {
                                                                        $DB->query("INSERT INTO ibf_pmtext (fromuserid, fromusername, title, message, touserarray, iconid, dateline, showsignature, allowsmilie) VALUES ('".$senderid."', '".$sendername."', '".$title."', '" . addslashes($message) . "',  '" . addslashes(serialize(array($recipient))) . "', 0, " . TIMENOW . ", 0, 0)");
                                                                        $pmid = $DB->get_insert_id();
                                                                        $DB->query("UPDATE ibf_user SET pmtotal=pmtotal+1, pmunread=pmunread+1 WHERE userid=$recipient");
                                                                        $DB->query("INSERT INTO ibf_pm (pmtextid, userid, folderid, messageread) VALUES ('$pmid', '$recipient', '0', '0')");
                                                                }

Below place this code
Code:

        /* Wirte a HiScore Post Start */
$postmessage =        "The HiScore of ".
                                $champ['name'].
                                " in the Game ".
                                $ginfo['gtitle'].
                                " is beatn by ".$sendername.
                                "'".$forumlink.
                                $ibforums->lang['pmnote_text4'].
                                $gid."'".
                                $ibforums->lang['pmnote_text5'].
                                "'".$forumlink.
                                $ibforums->lang['pmnote_text6'].
                                $gid."'".
                                $ibforums->lang['pmnote_text7'];
require_once('./includes/class_dm.php');
require_once('./includes/class_dm_threadpost.php');
$postdm = new vB_DataManager_Post($vbulletin, ERRTYPE_STANDARD);
$postthreadid = '6805';  //Which post to add our Arcadeposting
$postuserid = '129';  // The Userid , which will post our Arcadepost
$postpagetext = $postmessage;
$threadinfo = fetch_threadinfo($postthreadid);
$foruminfo = fetch_foruminfo($threadinfo['forumid']);
$postdm->set_info('forum', $foruminfo);
$postdm->set_info('thread', $threadinfo); 
$postdm->set('threadid', $postthreadid);
$postdm->set('userid', $postuserid);
$postdm->set('pagetext', $postpagetext);
$postdm->set('allowsmilie', 1);
$postdm->set('visible', 1);
$postdm->set('dateline', TIMENOW);
$postdm->save();
unset($postdm); 
require_once(DIR . '/includes/functions_databuild.php');
build_forum_counters($threadinfo['forumid']);
/* Write a Hiscore Post End */

Have fun with it.
Sorry for my poore English.

Fistypoos 10-25-2006 11:15 AM

Wow Mr Zeropage, I love ibProArcade and really would love to see a list of New features coming in the new version.

ShawnV 10-25-2006 11:49 AM

I hope its out today :)

BoYagoob 10-26-2006 03:08 AM

Will we wait for a long time? :(

da420 10-26-2006 03:48 AM

Quote:

Originally Posted by BoYagoob
Will we wait for a long time? :(

We will wait until it's finished. I'd much rather have a well coded and tested product than something released quickly and not done quite as good. I'm sure Mr. ZeroPage will deliver a quality product, as he always has.

chkdgate 10-26-2006 04:02 AM

1 Attachment(s)
Is there a way to get the generic vb message to show up (pictured below) instead of the error message when a visitor hits the arcade button? If this is not possible then what about editing that template and which one?

jessej 10-26-2006 07:57 AM

thanks for the easy install. all works great. install clicked. :) TY

MrZeropage 10-26-2006 08:46 AM

Quote:

Originally Posted by chkdgate
Is there a way to get the generic vb message to show up (pictured below) instead of the error message when a visitor hits the arcade button? If this is not possible then what about editing that template and which one?

in v2.5.7+ it will use standard-vBulletin-dialog :)

ShawnV 10-26-2006 02:17 PM

Whats the ETA on 2.5.7, so I can plan some time off to upgrade and play with it?

chatpalace24 10-26-2006 03:27 PM

ETA is 99,9998 % :)
*g*

chkdgate 10-26-2006 04:59 PM

Quote:

Originally Posted by MrZeropage
in v2.5.7+ it will use standard-vBulletin-dialog :)

That is awesome! I'll just sit back and relax until the much anticipated release.:banana:

flindersredclaw 10-26-2006 06:45 PM

Installed this new version on vb3.6.1 and used the converter on v3arcade 1.07 no issues.

thank you

paldo 10-26-2006 06:56 PM

question .. i have seen on the invision version of this arcade having downloads within the arcade .. is this possible with the vb version of ibproarcade? i have searched around and seen nothing as of yet for it .. please advise .. thanks for the great arcade system ;)

sinisterpain 10-26-2006 11:10 PM

Will the new version support custom usergroups? Right now I have to have registered users allowed and would like to have just our members be able to use the arcade. It appears to only work for primary usergroups.

MrZeropage 10-27-2006 04:47 AM

you can switch from primary to secondary usergroups, this is documented in /arcade/modules/mod_Arcade.php

Ramsesx 10-27-2006 08:47 AM

Quote:

Originally Posted by MrZeropage's sig
waiting for one last feedback before release

Please give him the last feedback :laugh:

juanchi 10-27-2006 09:48 AM

MrZeropage, don't know if it is my feedback you are waiting for but I just send you an email, so far no problem, I know people will hate me for what I'm going to say, but please wait at least another 12 hours since this will give me time to get a good picture of the new version and the load on my server.

lanc3lot 10-27-2006 09:59 AM

Ppl must wait as this time will save them their asses, when they want to install it on their servers. Nice one Mr Zero, i mean for this small beta test period :)

chatpalace24 10-27-2006 10:12 AM

Hopefully the new version is coming this weekend ? Mr.Zero *g*
Give us some little peace of candy :-)

BuzuL 10-27-2006 10:41 AM

Whats Problem ?

http://img82.imageshack.us/img82/8387/ads305znz5.png

Thx ;)

Oddjob 10-27-2006 10:59 AM

I really wish the new release would have been kept quiet so people wouldnt have to sit around on this site waiting.

I would have installed this on a fresh database and had it beta tested 3 days ago......

BoYagoob 10-27-2006 02:38 PM

I will go offshore after 2 days and stay there for two weeks .. I think I will not be able to install the new version .. :(

http://www.wldelft.nl/cons/area/oft/im/offshore-s.jpg

da420 10-27-2006 03:13 PM

Quote:

Originally Posted by BoYagoob
I will go offshore after 2 days and stay there for two weeks .. I think I will not be able to install the new version .. :(

That just means you have something to do when you get back. ;)

hgb 10-27-2006 03:15 PM

Quote:

Originally Posted by chatpalace24

Have fun with it.

can you or anyone else help me clean this up some?

here's what my messages look like and only the click here to play is a link

Quote:

The HiScore of pck in the Game Rat Tazzer is beatn by RedEyezzzzz'http://www.XXXXXX.com/forums/arcade.php?do=stats&gameid=218']Click here[/url] to check the Highscores or here to play the game and claim back the Highscore !


Enjoy the Arcade

emtee 10-27-2006 04:48 PM

We should bet on a release date for 2.5.7+ :D

My bet is Sunday Oct 29th 2006 :)

MrZeropage 10-27-2006 04:51 PM

Last tests are running, this small beta-testperiod is to make sure v2.5.7+ really is the major release I want it to be :)

I now want to present you the release-history for upcoming v2.5.7+ so you all know what you are waiting for:
Quote:

Originally Posted by Release-History of ibProArcade
Bugs fixed:
* cheating (cross-scoring) will be detected and no result saved
* Best Result Ever does not get overwritten by lower Tournament-Results anymore
* Tournaments now work with PNflashgames
* while deleting/uninstalling a Game its Tournaments get removed
* Error-Messages now use their language-file
* Scores of zero do not win if "lowest score wins" in a game
* Score-Separator "space" fixed
* Categories are shown per user/guest depending on his group-permissions
* sending of PMs works with vBulletin 3.6 without any error-message
* Firefox now shows colors while viewing tournament-table
* Avatars show up, even user-uploaded ones stored in filesystem
* several fixes and improvements to the Tournament-System

Improvements:
* improved Database-Performance
* Arcade Mainpage and most other pages are now 100% XHTML 1.0 compatible
* Administrators can enter closed Arcade
* Error-Messages shown in vBulletin-Style
* Tournament-Match which ends with same score will give both players one more try
* after playing a game you directly see your new rank in the game's highscore-table
* Archives/Files in "AdminCP->Add Game" are sorted alphabetically
* Alphabetical Sort-Bar for better Navigation in Arcade mainpage
* new compact postbit-information: trophy only (with mouseover-information)
* Filesize is shown in AdminCP and on mouseover on gameicon in the Arcade
* setup amount of new/popular games via AdminCP to show on mainpage
* added some links in logical places to make navigation more easy at all
* new setting per user: "can create tournaments" (set this to NO to ban single users from this)
* Tournament-Pruning via AdminCP
* League-Updating has improved performance with more logic and less queries

New Feature:
* compatible to new ibProArcade-Games with integrated cheat-security
* automatic Remind- and Disqualify-System in Tournaments (after x days, setup via AdminCP)
* Notification-System in AdminCP: turn each notification on/off and edit its messagetext including variables
* integrated Debug-Mode for faster support (displays 4 vBulletin-Settings + ibProArcade-Version to developer)

So if everything proceeds well you can await the new version tomorrow :cool:

Ramsesx 10-27-2006 05:04 PM

Sounds great, thank you.

M_Portiss 10-27-2006 05:10 PM

Is this going to be a simple upgrade for the people that used the conversion software from v3arcade?

This is going to be great!!!

Thanks!!!!

ed146 10-27-2006 07:19 PM

This Is Hugeeeeee!! :d

da420 10-28-2006 12:58 AM

Thanks Zero for the update, and I cannot wait to see the finished product. :)

Shazz 10-28-2006 02:52 AM

New version tommorow? Is this real?!!

MrZeropage 10-28-2006 05:56 AM

Quote:

Originally Posted by M_Portiss
Is this going to be a simple upgrade for the people that used the conversion software from v3arcade?

Update is as easy as everytime, just upload/replace all files and import the updated product-xml - and you're done :)

Shazz 10-28-2006 06:10 AM

Which date did you plan on releasing the new one? :Ds


All times are GMT. The time now is 04:56 AM.

Powered by vBulletin® Version 3.8.12 by vBS
Copyright ©2000 - 2025, vBulletin Solutions Inc.

X vBulletin 3.8.12 by vBS Debug Information
  • Page Generation 0.04411 seconds
  • Memory Usage 1,835KB
  • Queries Executed 10 (?)
More Information
Template Usage:
  • (1)ad_footer_end
  • (1)ad_footer_start
  • (1)ad_header_end
  • (1)ad_header_logo
  • (1)ad_navbar_below
  • (2)bbcode_code_printable
  • (11)bbcode_quote_printable
  • (1)footer
  • (1)gobutton
  • (1)header
  • (1)headinclude
  • (6)option
  • (1)pagenav
  • (1)pagenav_curpage
  • (4)pagenav_pagelink
  • (5)pagenav_pagelinkrel
  • (1)post_thanks_navbar_search
  • (1)printthread
  • (40)printthreadbit
  • (1)spacer_close
  • (1)spacer_open 

Phrase Groups Available:
  • global
  • postbit
  • showthread
Included Files:
  • ./printthread.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/class_bbcode_alt.php
  • ./includes/class_bbcode.php
  • ./includes/functions_bigthree.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
  • printthread_start
  • pagenav_page
  • pagenav_complete
  • bbcode_fetch_tags
  • bbcode_create
  • bbcode_parse_start
  • bbcode_parse_complete_precache
  • bbcode_parse_complete
  • printthread_post
  • printthread_complete