Zombie Outrage 2 (ZO2 Updates)

Anything related in any way to game development as a whole is welcome here. Tell us about your game, grace us with your project, show us your new YouTube video, etc.

Moderator: PC Supremacists

User avatar
dandymcgee
ES Beta Backer
ES Beta Backer
Posts: 4709
Joined: Tue Apr 29, 2008 3:24 pm
Current Project: https://github.com/dbechrd/RicoTech
Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
Programming Language of Choice: C
Location: San Francisco
Contact:

Re: Zombie Outrage 2 (ZO2 Updates)

Post by dandymcgee »

High Score!
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches! :twisted:
User avatar
EdBoon
Chaos Rift Junior
Chaos Rift Junior
Posts: 258
Joined: Fri May 28, 2010 10:44 pm
Current Project: Top down multiplayer shooter using unity 3D
Favorite Gaming Platforms: 360, SNES, ps1
Programming Language of Choice: C++, C#
Location: Atlanta, GA
Contact:

Re: Zombie Outrage 2 (ZO2 Updates)

Post by EdBoon »

pretty sweet man, good work, ill check it out tomorrow evening a bit more
Undead Empire -> http://bit.ly/dYdu3z
Gamerscore Tracker -> http://bit.ly/vI4T4X
Undead Empire: Hellfire -> http://bit.ly/1AgC4ZY
facebook.com/BigRookGames twitter.com/BigRookGames
youtube.com/user/bigrookdigital
User avatar
GroundUpEngine
Chaos Rift Devotee
Chaos Rift Devotee
Posts: 835
Joined: Sun Nov 08, 2009 2:01 pm
Current Project: mixture
Favorite Gaming Platforms: PC
Programming Language of Choice: C++
Location: UK

Re: Zombie Outrage 2 (ZO2 Updates)

Post by GroundUpEngine »

I gotta say, pretty epic progress! ;)
User avatar
ibly31
Chaos Rift Junior
Chaos Rift Junior
Posts: 312
Joined: Thu Feb 19, 2009 8:47 pm
Current Project: Like... seven different ones
Favorite Gaming Platforms: Xbox 360, Gamecube
Programming Language of Choice: C++, ObjC
Location: New Jersey.

Re: Zombie Outrage 2 (ZO2 Updates)

Post by ibly31 »

Wow! Very fun, a lot more fun than i was expecting. I also agree with making the zombies a little slower. You can be reloading and have a zombie barely nudging you for a few seconds and lose a LOT of health. Also kick back would be nice, but im not sure how exactly one would go about programming that. Great job!
Image
Twitter
Website/Tumblr
My Projects

The best thing about UDP jokes is that I don’t care if you get them or not.
User avatar
TheAustech
Chaos Rift Cool Newbie
Chaos Rift Cool Newbie
Posts: 96
Joined: Fri Sep 03, 2010 4:38 pm
Current Project: BeatTapper
Favorite Gaming Platforms: PC
Programming Language of Choice: C++, C#
Location: Maryland
Contact:

Re: Zombie Outrage 2 (ZO2 Updates)

Post by TheAustech »

I've been working on my own login system for Zombie Outrage 2. I knew that just entering a random username would get boring.

It's not going to be released right now, but when it is I'll have to clear the original score list. But thank you all for playing, it means a lot. : )

The user file currently holds your name, password, total play count, and total time survived. But this can be added to since the way I made it is flexible and is able to work when having things add to.

The passwords are safe and hashed. And example of a file in my system would be this:

Code: Select all

//Austech
pass:5f4dcc3b5aa765d61d8327deb882cf99;ZO2PlayCount:2;ZO2TotalTime:17476;
Image
Image
User avatar
Ginto8
ES Beta Backer
ES Beta Backer
Posts: 1064
Joined: Tue Jan 06, 2009 4:12 pm
Programming Language of Choice: C/C++, Java

Re: Zombie Outrage 2 (ZO2 Updates)

Post by Ginto8 »

get a linux build or put up the actual exe download, cuz the updater don't work in wine!
Quit procrastinating and make something awesome.
Ducky wrote:Give a man some wood, he'll be warm for the night. Put him on fire and he'll be warm for the rest of his life.
User avatar
TheAustech
Chaos Rift Cool Newbie
Chaos Rift Cool Newbie
Posts: 96
Joined: Fri Sep 03, 2010 4:38 pm
Current Project: BeatTapper
Favorite Gaming Platforms: PC
Programming Language of Choice: C++, C#
Location: Maryland
Contact:

Re: Zombie Outrage 2 (ZO2 Updates)

Post by TheAustech »

Ginto8 wrote:get a linux build or put up the actual exe download, cuz the updater don't work in wine!
There ya go. The site now has a download for the updater, and the zip file. ;D

http://theaustech.110mb.com/ZO2.php
User avatar
dandymcgee
ES Beta Backer
ES Beta Backer
Posts: 4709
Joined: Tue Apr 29, 2008 3:24 pm
Current Project: https://github.com/dbechrd/RicoTech
Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
Programming Language of Choice: C
Location: San Francisco
Contact:

Re: Zombie Outrage 2 (ZO2 Updates)

Post by dandymcgee »

TheAustech wrote: The passwords are safe and hashed. And example of a file in my system would be this:

Code: Select all

//Austech
pass:5f4dcc3b5aa765d61d8327deb882cf99;ZO2PlayCount:2;ZO2TotalTime:17476;
Until you go and use something stupid like "password" for your password. :roll:

You do realize MD5 hashes are not very safe at all, right?
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches! :twisted:
User avatar
Milch
Chaos Rift Junior
Chaos Rift Junior
Posts: 241
Joined: Sat Jul 11, 2009 5:55 am
Programming Language of Choice: C++
Location: Austria, Vienna

Re: Zombie Outrage 2 (ZO2 Updates)

Post by Milch »

dandymcgee wrote:
TheAustech wrote: The passwords are safe and hashed. And example of a file in my system would be this:

Code: Select all

//Austech
pass:5f4dcc3b5aa765d61d8327deb882cf99;ZO2PlayCount:2;ZO2TotalTime:17476;
Until you go and use something stupid like "password" for your password. :roll:

You do realize MD5 hashes are not very safe at all, right?
Why wouldn't they?
If he takes a password like "asbSAjfk45" then nobody will every guess that, so no password-table will include that.
Follow me on twitter!
User avatar
TheAustech
Chaos Rift Cool Newbie
Chaos Rift Cool Newbie
Posts: 96
Joined: Fri Sep 03, 2010 4:38 pm
Current Project: BeatTapper
Favorite Gaming Platforms: PC
Programming Language of Choice: C++, C#
Location: Maryland
Contact:

Re: Zombie Outrage 2 (ZO2 Updates)

Post by TheAustech »

dandymcgee wrote:
TheAustech wrote: The passwords are safe and hashed. And example of a file in my system would be this:

Code: Select all

//Austech
pass:5f4dcc3b5aa765d61d8327deb882cf99;ZO2PlayCount:2;ZO2TotalTime:17476;
Until you go and use something stupid like "password" for your password. :roll:

You do realize MD5 hashes are not very safe at all, right?
Bastard. D:

It's okay though. I have some more bad news for my clients. But it's for the best. At the moment I'm going to use a different hash algorithm (one more safe ;) ).

Also these passwords will be salted. So the text being hashed will seem "gibberish". : )

By the way, I don't use "password" for any of my usernames besides that example, so don't try anything folks. XD

The bad news is that all the users will have to be removed. :(
User avatar
dandymcgee
ES Beta Backer
ES Beta Backer
Posts: 4709
Joined: Tue Apr 29, 2008 3:24 pm
Current Project: https://github.com/dbechrd/RicoTech
Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
Programming Language of Choice: C
Location: San Francisco
Contact:

Re: Zombie Outrage 2 (ZO2 Updates)

Post by dandymcgee »

TheAustech wrote: Also these passwords will be salted.
Swee.. err Salty!

my Sup3R S3cur3 p4ssw0rd h4Sh3r:
Random number of passes between 10 and 15 of (Salt -> MD5 -> Salt -> Triple-DES -> Salt -> SHA-512) then append number of passes*17 to end of hashed password.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches! :twisted:
User avatar
GroundUpEngine
Chaos Rift Devotee
Chaos Rift Devotee
Posts: 835
Joined: Sun Nov 08, 2009 2:01 pm
Current Project: mixture
Favorite Gaming Platforms: PC
Programming Language of Choice: C++
Location: UK

Re: Zombie Outrage 2 (ZO2 Updates)

Post by GroundUpEngine »

dandymcgee wrote:
TheAustech wrote: Also these passwords will be salted.
Swee.. err Salty!

my Sup3R S3cur3 p4ssw0rd h4Sh3r:
Random number of passes between 10 and 15 of (Salt -> MD5 -> Salt -> Triple-DES -> Salt -> SHA-512) then append number of passes*17 to end of hashed password.
:lol:
User avatar
adikid89
Chaos Rift Cool Newbie
Chaos Rift Cool Newbie
Posts: 94
Joined: Tue Apr 27, 2010 6:59 am
Current Project: small tiny-mini projects
Favorite Gaming Platforms: PC I guess...
Programming Language of Choice: c++

Re: Zombie Outrage 2 (ZO2 Updates)

Post by adikid89 »

I'd probably switch sides... just to see things from the zombie's perspective :roll: :lol:
My first game C++/SDL Yoshi Combat! = http://www.youtube.com/watch?v=HQ9mMBEWSZg
==============================================================
Image
User avatar
dandymcgee
ES Beta Backer
ES Beta Backer
Posts: 4709
Joined: Tue Apr 29, 2008 3:24 pm
Current Project: https://github.com/dbechrd/RicoTech
Favorite Gaming Platforms: NES, Sega Genesis, PS2, PC
Programming Language of Choice: C
Location: San Francisco
Contact:

Re: Zombie Outrage 2 (ZO2 Updates)

Post by dandymcgee »

swarkya wrote:What would you do if there was a zombie outbreak? What if a zombie apocalypse occurred tomorrow or even today? What would you do? I would gather a bunch of survivors and find shelter to stay at until we can come up with a plan.
As a moderator, I don't even know how to begin reacting to this post..
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches! :twisted:
User avatar
adikid89
Chaos Rift Cool Newbie
Chaos Rift Cool Newbie
Posts: 94
Joined: Tue Apr 27, 2010 6:59 am
Current Project: small tiny-mini projects
Favorite Gaming Platforms: PC I guess...
Programming Language of Choice: c++

Re: Zombie Outrage 2 (ZO2 Updates)

Post by adikid89 »

dandymcgee wrote:
swarkya wrote:What would you do if there was a zombie outbreak? What if a zombie apocalypse occurred tomorrow or even today? What would you do? I would gather a bunch of survivors and find shelter to stay at until we can come up with a plan.
As a moderator, I don't even know how to begin reacting to this post..
Lol.. :lol: What's funny is that he actually created an account just to post that :lol:
My first game C++/SDL Yoshi Combat! = http://www.youtube.com/watch?v=HQ9mMBEWSZg
==============================================================
Image
Post Reply