Blitz Arena

Community Forums/Showcase/Blitz Arena

Ferret(Posted 2010) [#1]
Blitz Arena is a multiplayer first person shooter in development.
Check mi worklog or website for server status and updates.

Press F1 ingame to get the current key bindingings!

Download Blitz Arena 0.05

Last edited 2011


Hotshot2005(Posted 2010) [#2]
Look alright....the only things need fixing is when your gun go through the wall in single player..when it shouldnt :)

I havnt test the multi player yet


stayne(Posted 2010) [#3]
Looks good and seems solid. I don't like the pause before I jump. Otherwise good job man!


Ferret(Posted 2010) [#4]
Thx for the feedback!

I forgot about the gun :), and the pause before you jump was a bug wich took me a while to fix.

New version released!
---------------------
Fixed:Gun going trough walls
Fixed:Pause before jumping
Fixed:Some animations

Added:Bots and waypoints
Added:Headshots
Added:Hud icons
Added:Screen messages
Added:Vertex lighting and coronas
Added:Supersampling

3 new screens posted.

Last edited 2010


Ferret(Posted 2010) [#5]
New version released!

This version adds multiplayer.
The server will be only be online for a few hours a day.
I added a server status menu on mi website.

Last edited 2010


RifRaf(Posted 2010) [#6]
I tried to check it out.. no server up atm.


*(Posted 2010) [#7]
Would it be possible to sort the score table with highest score at the top like UT etc, its much easier to see whats happening then :)


Ferret(Posted 2010) [#8]
That would be verry posible :), i just need to learn how because i never did that before.

Server is up.


Ferret(Posted 2010) [#9]
Woohoo, i had a tester so i now know the server can be reached and we found some bugs.

Chatting worked, we had a chat, but has some bugs and needs text wrapping.
The person who tested is going to send me some info on the text wrapping.

We could not see eachother, i messed up with position updates.
I was reading 1 character to many for the x position from the position packet. I hope this was the only thing causing the error.

Server status and minor updates will be on mi worklog from now on.

Thx for testing!


RifRaf(Posted 2010) [#10]
np, I sent you an email

Last edited 2010


M2PLAY(Posted 2010) [#11]
Sort the score table:

1) Very easy Bubble Method:

Function SortTable()
For n=0 to NumTableScore
For m=0 to NumTableScore
If Score(m) < Score(n)
AuxScore = Score(m)
Score(m) = Score(n)
Score(n) = AuxScore
Endif
Next
Next
End Function

; Insert a new score
Function InsertNewScore(NewScore)
AuxScore=NewScore
For n=NumTableScore to 0 Step -1
If AuxScore > Score(n)
Score(n)=AuxScore
Return
Endif
Next
End Function

2) Shell Method
Tables with a lot of elements only
Bubble method is better for you now



Good luck !!


Ferret(Posted 2010) [#12]
Thank you!

The scores table is sorted now.

Chat is much better, if the line is full it is posted and a new line is started. So you can keep typing instead of a dead stop when the line is full.

Last edited 2010


Mr. Goober(Posted 2013) [#13]
Singleplayer seems to work alright. I liked it. It was a very pretty game. I had a bug where your key input would spew into the chat input as soon as you hit enter.

I also spawned in a wall I think. But as soon as I got myself out everything seemed okay.

Good luck!
~ Makeii


Doggie(Posted 2013) [#14]
Doesn't work here. Game loads but the player doesn't respond to control keys.
Tried changing from arrows to WSAD with no luck.


Captain Wicker (crazy hillbilly)(Posted 2013) [#15]
this works surprisingly well in wine 1.4.1


Chroma(Posted 2013) [#16]
That's awesome because like 10 years ago someone started a Blitz Arena (might have been Halo) but it never got to fruition. Hope you can do one better!