Page 1 of 1

Spawnkiller [html game]

Posted: Sat May 23, 2015 6:05 pm
by UT Sniper (SJA94)
I've made a small game using html elements, all you have to do is shoot the targets that move across the screen.

I've tried to make the hud look as close to possible to ut without using images, some bits need a little tidy up but that can wait for now.

Play game link: http://sja94.net76.net/utgame/
View scoreboard link:http://sja94.net76.net/utgame/scores.php

Scoring system:
- head shot = 5 points,
- 1 hit = 1 point,
- double kill = 2 points,
- multi kill = 3 points,
- mega kill = 5 points,
- ultra kill = 6 points,
- monster kill = 7 points,
- ludicrious kill = 8 points,
- holy shit = 9 points,
- multiple holy shit = current kills + 1(starts at 10 points)

Please report any bugs in this topic http://sja94.net76.net/forum/index.php? ... 571&cat=16

Sorry in advance to anyone who looks at the javascript source :barf: , I didn't intend to upload the game at first I just made it for myself when I was bored.

Re: Spawnkiller [html game]

Posted: Sun May 24, 2015 4:47 am
by WeeDMaN
Honestly this is pretty cool concept you have going. Something I could see myself doing for a little when I am bored or something reminds me of something like Serenity posted on OwnedWell forum but this is awesome.

Re: Spawnkiller [html game]

Posted: Sun May 24, 2015 3:17 pm
by papercoffee
It would be cool if the barrels would jump over and try to kill you (lose points)... :wink:

Re: Spawnkiller [html game]

Posted: Sun May 24, 2015 3:20 pm
by Raviex
Link didn't work for me.

Re: Spawnkiller [html game]

Posted: Sun May 24, 2015 7:31 pm
by EvilGrins
I got a malware alert when I clicked 'Play'.

Re: Spawnkiller [html game]

Posted: Sun May 24, 2015 11:51 pm
by Dr.Flay
The malware warning may be because of this
https://sitecheck.sucuri.net/results/sja94.net76.net

Better check your site and find the hijack.

Re: Spawnkiller [html game]

Posted: Mon May 25, 2015 12:37 pm
by UT Sniper (SJA94)
It looks like its the webhosts 404 error page that's the problem.

I am looking into buying a new web hosting service, 000webhost is quite dodgy from what ive read, and the spammy adverts at every page load, onclick, is very annoying.

I do not recommend them.

EDIT
https://sitecheck.sucuri.net/results/er ... bhost.com/

-------------------------------------------------------EDIT--------------------------------------------------------

Fixed bug that people were using to get really high scores.

Re: Spawnkiller [html game]

Posted: Mon May 25, 2015 1:36 pm
by rsbloom44
neat. how hard would it be to incorporate some sort of accuracy checker? you can pretty much just spam click right now

Re: Spawnkiller [html game]

Posted: Mon May 25, 2015 2:20 pm
by UT Sniper (SJA94)
rsbloom44 wrote:neat. how hard would it be to incorporate some sort of accuracy checker? you can pretty much just spam click right now
I updated the score system earlier:

Code: Select all

if (acc > 0) {
    acc = acc / 100;
} else {
    acc = 0;
}
score = Math.ceil(score * acc);
The old scores were halved, 50%acc is quite easy to get.

Later I will also add a big red replay button on the scores page.