Talk Arcades: Forum for Arcade Webmasters    

  Talk Arcades > Arcades > Scripts & Software > onArcade

Welcome to Talk Arcades, the premier forum for arcade webmasters.

You are currently viewing our boards as a guest. By joining our community you will be able to make posts, communicate privately with other arcade webmasters and participate in our Live Marketplace. Registration is easy, so please join us today!

Reply
 
LinkBack Thread Tools Display Modes
Old 06-18-2006, 12:15 PM   #11 (permalink)
Duality
Preferred Member
 
Join Date: Jun 2006
Posts: 185
Duality is on a distinguished road


Default

I don't want to be using credit card, especially since I don't have one. I haven't even heard of some of the payment processors.
Duality is offline  
Digg this Post!
Reply With Quote
Old 06-18-2006, 06:03 PM   #12 (permalink)
Hans
onArcade Staff
Full Member
 
Hans's Avatar
 
Join Date: Jun 2006
Posts: 50
Hans is on a distinguished road


Default

Quote:
Originally Posted by Duality
I don't want to be using credit card, especially since I don't have one. I haven't even heard of some of the payment processors.
Sorry! There is nothing I can do about it, I live in Estonia, but PayPal hates Estonia, so I have this 'Send only' account.
But it seems like Google is getting its payment system out, so I'll add it as soon as possible.
Oo... and if you live in EU then you shouldn't have any problems with MoneyBookers, they have bank account in every state, so it is really easy to upload and withdraw funds. I have been using it for some good years now and I like it a lot
Hans is offline  
Digg this Post!
Reply With Quote
Old 06-19-2006, 04:53 AM   #13 (permalink)
Creature
Preferred Member
 
Join Date: Jun 2006
Posts: 136
Creature is on a distinguished road


Default

Money bookers are great but nobody I know has one.

Most of the people have paypal and paypal hates Cyprus too so I have sent only account like Hans.

I wish there was something that much people have it and use like paypal but to support more countries.
__________________
www.cheatstomb.com The place for your cheats
Join the Best Webmasters Forum and chat with other webmasters.
www.bestforumer.com
Creature is offline  
Digg this Post!
Reply With Quote
Old 06-19-2006, 07:08 AM   #14 (permalink)
Duality
Preferred Member
 
Join Date: Jun 2006
Posts: 185
Duality is on a distinguished road


Default

Quote:
Originally Posted by Hans
Sorry! There is nothing I can do about it, I live in Estonia, but PayPal hates Estonia, so I have this 'Send only' account.
But it seems like Google is getting its payment system out, so I'll add it as soon as possible.
Oo... and if you live in EU then you shouldn't have any problems with MoneyBookers, they have bank account in every state, so it is really easy to upload and withdraw funds. I have been using it for some good years now and I like it a lot
I live in Canada. Do they accept Moneybookers? I already have a bank account and I might be able to use it.
Duality is offline  
Digg this Post!
Reply With Quote
Old 09-20-2007, 10:39 AM   #15 (permalink)
izo4ever
New Member
 
Join Date: Sep 2007
Posts: 5
izo4ever is on a distinguished road


Default

Quote:
Originally Posted by admin View Post
1 Simply Edit and Your Site could have Random Arcade Games on the Index Page

Open up includes/functions.php

Find (Should be around line 103):

Replace With:

By doing this, You'll have Random Games shown in each Category in your arcade..
This hack don't work in Onarcade 1.1
Any solution?
izo4ever is offline  
Digg this Post!
Reply With Quote
Old 09-20-2007, 11:53 AM   #16 (permalink)
brendgard
Gamer FX Staff
Senior Member
 
brendgard's Avatar
 
Join Date: Oct 2006
Posts: 674
brendgard is on a distinguished road


Default

It's going to be the same principle. Find the code that accesses the database for that part of the script, and make it an order by rand() query.
__________________
http://gamersgo.com A list of arcade related sites, add yours.
http://auntiefondy.com Lists, add your site.
http://kbsplace.com
brendgard is offline  
Digg this Post!
Reply With Quote
Old 09-21-2007, 04:19 AM   #17 (permalink)
izo4ever
New Member
 
Join Date: Sep 2007
Posts: 5
izo4ever is on a distinguished road


Default

brendgard

I try many time to hack it by myself. But it doesn't work.
Can you show it to me?
Here I paste the code

Code:
//Display categories function displaycategories($userStatus) { if ($userStatus == '1') { $result = mysql_query("SELECT name, catid FROM categories WHERE status = '1' && parentcategory = '0' ORDER BY catorder, name"); } else { $result = mysql_query("SELECT name, catid FROM categories WHERE status = '1' && permissions = '1' && parentcategory = '0' ORDER BY catorder, name"); } if (mysql_num_rows($result)) { while($row = mysql_fetch_array($result)) { $categoryname = $row['name']; $categoryid = $row['catid']; if (isset($separator)) { echo ' | '; } echo '<a href="'.categoryurl($categoryid,$categoryname).'" target="_self" class="header-link">'.$categoryname.'</a> '; $separator = "1"; } unset ($separator); } } //Display most popular files function displaymostpopular() { global $maxmostpopular; $result = mysql_query("SELECT title, fileid, timesplayed FROM files WHERE status = '1' ORDER BY timesplayed DESC LIMIT $maxmostpopular"); if (mysql_num_rows($result)) { while($row = mysql_fetch_array($result)) { $mpfiletitle = $row['title']; $mpfileid = $row['fileid']; $mptimesplayed = number_format($row['timesplayed']); ?> <a href = "<?php echo fileurl($mpfileid,$mpfiletitle); ?>" target="_self"><?php echo $mpfiletitle; ?></a> <br /> <?php } } else { echo "No files"; } } //Display newest files function displaynewest() { global $maxnewest; $result = mysql_query("SELECT title, fileid, timesplayed FROM files WHERE status = '1' ORDER BY fileid DESC LIMIT $maxnewest"); if (mysql_num_rows($result)) { while($row = mysql_fetch_array($result)) { $nfiletitle = $row['title']; $nfileid = $row['fileid']; $ntimesplayed = number_format($row['timesplayed']); ?> <a href = "<?php echo fileurl($nfileid,$nfiletitle); ?>"><?php echo $nfiletitle; ?></a> <br /> <?php } } else { echo "No files"; } }
izo4ever is offline  
Digg this Post!
Reply With Quote
Old 09-21-2007, 11:59 AM   #18 (permalink)
brendgard
Gamer FX Staff
Senior Member
 
brendgard's Avatar
 
Join Date: Oct 2006
Posts: 674
brendgard is on a distinguished road


Default

Not being too familiar with the script I would not promise anything, but it looks like if you went to the function displaynewest() and changed it from

ORDER BY fileid DESC

to

ORDER BY rand()

leaving the rest of the code one the line the same, it would do what you wanted it to do.

BACKUP BACKUP BACKUP, before you try it though lol.
__________________
http://gamersgo.com A list of arcade related sites, add yours.
http://auntiefondy.com Lists, add your site.
http://kbsplace.com
brendgard is offline  
Digg this Post!
Reply With Quote
Old 09-22-2007, 05:32 AM   #19 (permalink)
izo4ever
New Member
 
Join Date: Sep 2007
Posts: 5
izo4ever is on a distinguished road


Default

brendgard
It doesn't work. If you changed displaynewest() it will randomize Newest Files not Front Page games
izo4ever is offline  
Digg this Post!
Reply With Quote
Old 09-22-2007, 01:03 PM   #20 (permalink)
brendgard
Gamer FX Staff
Senior Member
 
brendgard's Avatar
 
Join Date: Oct 2006
Posts: 674
brendgard is on a distinguished road


Default

OK, like I said I'm not familiar with that script. Which ever SQL query feeds the category columns on the front page is the one that needs to be edited then. Just looking at the code posted I don't see another one that looks like it's it. Perhaps it's in a different file?
__________________
http://gamersgo.com A list of arcade related sites, add yours.
http://auntiefondy.com Lists, add your site.
http://kbsplace.com
brendgard is offline  
Digg this Post!
Reply With Quote
Reply


Thread Tools
Display Modes

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

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are On
Pingbacks are On
Refbacks are On


Similar Threads
Thread Thread Starter Forum Replies Last Post
Arcade Script Reviews arcadillo Scripts & Software 6 08-08-2008 02:35 AM
PR5 Arcade Site 5,000 UV Doug Link Exchanges 9 04-10-2008 02:51 PM
Places to submit games webbom Marketing 1 07-25-2007 06:16 AM
Exchange Hand Coded Front Page Links diex Link Exchanges 2 05-11-2007 05:55 AM
Have an Arcade? Need Games? 2229 Games Inside!!! admin Game Packs 3 09-15-2006 10:30 AM


All times are GMT -6. The time now is 12:26 AM.


Powered by vBulletin® Version 3.6.3
Copyright ©2000 - 2008, Jelsoft Enterprises Ltd.
SEO by vBSEO 3.0.0 RC6
© TalkArcades.com
Forum - Register - Calendar - Memberlist - FAQ - Search