The forum of the forums
Would you like to react to this message? Create an account in a few clicks or log in to continue.

Arcade leaderboard help

3 posters

Go down

In progress Arcade leaderboard help

Post by Giammaio32 November 23rd 2012, 8:37 pm

Hi there, well I'v had the forum running for like a year.

Wich is http://jiyuu-kaishi.forumotion.co.uk/

Yeah a bit childish we are, lol.

I was just wondering if implementing arcade games and leader board is possible?


Last edited by Giammaio32 on November 24th 2012, 1:26 am; edited 2 times in total
avatar
Giammaio32
Forumember

Posts : 27
Reputation : 2
Language : English

Back to top Go down

In progress Re: Arcade leaderboard help

Post by Kaizer Lee November 23rd 2012, 8:38 pm

You mean like a ranking table or something? If yes, it is. Use a table code for it and manually install their username and modifying it.
Kaizer Lee
Kaizer Lee
Active Poster

Female Posts : 1064
Reputation : 54
Language : English, Tagalog, Spanish and Chinese
Location : Philippines

http://www.medievalchaos.net/forum

Back to top Go down

In progress Re: Arcade leaderboard help

Post by Giammaio32 November 23rd 2012, 8:39 pm

Wowowow, way too quick, You're talking japanese, I have no clue whatsoever, about coding or stuff like that ^^
avatar
Giammaio32
Forumember

Posts : 27
Reputation : 2
Language : English

Back to top Go down

In progress Re: Arcade leaderboard help

Post by Kaizer Lee November 23rd 2012, 8:42 pm

Well, you can just do this. For example, you'd like to rank your members from best to weakest. You can create an HTML page for it or post it in a new topic you can provide.

Here's a sample code for it.

Code:
<table>
<tr>
<td>Master</td>
<td>#1</td>
</tr>
<tr>
<td>Master</td>
<td>#1</td>
</tr><tr>
<td>Master</td>
<td>#1</td>
</tr><tr>
<td>Master</td>
<td>#1</td>
</tr>
</table>

You can also use th instead of td for the code I provided.

Edit: http://w3schools.com/html/html_tables.asp

Use that as a guide to style tables.
Kaizer Lee
Kaizer Lee
Active Poster

Female Posts : 1064
Reputation : 54
Language : English, Tagalog, Spanish and Chinese
Location : Philippines

http://www.medievalchaos.net/forum

Back to top Go down

In progress Re: Arcade leaderboard help

Post by SLGray November 23rd 2012, 8:49 pm

Please change the title of your topic, that is related to your question/issue, so that other users will be able to find their question/issue using the search engine.

Arcade:

https://help.forumotion.com/t1471-flash-arcade-v1-for-forumotion-forums

https://help.forumotion.com/t131-flash-games-on-your-board


Arcade leaderboard help Slgray10

When your topic has been solved, ensure you mark the topic solved.
Never post your email in public.
SLGray
SLGray
Administrator
Administrator

Male Posts : 51463
Reputation : 3519
Language : English
Location : United States

https://forumsclub.com/gc/128-link-directory/

Back to top Go down

In progress Re: Arcade leaderboard help

Post by Giammaio32 November 23rd 2012, 8:55 pm

You guys are so quick thank you so much.
avatar
Giammaio32
Forumember

Posts : 27
Reputation : 2
Language : English

Back to top Go down

In progress Re: Arcade leaderboard help

Post by Kaizer Lee November 23rd 2012, 9:06 pm

I'll disable pm's soon ._.

Anyway, to better explain your question via PM. Here's how you do it. Create a new topic concerning it and make it a global announcement, sticky, etc. to whatever liking you want.

And then make sure you enabled HTML to be posted in your site.

Here's a code provided, just increase the number of td codes to how many players you'd like to add to the ranking.

Code:
<table>
<tr>
<td>Player 1</td>
<td>Rank #1</td>
</tr>
<tr>
<td>Player 1</td>
<td>Rank #1</td>
</tr><tr>
<td>Player 1</td>
<td>Rank #1</td>
</tr><tr>
<td>Player 1</td>
<td>Rank #1</td>
</tr><tr>
<td>Player 1</td>
<td>Rank #1</td>
</tr>
</table>

But if you'd like to style the background a bit for the tables or the color, you can do this as an example:

Code:
<table border="2" bordercolordark="black" bordercolorlight="black" width="1000" height="50">
    <tr>
        <th bgcolor="#1F1F1F"><h4><center><marquee><span><font face="arial" color="#5CDE28">Welcome to Medieval Chaos Academy!</font></marquee></span></center></h4> </th> 
    </tr>
</table>

If you'll do it by a multiple, here's another example:

Code:
<table border="5" bordercolordark="red" bordercolorlight="black" width="200" height="300">
    <tr>
        <th bgcolor="#383838"><a href="http://twitter.com/" target="_blank"><img src="http://i.imgur.com/S4sP3.png" alt="free forum" title="Twitter" width="50" height="50" /></a>       </th>
    <tr>   
    <th bgcolor="#383838"><a href="http://www.facebook.com/" target="_blank"><img src="http://i.imgur.com/2aUrX.png" alt="free forum" title="Facebook" width="50" height="50" /></a>  </th>
    <tr>   
    <th bgcolor="#383838"><a href="http://www.myspace.com/" target="_blank"><img src="http://i.imgur.com/4nRBN.png" alt="free forum" title="MySpace" width="50" height="50" /></a>    </th>
  </div>
  </table>

The 2nd one is a moving word table code or whatever it's called. The 3rd one was styled already.
Kaizer Lee
Kaizer Lee
Active Poster

Female Posts : 1064
Reputation : 54
Language : English, Tagalog, Spanish and Chinese
Location : Philippines

http://www.medievalchaos.net/forum

Back to top Go down

In progress Re: Arcade leaderboard help

Post by Giammaio32 November 24th 2012, 1:01 am

I still have no clue what to do with these codes... scratch
avatar
Giammaio32
Forumember

Posts : 27
Reputation : 2
Language : English

Back to top Go down

In progress Re: Arcade leaderboard help

Post by Kaizer Lee November 24th 2012, 9:03 am

Frances Kaizer wrote:I'll disable pm's soon ._.

Anyway, to better explain your question via PM. Here's how you do it. Create a new topic concerning it and make it a global announcement, sticky, etc. to whatever liking you want.

And then make sure you enabled HTML to be posted in your site.

Here's a code provided, just increase the number of td codes to how many players you'd like to add to the ranking.

Code:
<table>
<tr>
<td>Player 1</td>
<td>Rank #1</td>
</tr>
<tr>
<td>Player 1</td>
<td>Rank #1</td>
</tr><tr>
<td>Player 1</td>
<td>Rank #1</td>
</tr><tr>
<td>Player 1</td>
<td>Rank #1</td>
</tr><tr>
<td>Player 1</td>
<td>Rank #1</td>
</tr>
</table>

But if you'd like to style the background a bit for the tables or the color, you can do this as an example:

Code:
<table border="2" bordercolordark="black" bordercolorlight="black" width="1000" height="50">
    <tr>
        <th bgcolor="#1F1F1F"><h4><center><marquee><span><font face="arial" color="#5CDE28">Welcome to Medieval Chaos Academy!</font></marquee></span></center></h4> </th> 
    </tr>
</table>

If you'll do it by a multiple, here's another example:

Code:
<table border="5" bordercolordark="red" bordercolorlight="black" width="200" height="300">
    <tr>
        <th bgcolor="#383838"><a href="http://twitter.com/" target="_blank"><img src="http://i.imgur.com/S4sP3.png" alt="free forum" title="Twitter" width="50" height="50" /></a>       </th>
    <tr>   
    <th bgcolor="#383838"><a href="http://www.facebook.com/" target="_blank"><img src="http://i.imgur.com/2aUrX.png" alt="free forum" title="Facebook" width="50" height="50" /></a>  </th>
    <tr>   
    <th bgcolor="#383838"><a href="http://www.myspace.com/" target="_blank"><img src="http://i.imgur.com/4nRBN.png" alt="free forum" title="MySpace" width="50" height="50" /></a>    </th>
  </div>
  </table>

The 2nd one is a moving word table code or whatever it's called. The 3rd one was styled already.

Already posted everything you need :/.
Kaizer Lee
Kaizer Lee
Active Poster

Female Posts : 1064
Reputation : 54
Language : English, Tagalog, Spanish and Chinese
Location : Philippines

http://www.medievalchaos.net/forum

Back to top Go down

In progress Re: Arcade leaderboard help

Post by Giammaio32 November 24th 2012, 10:38 am

I previewed them individually, but I'm meant to combine them?
avatar
Giammaio32
Forumember

Posts : 27
Reputation : 2
Language : English

Back to top Go down

In progress Re: Arcade leaderboard help

Post by Kaizer Lee November 24th 2012, 10:48 am

Each one is able to use each code fine. You can just add more table codes to anyone of these and have them as one so that you can reedit them multiple times to fix the ranking.
Kaizer Lee
Kaizer Lee
Active Poster

Female Posts : 1064
Reputation : 54
Language : English, Tagalog, Spanish and Chinese
Location : Philippines

http://www.medievalchaos.net/forum

Back to top Go down

In progress Re: Arcade leaderboard help

Post by Giammaio32 November 24th 2012, 7:10 pm

Where would the ranking appear, don't wanna promote anything, but i was kinda looking into something similar to this:

Arcade leaderboard help 2ir44cp

Arcade leaderboard help 24b4weu
avatar
Giammaio32
Forumember

Posts : 27
Reputation : 2
Language : English

Back to top Go down

In progress Re: Arcade leaderboard help

Post by Kaizer Lee November 25th 2012, 1:16 am

That's almost the same code I used, but I think that's co-related to an external software.

Anywho, the table's got th and td combined, 1 th and 3 td's to be precised in one column per person, so it'd look like something like this:

Code:
<table>
<tr>
<th></th>
<td></td>
<td></td>
<td></td>
</tr>
</table>

As for the pictures related with it? You can just style it like that, for example:

Code:
<table>
<tr>
<th><img src="IMG LINK" /><a href="LINK">Blah blah</a><br /></th>
<td>Lahlahalha</td>
<td>Lahlahalha</td>
<td>Lahlahalha</td>
</tr>
</table>
Kaizer Lee
Kaizer Lee
Active Poster

Female Posts : 1064
Reputation : 54
Language : English, Tagalog, Spanish and Chinese
Location : Philippines

http://www.medievalchaos.net/forum

Back to top Go down

Back to top

- Similar topics

 
Permissions in this forum:
You cannot reply to topics in this forum