Spawnkiller [html game]

Discussions about everything else
Post Reply
User avatar
UT Sniper (SJA94)
Inhuman
Posts: 753
Joined: Thu Jun 24, 2010 10:35 pm
Personal rank: Retard
Location: England
Contact:

Spawnkiller [html game]

Post 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.
WeeDMaN
Novice
Posts: 9
Joined: Mon May 11, 2015 5:37 am

Re: Spawnkiller [html game]

Post 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.
User avatar
papercoffee
Godlike
Posts: 10443
Joined: Wed Jul 15, 2009 11:36 am
Personal rank: coffee addicted !!!
Location: Cologne, the city with the big cathedral.
Contact:

Re: Spawnkiller [html game]

Post by papercoffee »

It would be cool if the barrels would jump over and try to kill you (lose points)... :wink:
Raviex
Average
Posts: 45
Joined: Tue Jan 07, 2014 6:38 am

Re: Spawnkiller [html game]

Post by Raviex »

Link didn't work for me.
User avatar
EvilGrins
Godlike
Posts: 9668
Joined: Thu Jun 30, 2011 8:12 pm
Personal rank: God of Fudge
Location: Palo Alto, CA
Contact:

Re: Spawnkiller [html game]

Post by EvilGrins »

I got a malware alert when I clicked 'Play'.
http://unreal-games.livejournal.com/
Image
medor wrote:Replace Skaarj with EvilGrins :mrgreen:
Smilies · viewtopic.php?f=8&t=13758
User avatar
Dr.Flay
Godlike
Posts: 3347
Joined: Thu Aug 04, 2011 9:26 pm
Personal rank: Chaos Evangelist
Location: Kernow, UK
Contact:

Re: Spawnkiller [html game]

Post 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.
User avatar
UT Sniper (SJA94)
Inhuman
Posts: 753
Joined: Thu Jun 24, 2010 10:35 pm
Personal rank: Retard
Location: England
Contact:

Re: Spawnkiller [html game]

Post 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.
rsbloom44
Experienced
Posts: 124
Joined: Mon Jan 30, 2012 9:46 am

Re: Spawnkiller [html game]

Post by rsbloom44 »

neat. how hard would it be to incorporate some sort of accuracy checker? you can pretty much just spam click right now
User avatar
UT Sniper (SJA94)
Inhuman
Posts: 753
Joined: Thu Jun 24, 2010 10:35 pm
Personal rank: Retard
Location: England
Contact:

Re: Spawnkiller [html game]

Post 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.
Post Reply