323 here with my first programming contest!
The winner of this contest will get 200 LGG!
Second place gets 100LGG, and third place 50LGG!
What you have to do:
If you look at the high-scores of this PacMan game, you'll see that the highest score is by "323" with a high score of over 9,000,000.
FREE Flash Pacman Game
The first three people to get their names on this high score list will be the winners! Anyone else who gets their name on the high score list will get a consolation prize of 10 LGG.
ALSO: If you post here saying that you got your name on the high score list, you MUST HAVE PROOF! Sometimes the owners of the website catch that there are hackers, and wipe the high-scores to start fresh.
You can see that I got my high score of over 9m on there with no problem, I had written my solution in Java.
HINT: I didn't get it playing legitimately!
Enjoy, and let the games begin!
Results 1 to 10 of 10
- 21 Feb. 2013 05:32pm #1
- Join Date
- Apr. 2010
- Location
- When freedom is outlawed only outlaws will be free
- Posts
- 5,113
- Reputation
- 195
- LCash
- 5.23
[CONTEST] 323's Programming Challenge #1
- 21 Feb. 2013 06:20pm #2
This challenge seems boring and lackluster.
Make one that actually has some thinking/logic involved. Exploiting some petty Flash game is nothing.
- 21 Feb. 2013 06:39pm #3
- 21 Feb. 2013 11:05pm #4
Seems interesting, I'll take a look at the game soon.
I don't get tired.
- 22 Feb. 2013 12:16am #5
- Join Date
- Apr. 2010
- Location
- When freedom is outlawed only outlaws will be free
- Posts
- 5,113
- Reputation
- 195
- LCash
- 1.98
It's the first programming challenge I made, and anyway, you have to make a program to auto-exploit it haha. It's not supposed to be that hard, it's just a fun little challenge. Not like it's supposed to be "Hey guys, exploit this Unix box hosted on my network and grab root and make your own user account with system privileges to win 200 LGG!".
- 22 Feb. 2013 12:29am #6
Idk. Just doesn't seem very challenging. And it's hardly programming related because not a lot of thinking/logic is involved therefore a lot of programming/coding won't be involved.
Just saying that you could have thought of something more interesting.
- 22 Feb. 2013 12:41am #7
- Join Date
- Apr. 2010
- Location
- When freedom is outlawed only outlaws will be free
- Posts
- 5,113
- Reputation
- 195
- LCash
- 1.22
- 22 Feb. 2013 03:24am #8
Whipped up a quick and dirty solution in AutoIt using Doc's old HTTP Wrapper.
Spoiler:
Code:Global $oHTTP = ObjCreate("winhttp.winhttprequest.5.1") Global $sPost $sPost = _HTTPRequest($oHTTP, "POST", "http://a-zfonts.com/games/flash_pacman/pf.php", "game=pacman&name=isonyx&score=9998990") ConsoleWrite("Post: " & $sPost) Func _HTTPREQUEST($oHTTP, $oMethod, $oURL, $oData = "") $oHTTP.Open($oMethod, $oURL, False) $oHTTP.SetRequestHeader("User-Agent", "User-Agent=Mozilla/5.0 (Windows NT 6.1; WOW64; rv:18.0) Gecko/20100101 Firefox/18.0") If $oMethod = "POST" Then $oHTTP.SetRequestHeader("Content-Type", "application/x-www-form-urlencoded") $oHTTP.Send($oData) Return $oHTTP.ResponseText EndFunc
Proof is here.I don't get tired.
- 22 Feb. 2013 03:50am #9
lol
- 22 Feb. 2013 04:09am #10
- Join Date
- Apr. 2010
- Location
- When freedom is outlawed only outlaws will be free
- Posts
- 5,113
- Reputation
- 195
- LCash
- 1.14