Forumotion Arcade Highscores
+2
brandon_g
Flame Melody
6 posters
Page 1 of 1
Forumotion Arcade Highscores
Hello, I am wondering if there's any method to create an arcade in the forum while keeping track of highscores? Like, I recall in phpBB or something there's a system that shows the top three users highscores and even displays what games they're the number 1 in the forum in their posts. During every game played, once over I believe, you can submit your highscore and view the list of where your position is against other members.
I would love to know if such a thing (near or the same) to keep tracking of highscores of members available on forumotion (phpBB 2).
EDIT: I know how I may create an arcade, but what I'm asking here for is about keeping track of highscores .
I would love to know if such a thing (near or the same) to keep tracking of highscores of members available on forumotion (phpBB 2).
EDIT: I know how I may create an arcade, but what I'm asking here for is about keeping track of highscores .
Re: Forumotion Arcade Highscores
Hello,
By default options no there is not a way. It might be possible to do with code though. I would wait for @Ange Tuteur and/or @JScript to reply, so they can assess if this is possible or not.
-Brandon
By default options no there is not a way. It might be possible to do with code though. I would wait for @Ange Tuteur and/or @JScript to reply, so they can assess if this is possible or not.
-Brandon
Remember to mark your topic when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?
Team Leader
Review Section Rules | Request A Review | Sticker Points
Re: Forumotion Arcade Highscores
Hello everybody.
@brandon_g thank you, I really do not like to say that something is not possible to be done without first trying, at first it is indeed possible to be done, even if it is using a topic as database!
Or even using a free server that supports PHP, then my opinion is: YES
Let's wait for others to comment,
JS
@brandon_g thank you, I really do not like to say that something is not possible to be done without first trying, at first it is indeed possible to be done, even if it is using a topic as database!
Or even using a free server that supports PHP, then my opinion is: YES
Let's wait for others to comment,
JS
Re: Forumotion Arcade Highscores
So what would you suggest @JScript? Is there a script that can be written?
Remember to mark your topic when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?
Team Leader
Review Section Rules | Request A Review | Sticker Points
Re: Forumotion Arcade Highscores
@brandon_g
Yes, of course! But let's wait for the opinion of other members ok?
Different opinions can define a better way to go!
@Flame Melody
let's wait for the opinion of other members ok?
JS
Yes, of course! But let's wait for the opinion of other members ok?
Different opinions can define a better way to go!
@Flame Melody
let's wait for the opinion of other members ok?
JS
Re: Forumotion Arcade Highscores
What other member's opinions are we waiting on? Flame Melody is the topic starter and no one else has replied to this topic other me and you.
P.s @JScript congrats on the helper rank man .
-Brandon
P.s @JScript congrats on the helper rank man .
-Brandon
Remember to mark your topic when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?
Team Leader
Review Section Rules | Request A Review | Sticker Points
Re: Forumotion Arcade Highscores
Yes, but that I already knew, that's why I gave my opinion here: https://help.forumotion.com/t140941-forumotion-arcade-highscores#959629brandon_g wrote:What other member's opinions are we waiting on? Flame Melody is the topic starter and no one else has replied to this topic other me and you.
I just thought that others, not only the staff, but anyone could also give an opinion!
Thank you friend.brandon_g wrote:P.s @JScript congrats on the helper rank man
What you want is quite possible, just that it may require considerable time, at least for me because I have other projects in progress ...Flame Melody wrote:Bumpity-Bump .
JS
Re: Forumotion Arcade Highscores
All right so I suppose I'll await a response from... uh... you specifically in this thread ?
Re: Forumotion Arcade Highscores
Hello! Javascript coder here.
Assuming that you have no strict requirements, I would venture that you could, potentially, make some javascript which mimics a user creating a post - including a high score and the game they're playing. This is made several times easier if the game is written in javascript and on the same domain.
However, this method would not be 100% cheat-proof without using some element of PHP (which I am not an expert on, I'm afraid). You can certainly make it hard for the average person to cheat using this method, though.
I do want to eventually look into something akin to this. (I'm talking in the magnitude of years, not hours).
I'll help in any way possible.
p.s. I'd be interested to see your knowledge on creating an arcade within the forum.
Regards,
-Poly
Assuming that you have no strict requirements, I would venture that you could, potentially, make some javascript which mimics a user creating a post - including a high score and the game they're playing. This is made several times easier if the game is written in javascript and on the same domain.
However, this method would not be 100% cheat-proof without using some element of PHP (which I am not an expert on, I'm afraid). You can certainly make it hard for the average person to cheat using this method, though.
I do want to eventually look into something akin to this. (I'm talking in the magnitude of years, not hours).
I'll help in any way possible.
p.s. I'd be interested to see your knowledge on creating an arcade within the forum.
Regards,
-Poly
Last edited by Polyducks on June 10th 2015, 1:00 pm; edited 1 time in total (Reason for editing : p.s.)
Polyducks- New Member
- Posts : 11
Reputation : 1
Language : English
Re: Forumotion Arcade Highscores
you would have to Note that we do have a limit still on the JS system so the code can not be to over powering or it may hit our server limits.
Just a thought to keep in mind
APE
Just a thought to keep in mind
APE
Re: Forumotion Arcade Highscores
@APE, do you mean on the server posting limits, or the file size of the javascript? Do the limits apply to client-side JS or only Node.js?
Polyducks- New Member
- Posts : 11
Reputation : 1
Language : English
Re: Forumotion Arcade Highscores
As far as I know, Forumotion doesn't use Node.js. You'll have to rely on JavaScript AJAX to get and post data to the forum, or the old fashioned way; an HTML form.Polyducks wrote:@APE, do you mean on the server posting limits, or the file size of the javascript? Do the limits apply to client-side JS or only Node.js?
Regarding the request limit, awhile back sending too many asynchronous requests at once would cause one to reach the request limit, therefore giving a blank page. Since the server upgrade that limit appears to be increased, so you're able to send more requests without getting shut out.
Onto the topic itself; I used to just use a topic where people would post scores from a short game I developed. All statistics would be added to the message body after the game ended, and It would be a regular post to the topic, nothing special. If the game is external it could pose a bit of problems; that is getting the score.
Re: Forumotion Arcade Highscores
Gotcha (☞゚∀゚)☞
I was proposing a client-side js within the thread itself, assuming that's where the game was hosted. Similar to Ange Tuteur's solution above.
I was proposing a client-side js within the thread itself, assuming that's where the game was hosted. Similar to Ange Tuteur's solution above.
Polyducks- New Member
- Posts : 11
Reputation : 1
Language : English
Re: Forumotion Arcade Highscores
Polyducks wrote:@APE, do you mean on the server posting limits, or the file size of the javascript? Do the limits apply to client-side JS or only Node.js?
This is what i meant that was posted by @Ange Tuteur but as he just said the update of the new server looks to have fixed that or just made it better.Ange Tuteur wrote:
Regarding the request limit, awhile back sending too many asynchronous requests at once would cause one to reach the request limit, therefore giving a blank page. Since the server upgrade that limit appears to be increased, so you're able to send more requests without getting shut out.
Re: Forumotion Arcade Highscores
This thread became full of technical talks I don't understand xD. So I assume there's no possible coding for it as of now and that I need to wait till someone actually does it which might never happen?
Re: Forumotion Arcade Highscores
I would presume Flane Melody yes, there is no code, but one can probably be developed.
Remember to mark your topic when a solution is found.
General Rules | Tips & Tricks | FAQ | Forgot Founder Password?
Team Leader
Review Section Rules | Request A Review | Sticker Points
Re: Forumotion Arcade Highscores
@Flame As JS says, anything is possible - but it will need someone with a spare week (and a lot of motivation) to make it happen.
Polyducks- New Member
- Posts : 11
Reputation : 1
Language : English
Re: Forumotion Arcade Highscores
Polyducks wrote:@Flame As JS says, anything is possible - but it will need someone with a spare week (and a lot of motivation) to make it happen.
When you tag someone with a space in your username you to use quatation marks (") in between the usernake for it to tag the right person. Don't worry I used to do it to. It takes some getting used.
@Flame Melody
Re: Forumotion Arcade Highscores
I didn't even know that tagging someone would work!
Polyducks- New Member
- Posts : 11
Reputation : 1
Language : English
Similar topics
» Is there any kind of Arcade on Forumotion ?
» Flash Arcade v.1 for Forumotion forums
» Arcade ???
» Arcade
» The Fort
» Flash Arcade v.1 for Forumotion forums
» Arcade ???
» Arcade
» The Fort
Page 1 of 1
Permissions in this forum:
You cannot reply to topics in this forum