Zombie Outrage 2 (ZO2 Updates)
Moderator: PC Supremacists
- dandymcgee
- 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)
High Score!
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
- EdBoon
- 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)
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
Gamerscore Tracker -> http://bit.ly/vI4T4X
Undead Empire: Hellfire -> http://bit.ly/1AgC4ZY
facebook.com/BigRookGames twitter.com/BigRookGames
youtube.com/user/bigrookdigital
- GroundUpEngine
- 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)
I gotta say, pretty epic progress!
- ibly31
- 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)
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!
Website/Tumblr
My Projects
The best thing about UDP jokes is that I don’t care if you get them or not.
- TheAustech
- 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)
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:
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;
- Ginto8
- 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)
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.
- TheAustech
- 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)
There ya go. The site now has a download for the updater, and the zip file. ;DGinto8 wrote:get a linux build or put up the actual exe download, cuz the updater don't work in wine!
http://theaustech.110mb.com/ZO2.php
- dandymcgee
- 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)
Until you go and use something stupid like "password" for your password.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;
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!
- Milch
- 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)
Why wouldn't they?dandymcgee wrote:Until you go and use something stupid like "password" for your password.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;
You do realize MD5 hashes are not very safe at all, right?
If he takes a password like "asbSAjfk45" then nobody will every guess that, so no password-table will include that.
Follow me on twitter!
- TheAustech
- 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)
Bastard. D:dandymcgee wrote:Until you go and use something stupid like "password" for your password.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;
You do realize MD5 hashes are not very safe at all, right?
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.
- dandymcgee
- 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)
Swee.. err Salty!TheAustech wrote: Also these passwords will be salted.
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!
- GroundUpEngine
- 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)
dandymcgee wrote:Swee.. err Salty!TheAustech wrote: Also these passwords will be salted.
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.
- adikid89
- 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)
I'd probably switch sides... just to see things from the zombie's perspective
My first game C++/SDL Yoshi Combat! = http://www.youtube.com/watch?v=HQ9mMBEWSZg
==============================================================
==============================================================
- dandymcgee
- 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)
As a moderator, I don't even know how to begin reacting to this post..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.
Falco Girgis wrote:It is imperative that I can broadcast my narcissistic commit strings to the Twitter! Tweet Tweet, bitches!
- adikid89
- 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)
Lol.. What's funny is that he actually created an account just to post thatdandymcgee wrote:As a moderator, I don't even know how to begin reacting to this post..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.
My first game C++/SDL Yoshi Combat! = http://www.youtube.com/watch?v=HQ9mMBEWSZg
==============================================================
==============================================================