Dancorg Posted May 6, 2013 Share Posted May 6, 2013 Hi!Here are two games I'm currently working on. SHUMP:A fast platform survival game, avoid falling out of the map or being crushed by the platforms. Collect coins for extra points.It has touch controls but the performance in smartphones or old tablets is not the best. Play it here: https://dl.dropboxusercontent.com/u/59330030/tiny/index.htmlAnd here is the source: https://github.com/Dancorg/SHUMPgame/ Z-DJUTER:A two-players hotseat shooter. It's being made with recycled code from SHUMP, that's why they share identical graphics (don't worry I'll change that soon). Player 1 controls the red zombies using WASD keys and spacebar.Player 2 controls the yellow soldiers with arrow keys and mouse.Stand on the green circles to receive reinforcements, or the red circle to upgrade your units.I'm currently trying to improve performance; it lags pretty bad in my notebook and in fullscreen in some desktopsAlso the AI is rudimentary at best. Play it here: https://dl.dropboxusercontent.com/u/59330030/Z-DJUTER/index.htmlAnd the source: https://github.com/Dancorg/DJUTER Quote Link to comment Share on other sites More sharing options...
ra51 Posted May 6, 2013 Share Posted May 6, 2013 Doesnt load Quote Link to comment Share on other sites More sharing options...
Dancorg Posted May 6, 2013 Author Share Posted May 6, 2013 Hmm, are yo using Chrome? I found that sometimes Chrome prevents scripts from being loaded; some sort of security setting. Try Firefox or download the source. Quote Link to comment Share on other sites More sharing options...
Kozie Posted May 8, 2013 Share Posted May 8, 2013 It's indeed blocked because the page itself is running on HTTPS while the scripts are pointed to an in-secure (HTTP) link.You should drop the 'http:' from the src links to have the http/https automagically prepended to it.so something like:<script src="//dl.dropbox.com/u/59330030/tiny/js/game.js"></script>A relative URL without a scheme (http: or https:) is valid, per RFC 3986: "Uniform Resource Identifier (URI): Generic Syntax", Section 4.2. If a client chokes on it, then it's the client's fault because they're not complying with the URI syntax specified in the RFC.Source Quote Link to comment Share on other sites More sharing options...
silentimp Posted May 8, 2013 Share Posted May 8, 2013 SHUMP don't work in Chrome. Work in FF is ok. Idea is funny and this is great proof of concept.But if you add some graphical component and story it would be great.For example protogonist which jumping from one falling giant icicles (purple blocks) to another to escape. Brown blocks is rocks.Something like Don't take me too sirios anyway.Great showcase. Z-DJUTER: it starts in FF and Chrome … and i don't get how to do anything there. wsad, arrows, space, cursor just don't do anything. Quote Link to comment Share on other sites More sharing options...
Dancorg Posted May 8, 2013 Author Share Posted May 8, 2013 @Kozie Fixed, thanks! @silentimpSHUMP: I was actually going for a minimalistic approach, think something like Super Hexagon.Z-DJUTER: I have no idea why it wouldn't work; input code is basically the same as in SHUMP. Quote Link to comment Share on other sites More sharing options...
ra51 Posted May 9, 2013 Share Posted May 9, 2013 Works now. Interesting concept, almost RTS-ish. Probably would be more fun if I actually a player 2 to play against. Quote Link to comment Share on other sites More sharing options...
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.