Jump to content

Doc

Members
  • Posts

    7
  • Joined

  • Last visited

Everything posted by Doc

  1. If anyone has a game that sends score/level to console, when the game is over, I would be glad to embedded it on my site/sites.
  2. Games will get played more, if members/viewers can compete for high scores. By adding something like this, only when game is over: game.end(type,object) Also add to this function an object where scores and levels reached are stored. /** * type {string} ['game_over'] * object {object} * level {string} * score {int} */ game.end('game_over', {score : score, level : level : {/*INSERT HERE IF AVAILABLE*/} }); Some Gamepix games use something like this and the save score/level works well. I can pull that info from the console on embedded games and use ibproarcade save score code. This should work with any arcade software that uses ibproarcade games. myarcadeplugin, vBulletin arcades, ipsProArcade and more.
  3. Doc

    ipsproarcade

    Have you thought about installing an arcade so members can have their games installed and played here? Good way for them to show off their games. Its not that hard to program for them to work and save scores. if their games have scores. https://ipsproarcade.com/
  4. Maybe something like: $(window).on('message onmessage', function(event) or window.addEventListener('message', (event)
  5. I would like something like this too. I have emailed a few distribution sites about this, they say its possible but non are willing to help. What we need is a way to listen in the parent frame and read it with JavaScript? Any ideas?
  6. $(window).on('message onmessage', function(extractscore) { if (ev.originalEvent.origin === 'https://game-site.com') { // your submit code and score variable: extractscore.originalEvent.score } } Could something like this work?
  7. Is there a way to pull a embedded games localstorage data after a games score is set and add it to my database? I can see the score updating in the localstorage from the domain I`m getting the game from, should the localstorage update for my domain too? I`m trying to get scores to save with vBulletin arcade. Thanks!
×
×
  • Create New...