|
-
Amiga freak
[almost done] Pharaoh's Eye
Heh, made this little game while waiting for help with my balloon game :P.
Took 3 days though cuz.. well... I'm not that good with gfx and coding.
There are some bugs which I find hard to fix, but they don't appear that often.
Game ---> Pharaoh's Eye
Will add some more sound effects like on the walls when they are moving in closer.. and a highscore later, only problem is that the highscore I use is EgoAnt's highscore and it doesn't work on my friends server even though it supports everything. The only way to make this highscore work on his server is if register_globals is ON in the PHP.ini.... but he doesn't want that as it is a security risk.
I talked to EgoAnt and asked what could be done, he said
To use the script without Reg Globals, you can switch the variables to use the $_POST
Like this:
instead of
Code:
if (!$_SERVER['REQUEST_METHOD'] == "POST" || !$userName){
you could use:
Code:
if (!$_SERVER['REQUEST_METHOD'] == "POST" || !$_POST["userName"]){
You would just have to make sure you are changing all instances of username and myScore
I did my best and couldn't get it work. He has already helped me alot with the highscore, so I didn't want to bother him with more questions .
So, one of my games with highscore is currently hosted on lycos.co.uk as the highscore works there for some reason.... tons of banners . My game on Lycos with highscore . please don't cheat .
edit: Forgot to mention something maybe important: Pressing the circle looking thingy ontop of the pyramid rotates the pieces .
edit2: Instructions added.
Last edited by Ironclaw; 04-04-2006 at 06:20 AM.
Posting Permissions
- You may not post new threads
- You may not post replies
- You may not post attachments
- You may not edit your posts
-
Forum Rules
|
Click Here to Expand Forum to Full Width
|