Jump to content



Most Liked Content


#468 Advertising banner in iArcade

Posted by najaru on 07 September 2011 - 07:21 AM

You can add many advertising banner in your iArcade with template edit:



BANNER IN GAME SCREEN

Look&Feel - Manage skin set & Template - Select your skin - skin_iArcade - playGame

find this code

        <if test="$this->request['tab'] == 'comments'">
   	     <div id='tab_viewComments' class='ipsBox'>
   		     <div class='ipsBox_container ipsPad'>
   			     {$comments}
   		     </div>
   	     </div>
        <else />
   	     <div id='tab_viewGame' class='ipsBox'>
   		     <div class='ipsBox_container ipsPad' style='text-align:center;'>
   			     <object type="application/x-shockwave-flash" data="{$gameInfo['gameLink']}" width="{$gameInfo['width']}" height="{$gameInfo['height']}" quality="high" bgcolor="#000000">
   				     <param name="movie" value="{$gameInfo['gameLink']}" />
   				     <param name="allowFullScreen" value="false" />
   			     </object>
   		     </div>
   	     </div>
   	     <if test="$this->settings['sl_enable']">
   		     <br />
   		     <div class='clear clearfix left'>
   			     {IPSLib::shareLinks( $gameInfo['name'], array( 'skip' => array( 'print', 'download' ) ) )}
   		     </div>
   	     </if>
        </if>

and add your banner code BEFORE or/and  AFTER this code

banner1.jpg

---------------------------------------------------------------------------------------------------------------------


BANNER IN CP GAME LIST

Open gamesCP and find

        	<div class='ipsPad'>
   		     <div class='ipsLayout ipsLayout_withright ipsLayout_largeright'>
   			     <div class='ipsLayout_content'>
 
   				     <h2 class='maintitle'>{$this->lang->words['iarcade_cp_topgames']}</h2>

and add your banner code AFTER this code

banner2.jpg

-----------------

if you want banner in right coloumn find

   					     	</table>
   					     </div>
   				     </div>
   			     </div>
   			     <div class='ipsLayout_right'>
 
 

and add your banner code AFTER this code

banner3.jpg

--------------------------------------------------------------------------------------------------------------------------------


#830 Failed to move file/open stream [...] "Is a directory" [...]

Posted by Bclay on 09 January 2012 - 08:56 PM

After parsing through the code, I think I have a pretty simple fix.  From what it looks like, the code is hitting an error on extraction when it gets to the gamedata folder.  This is in the loop that starts on line 335 in admin/applications_addon/other/iArcade/modules_admin/games/import.php.  When it reaches the gamedata folder in the .tar file, fopen fails since the file it intends to write to is a directory (hence the error message).  The easiest fix for this is just to use the php function is_dir() to test if it's a directory and if it is, skip over the fopen and fwrite.

I've made the above change on my forums and games that I previously couldnt install now appear to be working fine.  I changed lines 344-347 to the following in my import.php file:

if(!is_dir($to.$d[fn])) {
	$o2=fopen($to.$d[fn],"w");
	if(!$o2) return false;
	if ($d[size]) fwrite($o2,fread($o,$d[size]));
	fclose($o2);
 }


I don't think this will cause any issues anywhere else; no data should need to be written for the folder since all it is is a folder (and i think an unused one in iArcade at that).

Also just a note for anyone else who had been getting this error, you'll need to go into your database and clean up the ipb_iarcade_tars table to remove the games that you tried to install before.  Otherwise you'll get an error when you try to install them again.  This might be possible throught ACP, but since they didn't get fully installed I'm not positive that you'll have the option to remove them from the DB.  You might have to do the same thing for the files too, though these should just get overwritten when you install the game again.

Let me know if this works for everyone else, and if you have any questions just post them here.


#4 iArcade 1.2 Released!

Posted by Collin on 31 July 2011 - 04:58 AM

iArcade 1.2 is mainly a compatibility and interface refresh for the new IP.Board 3.2.0.

You can now download it from the IPS Marketplace, and try it out for yourself right here on our forums.


#1274 Last / Best score mod

Posted by Josh D. on 14 April 2012 - 05:16 AM

Here's the mod.

iArcade-scores.jpg

Tested on: 1.2 Beta 2 / 1.2 Beta 3 / 1.3 Beta 1

File edit:

Open ./admin/applications_addon/other/iArcade/modules_public/arcade/play.php

Find:
			/* See if the user likes this game */
			if( $this->memberData['member_id'] )
			{
				$gameInfo['member_fav'] = $this->DB->buildAndFetch( array( 		
												'select'	=> '*',
												'from'		=> 'iarcade_favs',
												'where'		=> "member_id = {$this->memberData['member_id']} AND gameid = {$this->request['game']}"
											  ) );
			}

Add below:
/* Members best score */
			$gameInfo['member_score']	= $this->DB->buildAndFetch( array(
											'select'	=> '*',
											'from'		=> 'iarcade_scores',
											'where'		=> "member_id = {$this->memberData['member_id']} AND game_id = {$this->request['game']}",
											'order'		=> "score DESC",
											'limit'		=> array( 0, 1 )
										) );
										
			/* Members last score */
			$gameInfo['member_last_score']	= $this->DB->buildAndFetch( array(
											'select'	=> '*',
											'from'		=> 'iarcade_scores',
											'where'		=> "member_id = {$this->memberData['member_id']} AND game_id = {$this->request['game']}",
											'order'		=> "time DESC",
											'limit'		=> array( 0, 1 )
										) );
										
			/* Last game score */
			$gameInfo['last_score'] = $this->DB->buildAndFetch( array( 		
											'select'	=> '*',
											'from'		=> 'iarcade_scores',
											'where'		=> "game_id = {$this->request['game']}",
											'order'		=> "time DESC",
											'limit'		=> array( 0, 1 )
										) );
											  
			/* Sort out the member profile */
			$gameInfo['last_score']['member']				= IPSMember::load( $gameInfo['last_score']['member_id'] );
			
			/* Photo */
			$gameInfo['last_score']['member']				= IPSMember::buildProfilePhoto( $gameInfo['last_score']['member']['member_id'] );
			
			$gameInfo['last_score']['score']				= str_replace( '<#SCORE#>', $gameInfo['last_score']['score'], $this->lang->words['iarcade_cp_score'] );

Template edit:
Template > skin_iArcade > playGame

Find:
<span class='desc'>{$gameInfo['highscore']['score']}</span><br />
							<span class='desc ipsType_smaller'>{parse date="$gameInfo['highscore']['time']" format="short" relative="true"}</span>
						</div>
					</li>
				</ul>
			</div>
		</if>

Add below:
<if test="$gameInfo['last_score']['score'] && $gameInfo['last_score']['time']">
			<div class='ipsSideBlock'>
				<h3>Most Recent Score</h3>
				<ul class='ipsList_withminiphoto'>
					<li class='clearfix'>
						<a href="{parse url="showuser={$gameInfo['last_score']['member']['member_id']}" template="showuser" base="public" seotitle="{$gameInfo['last_score']['member']['members_seo_name']}"}" title='' class='ipsUserPhotoLink left'>
							<img src='{$gameInfo['last_score']['member']['pp_small_photo']}' alt='' class='ipsUserPhoto ipsUserPhoto_medium' />
						</a>
						<div class='list_content' style='margin-left: 60px;'>
								<a hovercard-ref="member" hovercard-id="{$gameInfo['last_score']['member']['member_id']}" class="_hovertrigger url fn" href="{parse url="showuser={$gameInfo['last_score']['member']['member_id']}" template="showuser" base="public" seotitle="{$gameInfo['last_score']['member']['members_seo_name']}"}">{$gameInfo['last_score']['member']['members_display_name']}</a><br />
							<span class='desc'>{$gameInfo['last_score']['score']}</span><br />
							<span class='desc ipsType_smaller'>{parse date="$gameInfo['last_score']['time']" format="short" relative="true"}</span>
						</div>
					</li>
				</ul>
			</div>
		</if>
		<if test="$gameInfo['member_score']['score'] && $gameInfo['member_last_score']['score']">
			<div class='ipsSideBlock'>
				<h3>My Scores</h3>
				<ul class='ipsList'>
					<li class='clearfix'>
							<span class='desc'>Best Score: <b>{$gameInfo['member_score']['score']}</b> - <i>{parse date="$gameInfo['member_score']['time']" format="short" relative="true"}</i></span><br />
							<span class='desc'>Last Score: <b>{$gameInfo['member_last_score']['score']}</b> - <i>{parse date="$gameInfo['member_last_score']['time']" format="short" relative="true"}</i></span><br />
					</li>
				</ul>
			</div>
		</if>

Since posts require approval it would probably be best to keep support to this topic, I just wanted the mod here so it would be easier to find for now.


#957 iArcade Beta 3 Build 91

Posted by Collin on 21 February 2012 - 02:58 PM

iArcade Beta 3 Build 91 has now been released for download in the IPS Marketplace: http://community.inv...467-iarcade-12/

Changes in this update include bug fixes, improved speed, FURL enhancements, an improved admin interface, hook updates, language updates, and more.

Thank you to everyone who has contributed to this project, with special thanks to Axel, Lewis, and Josh.


#7087 Downloads Not Working???

Posted by YoungGunerGaming on 25 January 2013 - 05:00 AM

i try downloading the games but they are not working..anyone have any suggestions other then saying i dont have enough posts!!!




#7079 Helicopter

Posted by cadmium on 19 January 2013 - 05:32 AM

Been looking everywhere for a working version of Helicopter but no luck :(

 

The downloads on this site are not working either, anyone have one they can share :D?




#5 Welcome Back!

Posted by Collin on 31 July 2011 - 05:01 AM

Hey Everyone - Welcome Back! :)

The old community is more or less gone, so we're relocating to here.


We've got a new registration system, a new feedback flow, and everything is much improved.



To previous supporters:
You guys are awesome. Drop me a PM and I'll restore your Supporter access. I'll need your email address from the old system, or your PayPal transaction ID. Right now the only perk is that it removes the one ad on this website, but I'm working on more perks.


#75 Where can I download games?

Posted by Lewis P on 02 August 2011 - 07:05 PM

Games for iArcade use the long established ibProArcade scoring system, supporting both v2 and v32 types of games.

These games can be downloaded from across the internet, but the most popular destination is http://www.ibpdownloads.com/, which is the largest repository of compatible games around!

We also offer select games for download right here on the iArcade community. Simply click the "Downloads" button above!

If you would like a large selection of random games installed for you, check out the Game Pack Installation service in the iArcade Store.


#743 working with ipb 3.2.3?

Posted by jazman on 08 December 2011 - 10:55 PM

is iArcade working with v3.2.3 yet? as im getting a lot of database driver errors with it

Jaz


#7204 iArcade 1.3 Beta 1 Editor Patch

Posted by Collin on 23 February 2013 - 09:12 PM

Some users have reported issues with the updated editor in IP.Board 3.4, causing them to be unable to edit a game's description. We have released a patch for iArcade 1.3 to support this change.

 

 

To apply the patch, redownload iArcade from the IPS Marketplace at http://community.inv...374-iarcade-13/

 

Re-upload \admin\applications_addon\other\iArcade\modules_admin\games\gameedit.php 

Overwrite the existing file with the new one contained in the download.

 

There are no other changes in this update - this is simply a patch to our game editor due to the changes in the IP.Board editor. 




#7190 How to delete scores

Posted by cadmium on 14 February 2013 - 03:08 AM

Hey is there any way to delete all scores or perhaps even individual scores?

 

I'm noob at SQL, but I do have access to the phpmyadmin. I just don't know what to do :E

 

Thanks




#7131 moving games into new cat error

Posted by Gary on 06 February 2013 - 01:37 PM

Hi all im sorry if this has been dealt with elswhere but could not find it im running ipb 3.4  and iarcade 1.3 beta 1 now i can make a new cat fine but when i try to move a game into that section i get this error,

 

 

Fatal error: Call to undefined method parseBbcode::processRawPost() in /home/immortal/public_html/forum/admin/applications_addon/other/iArcade/modules_admin/games/gameedit.php on line 145

 

 

any help would be great thanks




#7089 How do i add new games to the arcade

Posted by YoungGunerGaming on 27 January 2013 - 11:29 PM

i really would like to know how to add games to the arcade....i tried to download one of the games here and its not working can someone help me




#7082 Young Gunner Gaming

Posted by YoungGunerGaming on 25 January 2013 - 04:58 AM

hey guys just posting about an xbox live community up and going looking for sponsors we are pretty good already have one sponsor that pays for our ipb website.if you have xbox and would like to join please feel free to contact me i will defiantly get you in here we have 100 members and do microsoft point tournements all the time :)



We have youtube ..cod elite...facebook and we are looking for sponsors so if anyone can hook us up id greatly appreciate it




#1455 Hey :)

Posted by Mur on 23 June 2012 - 11:38 AM

Lets all talk, whats up?


#1423 Blank page when installing game

Posted by MetalFrog on 28 May 2012 - 04:23 PM

Using 1.3 beta 1 on IPB 3.3, getting blank pages.


#1395 5 posts per file?

Posted by ferrariGTS on 19 May 2012 - 03:35 PM

Its is for free...don't forget...

I do like it and yes I will be back for more games...why not


#1341 this site rocks

Posted by Collin on 04 May 2012 - 05:37 AM

I agree, this site looks good! (but needs a skin...not the default)

It's intentionally vanilla to demonstrate IP.Board and iArcade.


#1091 Inappropriate

Posted by Bmelcher on 10 March 2012 - 01:28 AM

I would just like to say that I have made the 70th post. Youre welcome for getting rid of the 69 :)


Google Analytics Alternative