Bump
Bump
[color=#FF0000]WARNING! INTERNAL MELTDOWN EMINENT[/color]
post another link, cant get to the site, or let it dieOriginally Posted by bobbob909
I wont put my vid back in, simply because those admins could ban me. I dont fear them, i am merely trying to stay here as long as i wish and not as long as they will permit. I am helping because of my good will, so either appreciate it or you wont hear of me anymore
I think this is a hard game to hack because of it's evolution system.
Daaaamn, it has like 100 mp3 files and game files...
what do you meanOriginally Posted by MasterX
[color=#FF0000]WARNING! INTERNAL MELTDOWN EMINENT[/color]
Post another link,duh?
I don't think there is another link.
That's a shame i really wanted this game to be hacked
[color=#FF0000]WARNING! INTERNAL MELTDOWN EMINENT[/color]
i did
just hack either i want it hacked
But it's very hard to hack, because of the evolution. So you'll need a very experienced hacker to do this.
I've been here before.
Here are all the files i found. It only needs the first two but then the game will have no sounds.
Cheats to figure out by yourself:Code:http://www.xgenstudios.com/flow/flow.swf http://www.xgenstudios.com/flow/levels.xml http://www.xgenstudios.com/flow/c1_Food-samples-1a.mp3 http://www.xgenstudios.com/flow/c1_Food-samples-2a.mp3 http://www.xgenstudios.com/flow/c1_Food-samples-3a.mp3 http://www.xgenstudios.com/flow/c1_Food-samples-4a.mp3 http://www.xgenstudios.com/flow/c1_Food-samples-5a.mp3 http://www.xgenstudios.com/flow/c1_Food-samples-1b.mp3 http://www.xgenstudios.com/flow/c1_Food-samples-2b.mp3 http://www.xgenstudios.com/flow/c1_Food-samples-3b.mp3 http://www.xgenstudios.com/flow/c1_Food-samples-4b.mp3 http://www.xgenstudios.com/flow/c1_Food-samples-5b.mp3 http://www.xgenstudios.com/flow/c1_boss 1.mp3 http://www.xgenstudios.com/flow/c1_boss 2.mp3 http://www.xgenstudios.com/flow/c1_boss 3.mp3 http://www.xgenstudios.com/flow/c1_boss 4.mp3 http://www.xgenstudios.com/flow/c1_boss 5.mp3 http://www.xgenstudios.com/flow/c1_manta 1.mp3 http://www.xgenstudios.com/flow/c1_manta 2.mp3 http://www.xgenstudios.com/flow/c1_manta 3.mp3 http://www.xgenstudios.com/flow/c1_red.mp3 http://www.xgenstudios.com/flow/c1_blue.mp3 http://www.xgenstudios.com/flow/c1_heal.mp3 http://www.xgenstudios.com/flow/c1_death.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 0 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 1 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 2 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 3 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 4 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 5 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 6 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 7 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 8 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 9 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 10 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 11 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 12 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 13 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 14 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 15 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 16 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 17 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 18 drone.mp3 http://www.xgenstudios.com/flow/c1_Flow-lvl 19 drone.mp3
Here is some code for you guys to analyze. This game has a cheat mode and you can probably figure out how it works with the code given here. It does not work for me (maybe because of the German keyboard) but it could work for you. To help you here is a good link: http://people.uncw.edu/tompkinsj/112/Fl ... yCodes.htm
Code:if (Key.isDown(192)) { cheatMode = true; } // end if if (cheatMode) { if (Key.isDown(39)) { camera.zOffset = camera.zOffset - 20; } else if (Key.isDown(37)) { camera.zOffset = camera.zOffset + 20; } // end else if if (Key.isDown(40)) { switchLevel(curLevel - 1); } else if (Key.isDown(38)) { switchLevel(curLevel + 1); } // end else if if (Key.isDown(84) && curTime - lastPressed > 250) { displayTextField = !displayTextField; lastPressed = curTime; } // end if if (Key.isDown(80) && curTime - lastPressed > 250) { displayPlayerTarget = !displayPlayerTarget; GameLevel.debugLines = !GameLevel.debugLines; lastPressed = curTime; } // end if if (Key.isDown(83)) { camera.shake(0); } // end if if (Key.isDown(82)) { player.regeneration(); } // end if if (Key.isDown(71)) { player.grow(); } // end if if (Key.isDown(69)) { gameLevels[curLevel].spawnFoodAtLocation(0, player.posX, player.posY, 15, 10); } // end if if (Key.isDown(68)) { gameLevels[curLevel].spawnFoodAtLocation(99, player.posX, player.posY, 15, 10); } // end if if (Key.isDown(70)) { gameLevels[curLevel].spawnFoodAtLocation(1, player.posX, player.posY, 15, 10); } // end if if (Key.isDown(67)) { if (player.dieing == false) { player.die(); } // end if } // end if if (Key.isDown(66)) { var b = gameLevels[curLevel].spawnBulletAtLocation(50, player.posX, player.posY, 25, 60, 5, 8, 3); b.movementMode = 2; } // end if if (Key.isDown(65)) { switchCampaign(2, true); } // end if if (Key.isDown(72)) { switchLevel(0); } // end if if (Key.isDown(90)) { switchLevel(19); } // end if if (Key.isDown(73)) { gameLevels[curLevel].fish[0].die(); } // end if if (Key.isDown(74)) { gameLevels[curLevel].spawnFoodAtLocation(102, 0, 0, 25, 10); } // end if if (Key.isDown(75)) { var mc = _root.createEmptyMovieClip("b" + dt, Camera3D.getNextDepth()); var c = Creature.clone(player, mc, 111); gameLevels[curLevel].fish[gameLevels[curLevel].fish.length] = c; ++gameLevels[curLevel].fishLength; } // end if }![]()
i dont care it doesnt have much sound anyway