View Full Version : v3 Arcade - Game Modification Guide & Releases
How v3 Games Work
v3 Arcade games are a little different to those in the original Arcade and futureal's proArcade.
Instead of a simple getURL which sends all of the variables to the next page, the v3 Arcade uses a completely different system - a series of sendAndLoad events where data is sent and received between the Flash file and vBulletin. As a result, converting games for the v3 Arcade is a little more complicated.
To get games working with the v3 Arcade, a piece of code needs to be inserted which will run on every frame of the Flash movie. (I.e. one looped movieclip which is active across all frames.) A variable also needs to be set to tell the v3 Arcade code when to end the game.
EDIT: INSTRUCTIONS UPDATED TO MAKE THE PROCESS A LOT EASIER!
Converting Games
Converting a game is quite simple, providing you have some basic knowledge of Flash.
Step 1.
Create a blank movie clip, containing two keyframes.
Step 2.
On frame 1 of this blank movieclip, insert this code (not forgetting to change the gamename value to something unique - THIS PRESUMES THAT _root.score CONTAINS THE SCORE VALUE!):
// HERE THE ARCADE SESSION IS INITIATED
// DON'T FORGET TO CHANGE THE GAMENAME VALUE!
if (this.sessionstarted != 1) {
this.arcade = new LoadVars();
this.sessionvars = new LoadVars();
this.arcade.gamename = "towerball";
this.arcade.sessdo = "sessionstart";
this.arcade.sendAndLoad("arcade.php", sessionvars, "POST");
this.sessionstarted = 1;
}
// IF GAMEOVER=1, SUBMIT THE SCORE AND REDIRECT THE PAGE
if (_root.gameover == 1) {
if ((this.askpermission != 1) && (this.sessionvars.connStatus == 1)) {
this.prequestvars = new LoadVars();
this.pranswer = new LoadVars();
this.prequestvars.gametime = this.sessionvars.gametime;
this.prequestvars.fakekey = this.sessionvars.initbar;
if (_root.score == 0) {
this.prequestvars.score = -1;
} else {
this.prequestvars.score = _root.score;
}
this.prequestvars.id = this.sessionvars.lastid;
this.prequestvars.sessdo = "permrequest";
this.prequestvars.note = (this.prequestvars.id*this.prequestvars.score*this .prequestvars.fakekey);
this.prequestvars.sendAndLoad("./arcade.php", this.pranswer, "POST");
this.askpermission = 1;
}
if ((this.pranswer.validate == 1) && (this.finalsent != 1)) {
this.burnscore = new LoadVars();
this.burnscore.microone = this.pranswer.microone;
this.burnscore.gametime = this.prequestvars.gametime;
this.burnscore.id = this.prequestvars.id;
if (_root.score == 0) {
this.burnscore.noscore = 1;
}
this.burnscore.sessdo = "burn";
this.burnscore.send("./arcade.php", "_self", "POST");
this.finalsent = 1;
}
}
Step 3.
Now, you need to let the game know when to finish the game and redirect the page. This is done by the setting of a new variable, "gameover". When _root.gameover==1, the game will end.
Find the frame of the "Game Over" page, and add this actionscript to the frame:
_root.gameover=1;
Save, and export the SWF movie to the appropriate place. :)
Releasing Games
When releasing a game, please try to stick to the same format as the other games provided below. (I.e. with the installation script.) It should be fairly easy to figure out what goes where. :) Try to release all games in this thread!
Additional Games So Far
? Pacman (by Paul Neave) - https://vborg.vbsupport.ru/showpost.php?p=464380&postcount=102
? Simon (by Paul Neave) - https://vborg.vbsupport.ru/showpost.php?p=464439&postcount=130
? Breakout - https://vborg.vbsupport.ru/showpost.php?p=465436&postcount=350
? Target - https://vborg.vbsupport.ru/showpost.php?p=465471&postcount=359
? Maeda Path - https://vborg.vbsupport.ru/showpost.php?p=466001&postcount=469
? Helicopter - https://vborg.vbsupport.ru/showpost.php?p=466146&postcount=504
? Curveball - https://vborg.vbsupport.ru/showpost.php?p=466154&postcount=506
? Miniclip Snake - https://vborg.vbsupport.ru/showpost.php?p=466305&postcount=537
? Towerball - https://vborg.vbsupport.ru/showpost.php?p=467639&postcount=7
? Alien Clones - https://vborg.vbsupport.ru/showpost.php?p=467703&postcount=12
? Penguin Bashing - https://vborg.vbsupport.ru/showpost.php?p=468469&postcount=72
? Mars Rover - https://vborg.vbsupport.ru/showpost.php?p=469698&postcount=109
? Disco Racer - https://vborg.vbsupport.ru/showpost.php?p=470668&postcount=138
? Joust - https://vborg.vbsupport.ru/showpost.php?p=470710&postcount=144
? Hexxagon - https://vborg.vbsupport.ru/showpost.php?p=471060&postcount=938
? Monkey Lander - http://www.v3arcade.com/play/showthread.php?t=55
? Pingu Slap - http://www.v3arcade.com/play/showthread.php?t=53
? Bloody Pingu - https://vborg.vbsupport.ru/showpost.php?p=485014&postcount=295
? Radial Snake - https://vborg.vbsupport.ru/showpost.php?p=485042&postcount=300
? Kill Kenny - https://vborg.vbsupport.ru/showpost.php?p=485453&postcount=304
? Alien Attack - https://vborg.vbsupport.ru/showpost.php?p=485734&postcount=314
? Ron North's Jewels - https://vborg.vbsupport.ru/showpost.php?p=486123&postcount=329
? KickUps - https://vborg.vbsupport.ru/showpost.php?p=487431&postcount=363
? Altex - https://vborg.vbsupport.ru/showpost.php?p=489705&postcount=403
? Enemy Shooting - https://vborg.vbsupport.ru/showpost.php?p=489705&postcount=403
? Jail Break - https://vborg.vbsupport.ru/showpost.php?p=489705&postcount=403
? Snow Paul - https://vborg.vbsupport.ru/showpost.php?p=489705&postcount=403
? Space Hunter - https://vborg.vbsupport.ru/showpost.php?p=489705&postcount=403
? Plasmanaut on Fire - https://vborg.vbsupport.ru/showpost.php?p=490307&postcount=443
? Simpsons Shooter - https://vborg.vbsupport.ru/showpost.php?p=490363&postcount=447
? Plasmanout V2 - https://vborg.vbsupport.ru/showpost.php?p=490883&postcount=464
? Pinball - http://www.v3arcade.com/play/showthread.php?t=182
? Juggler - http://www.v3arcade.com/play/showthread.php?t=207
? Starship Legend - http://www.v3arcade.com/play/showthread.php?t=208
? Aim & Fire - http://www.v3arcade.com/play/showthread.php?t=206
? Plops - http://www.v3arcade.com/play/showthread.php?t=184
? Tie Fighter Shooter - https://vborg.vbsupport.ru/attachment.php?attachmentid=17650
? Witch Hunt - https://vborg.vbsupport.ru/attachment.php?attachmentid=17651
MindTrix
01-24-2004, 11:56 AM
Cheers for the guide :)
KevinUK
01-24-2004, 01:18 PM
John,
Neave's PacMan doesn't open in Flash - I get "unexpected file format" (even though it's .fla).
Kevin
NuclioN
01-24-2004, 01:38 PM
The format is flash MX when it won't open with flash 5. You need to install flash MX to open it.
NuclioN
01-24-2004, 01:43 PM
The easiest way of doing this is to drag the new movieclip onto the last frame which the game will end on. (I.e. the game over screen.) An alternative is to create a new scene, and name it "Submit". On frame 1, include your new movieclip. In the main game, find the code which signifies the end of a game - and add:
Code:
gotoAndStop("Submit",1);
Is it possible (i shall test it also) to add an extra frame on the end of the game with a stopframe in it. On this frame is not a movieclip but a frameaction that is called when you add in the gameover section: GotoAndStop frame **. where the script is executed?
Is it possible (i shall test it also) to add an extra frame on the end of the game with a stopframe in it. On this frame is not a movieclip but a frameaction that is called when you add in the gameover section: GotoAndStop frame **. where the script is executed?
You can do whatever you like, as long as the first part of the code is at the beginning and the looping step 2 appears at the end of the game.
Dark Jim
01-24-2004, 06:33 PM
Thanks for the game NuclioN, it's great. Could you convert some of the games that are in the vBProArcade games thread too?
BillaBongUSA
01-24-2004, 06:39 PM
Thanks for the tutorial, John. I think I'll go through the other thread and try to convert some games that people have requested.
Littlebit
01-24-2004, 06:46 PM
Hey John,
Why did the sound volumes get weird with curveball?
Hey John,
Why did the sound volumes get weird with curveball?
No idea, but they did. I can't afford to spend all day trying to fix them. :(
New Game: Alien Clones
Instructions in zip. Thanks to miniclip.com for this one...
InSaNeOnE
01-24-2004, 08:41 PM
Towerball game. Tnx to John for the assistance by adding the code :)
Install the game in the same way you installed the others, so towerball.game.php in the admin dir and run it from there. Both images in images/arcade and the swf in the games dir.
Worked perfectly, Huge thanks for the new game :)
.. Will be installing the new game from John shortly also.
A Huge thanks for the new games, if any of the members on my forum make any (I am usless at flash) I will be sure to post them.
MaDCaT75
01-24-2004, 08:51 PM
what about games like chopper challenge? How do we put in an extra thingie or whatever that gives us the option to play again or submit the score?
eXtremeTim
01-24-2004, 09:19 PM
Okay you flash wizards lets get some games converted. My users are dying for loads of new games.
MaDCaT75
01-24-2004, 09:20 PM
Yes and I still want a submit button for copter.
eXtremeTim
01-24-2004, 09:26 PM
I have a fealing your not getting one for a while :(
MaDCaT75
01-24-2004, 09:28 PM
If someone would tell me how to put one in then I'd shut the hell up about it already ffs.
eXtremeTim
01-24-2004, 09:30 PM
I would if i knew how.
If someone would tell me how to put one in then I'd shut the hell up about it already ffs.
I have a problem where I tend to ignore people who think they can get what they want by constantly whining and complaining. Nothing personal, just a habit.
BillaBongUSA
01-24-2004, 09:32 PM
If someone would tell me how to put one in then I'd shut the hell up about it already ffs.
I have a feeling that even if someone told you, you wouldn't know how to do it.
I don't know how this game is structured, but it seems like all you'd have to do is make the game direct you to a frame with a stop action on it that has buttons for submitting your score or restarting, rather than having it direct you to a game over frame whenever you crash. The submit button would direct you to the original game over screen, which would submit your score, and the restart button would just send you to frame one of the movie. But it's hard to say without having seen the FLA.
MaDCaT75
01-24-2004, 09:33 PM
I have a feeling that even if someone told you, you wouldn't know how to do it.
I appreciate people telling me I'm stupid.
BillaBongUSA is right, or using the code in the first post you can simple set the gameover variable to equal 1 on (release).
BillaBongUSA
01-24-2004, 09:36 PM
That's good, because I enjoy calling people stupid.
MaDCaT75
01-24-2004, 09:40 PM
That's good, because I enjoy calling people stupid.
go to hell.
BillaBongUSA
01-24-2004, 09:41 PM
Okay.
MindTrix
01-24-2004, 09:44 PM
Stop the arguments please.
NuclioN
01-24-2004, 09:45 PM
It's not easy and it is sometimes timeconsuming work. I can't test the games on my pc so i have to upload them, install them and if they don't work i have to start all over again. Confusing part is the _root.score = _root.var.score; where var is the name of the scorevariable. The score could be launched from different gamelevels and without a fla it becomes a hell of a task to find the right scorevariable.
If the scorevariable is 'points' is this the correct first line? : _root.score = points;
AutomatikStudio
01-24-2004, 09:46 PM
What the hades does callling people stupid and people telling others to go to hell have to do with v3 Arcade? Absolutely nothing. Please take pointless bickering elsewhere.
Sorry Nuclion, you've lost me. Points? What game are you talking about? Or do you just mean in general?
MaDCaT75
01-24-2004, 09:49 PM
Nuclion can you please PM me!!!
NuclioN
01-24-2004, 09:52 PM
Sorry Nuclion, you've lost me. Points? What game are you talking about? Or do you just mean in general?
I mean in general. :) I've tried to make a _root.score = money; for the camelrace game but i haven't test it because it needs a button.
Thanks both NuclioN and John for 2 new games, they're really great.
NuclioN, just got battleships... how do you score something like that?
eXtremeTim
01-24-2004, 10:21 PM
How about so many points for each ship and like some kinda time bonus for each ship sunken and take away so many points for each hit on there ship and maybe like a negative bonus for each ship the enemy sinks based on time taken. That should allow for alot of variation in score and stuff.
Is there anyway to make this PHP blackjack game? It's php, not flash.
http://www.gerradroberts.com/blackjack
NuclioN
01-24-2004, 11:09 PM
I have some realy great blackjack games that i want to share. If i can't modify it i'm sure John can do it. :)
eXtremeTim
01-24-2004, 11:22 PM
Im looking forward to it nuclion. :) I might try and edit a few games myself. Would somebody be willing to help me?
MaDCaT75
01-24-2004, 11:47 PM
Im looking forward to it nuclion. :) I might try and edit a few games myself. Would somebody be willing to help me?
Everyone's too busy to help around here. I've asked for help a dozen times and nobody will.
Everyone's too busy to help around here. I've asked for help a dozen times and nobody will.
*sigh*.... will you ever drop it?
MaDCaT75, give people a break, alot of people active in this topic will be trying to get new games out so people like you can put them on your site
eXtremeTim
01-25-2004, 12:35 AM
Im about to take my first stab at this. Can somebody make some images for this game.
http://www.flashkit.com/movies/Games/Full_Game_Source/Jewels-Ron_Nort-8193/index.php?chk=no
If you could and post them shorty that would be great :)
Im about to open the game up right now :) Wish me luck everybody.
eXtremeTim
01-25-2004, 12:46 AM
Im trying todo this hope im doing it right.
images you requested are attatched
eXtremeTim
01-25-2004, 12:57 AM
I starting to wonder if this game can be lost :-/ I just played for like 10 minutes and didnt find a way to lose even when trying.
hahaha i dont tihnk it can, you finished converting it so it can be used on vb3 arcade?
NuclioN
01-25-2004, 01:03 AM
No...that game will go on forever. I have a diamonds game that is working with a 5 minutes timelock..when the time is up the score is set and this score is based on connecting lines of diamonds and so you have a very very large playingground for different outcomes. :) I will send John all the games i have to modify because it's realy frustrating to guess where to add code in a decompiler.
eXtremeTim
01-25-2004, 01:04 AM
Screw it got to find a different game.
cant wait to get some new games on my forum :D.....ive got all the ones that have been converted that i know of
eXtremeTim
01-25-2004, 01:07 AM
nvm
MaDCaT75
01-25-2004, 01:12 AM
Excuse me for being frustrated!
eXtremeTim
01-25-2004, 01:16 AM
okay i need images for this game. Im working on it now. This one does end :) So no problems with that this time.
just use the images i posted like 20 mins ago
NuclioN
01-25-2004, 01:24 AM
John is it possible to add this: var score = _root.score;
and then this: scorevariable = score;
where in this case 'score' is the method that is used so it can be 'points' or 'time' or 'money' etc.?
eXtremeTim
01-25-2004, 01:28 AM
Hmm im having a little bit of trouble with this one finding the game over frame :(. If somebody could port the kill kenny game that i posted a link to a minute ago and then let me see the fla file so i can see how they did it i would be greatful. This is my first day working with flash so want to makesure im doing this correctly.
eXtremeTim
01-25-2004, 02:01 AM
<a href="http://www.flashkit.com/movies/Games/Full_Game_Source/Pong_Gam-miCky-5228/index.php" target="_blank">http://www.flashkit.com/movies/Games...5228/index.php</a>
Can we get some images for this please. Im working on porting this one right now. I am going to have it submit score on win and lose.
I give up for now. Can somebody modify this game as well and send me the fla file so i can see where i messed up at.
zeeg99
01-25-2004, 06:04 AM
Thought this was a good addition I found on another thread
http://www.miniclip.com/Downloads.htm
Logician
01-25-2004, 08:02 AM
I've got user complaints from this thread and I agree that complainers has a point. Please refrain from flaming. Feel free to use vbulletin's very nice feature of "ignore user", if you cant stand someone particular here. Your efforts to keep the thread on topic is appreciated. Thank you.
Oblivion Knight
01-25-2004, 08:10 AM
Don't give up on Jewels, I love that game.!
It ends when there aren't any moves available, which often is around the 25,000 point mark.
Having said that, with ProArcade my current high score is on the 96,000 point mark.
eXtremeTim
01-25-2004, 01:27 PM
Oh well i still need so see an example fla file. I know im getting close but im messing up somewhere.
eXtremeTim, email the FLA to john[at]eovie.co.uk and I'll take a look. :)
eXtremeTim
01-25-2004, 02:28 PM
I deleted it to start over last night but never got around to starting over. Im sure i can do it if i see an fla file already done. Im pretty good and seing then doing.
Xyphen
01-25-2004, 03:50 PM
Where can I get some .fla files so I can get started on the games?? :(
zeeg99
01-25-2004, 04:04 PM
John, did you have to contact miniclip.com to get an fla with protections removed for modifying?
The two I downloaded won't open in Flash MX, just giving me an error about protected content =/
Littlebit
01-25-2004, 04:08 PM
Hello John,
I just wanted to say thanks again for sharing something that I haven't the knowledge to do so myself. My users are enjoying it and are very appreciative of the mozilla and Mac support. Thanks,also, to you and everyone else that's cranking out the games! :)
Rampag33
01-25-2004, 04:08 PM
Anyone has a screen shot of towerball for me?
Littlebit
01-25-2004, 05:05 PM
Anyone has a screen shot of towerball for me? Hey Rampage, here's one screen shot below.
I wanted to add a little something too after reading through the posts... I have a very small board with only some 7 or so, not so video game savvy people, who enjoy interacting with the arcade. I'm now starting to understand a little about MadCat's desperation to learn how to add a submit button to that one helicopter game after seeing the pages apon pages of crashing low scores developed at a rapid rate just with my little handful of users.
I do, however, also understand that beggars should never be choosers!....and I think that what (I think I read) you are working on in the way of pruning lowest scores in the future will remedy the issue all together. Just a little opinion to throw out. :rolleyes:
Alien
01-25-2004, 06:25 PM
I assume we have permission from the author to use the game above?
http://www.superdudes.net/games/
I believe they own it? Just looking for confirmation they we had permission to use it and edit the .fla as one of my users brought this question up.
I assume we have permission from the author to use the game above?
http://www.superdudes.net/games/
I believe they own it? Just looking for confirmation they we had permission to use it and edit the .fla as one of my users brought this question up.
NuclioN suppied it, he'd know. I presume that he checked it over.
AutomatikStudio
01-26-2004, 01:09 AM
Would this thread be the place to post links to .FLA files for people to modify or do we still need to e-mail John?
eXtremeTim
01-26-2004, 01:26 AM
id say post them here since others can now modify them as well.
New Game: Penguin Bashing
I think we all know this one ;)
Make sure you upgrade to the latest version of the Arcade, v1.01. Simply download the new zip and overwrite the files. :)
sonic3d
01-26-2004, 01:51 AM
i was waiting for this game. woohoo
l8er
sonic
Alien
01-26-2004, 02:16 AM
This game is awesome, been playing it for a week and so happy it came out for the arcade...
Bug found with Penguin Bashing game, however!
If you have a negative score (say, -563) it will not submit.. Won't submit a "0" score either. Maybe this is by design (which I don't mind whatsoever!) however if you click 'try again' after your bad score and get a GREAT score that is POSITIVE it will STILL not let you submit the score... Did I find something, or do I have gremlins? :D
-Jason
sonic3d
01-26-2004, 02:21 AM
This game is awesome, been playing it for a week and so happy it came out for the arcade...
Bug found with Penguin Bashing game, however!
If you have a negative score (say, -563) it will not submit.. Won't submit a "0" score either. Maybe this is by design (which I don't mind whatsoever!) however if you click 'try again' after your bad score and get a GREAT score that is POSITIVE it will STILL not let you submit the score... Did I find something, or do I have gremlins? :D
-Jason
i just did that and it worked for me. :P
i had a -563 and when i submitted it i got a zero.
then i had -563 and tried agian, i got a positive and i submitted and it worked.
l8er
sonic
Alien
01-26-2004, 02:31 AM
I'm really hoping it was just a fluke.. Trying to have it occur again...
eXtremeTim
01-26-2004, 03:08 AM
Any tricks to get him to go furthurer?
AutomatikStudio
01-26-2004, 03:17 AM
This game was huge popular on my old arcade. It would nice if somebody could modify it. It would defenitely need a "submit" button. Anywho:
http://www.flashkit.com/movies/Games/Funky_Po-Mahmoud_-8099/index.php
mini2
01-26-2004, 07:14 AM
What's the chances of someone smarter than I making Centipede?
zeeg99
01-26-2004, 07:42 AM
Yes, Yes, I'm a nub with flash, what I don't understand is "Create a new movie"...
Do I combine it with the other one? :)
I think i figured it out except I don't get what you're saying there... am I supposed to do something after inserting blah into clip 1..
BillaBongUSA
01-26-2004, 07:54 AM
The instructions say to "Create a new movie clip," which you can do by going to Insert >> New Symbol. Then, to my understanding, you just create a new layer for it in Scene 1 (or whatever it's titled), and make sure that it spans across the entire movie.
KuraFire
01-26-2004, 08:03 AM
New Game: Penguin Bashing
I think we all know this one ;)
Make sure you upgrade to the latest version of the Arcade, v1.01. Simply download the new zip and overwrite the files. :)
Nice new sig, dude, but you should make it link to this thread so that people can click on it from anywhere on the forum where you post :):up:
zeeg99
01-26-2004, 08:13 AM
Thanks billa =)
gmarik
01-26-2004, 12:32 PM
nice tutorial ...
This game was huge popular on my old arcade. It would nice if somebody could modify it. It would defenitely need a "submit" button. Anywho:
http://www.flashkit.com/movies/Games/Funky_Po-Mahmoud_-8099/index.php
That's hella a game, I hope John will port it soon. I love it.
D|ver
01-26-2004, 02:50 PM
thanks for this great tutorial, but i am a flash newbie and i could convert anything yet ;(
so can somebody help me converting this attached tetris version?
i love this version more than the standart one
Regards,
Diver
Oni no Densetsu
01-26-2004, 03:26 PM
Is there a hack coming (or available) that prevents people with a certain amount of posts from playing in the Arcade. Since I have two current champions in the games (I have all the games from here) that don't contribute anything to the forums at all.
Flare
01-26-2004, 03:57 PM
I'm having a bunch of requests for Flash Flash Revolution ... I can't find an FLA for it, does anyone happen to have a vbArcade version of FFR or something similar?
Is there a hack coming (or available) that prevents people with a certain amount of posts from playing in the Arcade. Since I have two current champions in the games (I have all the games from here) that don't contribute anything to the forums at all.
I'm having the same problem, and it's already in John and Kura's list:
https://vborg.vbsupport.ru/showpost.php?p=464451&postcount=2
AutomatikStudio
01-26-2004, 04:47 PM
Is there a hack coming (or available) that prevents people with a certain amount of posts from playing in the Arcade. Since I have two current champions in the games (I have all the games from here) that don't contribute anything to the forums at all.This is one of many features that are planned for upcoming versions.
Oni no Densetsu
01-26-2004, 04:48 PM
Good, because one of the members that have 0 posts got another championship spot. :P
Martyjp
01-26-2004, 05:54 PM
Is there a hack coming (or available) that prevents people with a certain amount of posts from playing in the Arcade. Since I have two current champions in the games (I have all the games from here) that don't contribute anything to the forums at all.
Is a hack needed? Set up a new usergroup and use promotions to promote people to that usergroup once they have made a certain amount of posts, then just set the permissions of the standard registered usergroup so that it cant play the arcade
Hialls
01-26-2004, 06:08 PM
Any chance anyone could release defend the castle?????
vbmechanic
01-26-2004, 06:20 PM
Excellent hack, I've installed in on a few different sites and it works flawlessly.
Oni no Densetsu
01-26-2004, 06:44 PM
Is a hack needed? Set up a new usergroup and use promotions to promote people to that usergroup once they have made a certain amount of posts, then just set the permissions of the standard registered usergroup so that it cant play the arcade
Why? That's way too much work. I don't wanna manually promote people all the time, it's pointless. A simple hack (which is apparently already in the works) saves me the time of promoting people. Unless, what you're talking about is automated.
Why? That's way too much work. I don't wanna manually promote people all the time, it's pointless. A simple hack (which is apparently already in the works) saves me the time of promoting people. Unless, what you're talking about is automated.
It's automated, but I prefer to wait because it's coming soon anyway.
Rampag33
01-26-2004, 07:46 PM
Hey Rampage, here's one screen shot below.
I wanted to add a little something too after reading through the posts... I have a very small board with only some 7 or so, not so video game savvy people, who enjoy interacting with the arcade. I'm now starting to understand a little about MadCat's desperation to learn how to add a submit button to that one helicopter game after seeing the pages apon pages of crashing low scores developed at a rapid rate just with my little handful of users.
I do, however, also understand that beggars should never be choosers!....and I think that what (I think I read) you are working on in the way of pruning lowest scores in the future will remedy the issue all together. Just a little opinion to throw out. :rolleyes:
I agree the Helicopter game and Bashing Penquins are the best examples of submit control. Especially the helicopter game. You can keep play for hours and then just submit the high score. Penquin doesn't remember your high score but atleast it still has the submit button.
Oni no Densetsu
01-26-2004, 08:52 PM
How long does it take to convert a flash game to be playable in the vB3 arcade, out of curiousity?
NuclioN
01-26-2004, 09:19 PM
I've seen multiple variations of catching the score in the sourcecode of the games and my guess is that this is an enormous barrier to produce games for this hack. It looks this requires advanced scripting skills.
BillaBongUSA
01-26-2004, 09:37 PM
I'm having a bunch of requests for Flash Flash Revolution ... I can't find an FLA for it, does anyone happen to have a vbArcade version of FFR or something similar?
Well, in the past, Synthlight has always been very protective of the source of Flash Flash Revolution. I think the only way that we'd see FFR for v3Arcade is if someone sent him instructions on how to modify the .FLA and asked him to release it him to release it himself, but even that seems unlikely.
Mellow
01-27-2004, 10:22 AM
What do I need to modify the .swf files and add some games here and how much is the software? Is there a freebie editor? Thanks for the help from a newbie-soon-to-be-flasher.
Joe
Oblivion Knight
01-27-2004, 10:31 AM
What do I need to modify the .swf files and add some games here and how much is the software? Is there a freebie editor? Thanks for the help from a newbie-soon-to-be-flasher.
JoeIt's not as easy as editing the .swf file, you need the source code - .fla file - to modify it for use with the Arcade. Macromedia Flash MX is generally the software you would use to do this, but I can't think of the license fee off the top of my head.
Mellow
01-27-2004, 10:35 AM
It's not as easy as editing the .swf file, you need the source code - .fla file - to modify it for use with the Arcade. Macromedia Flash MX is generally the software you would use to do this, but I can't think of the license fee off the top of my head.
I just checked, looks like $500 US.
Thanks for the info.
NuclioN
01-27-2004, 11:33 AM
John i think the tutorial on page 1 needs to be updated since there are more things to look for in various games if you want to 'catch' the score. Is it possible to give a general guideline where to look for and how to write these first commands for the score?
Sorry, I'm not feeling too well at the moment - taking a day or two off.
Will get back to work on this when I'm feeling a bit better.
zeeg99
01-27-2004, 06:49 PM
Guys, I really suck at this, im trying hard to get a Game off flashkit going, I think it'll be good too
If someone can help, irc.gamesnet.net #sieged please =)
Rampag33
01-27-2004, 08:47 PM
Yeah that's the only thing missing since the other arcade for vb2. Just need more games. So far all the games have been great.
zeeg99
01-27-2004, 11:13 PM
W00t, i got one, gonna post in a second!
zeeg99
01-27-2004, 11:17 PM
This was taken from flashkit.com =)
This is my first one, and I did a Submit button since I was unable to get it to work right otherwise =)
P.S.
Someone teach me how to do it without a Submit button =)
You can try out the game here: http://forums.sieged.net/arcade.php?do=play&gameid=21 (demo/demo)
Updated 1-28 4:18am (CST)
It now has a few fixes, when you gain levels, your score increases faster and the next level takes %50 more to reach, the game shouldn't end now (unless you die), and the space ships now show correctly.
I'll try to get it so each level speeds up the amount of space ships/how fast they go, I'm new to flash so gimme time =)
I also want to add different weapons for it.
zeeg99
01-27-2004, 11:36 PM
If someone knows flash, I want to improve Mars Rover, by making it for each level, it throws more of those balls down faster, and you get more points for each kill at higher levels
Also if you noticed, they seem to appear in the middle of the screen sometimes, not sure how to fix this as I dont know flash
AutomatikStudio
01-27-2004, 11:52 PM
This was taken from flashkit.com =)
This is my first one, and I did a Submit button since I was unable to get it to work right otherwise =)
P.S.
Someone teach me how to do it without a Submit button =)
You can try out the game here: http://forums.sieged.net/arcade.php?do=play&gameid=21 (demo/demo)Thanks for the new game...like you said...it could use some improvements. Also...please don't post links to try out the game when you have to register on your boards to see it. It's kinda pointless.
BillaBongUSA
01-27-2004, 11:56 PM
Well, he posted a working user name and password so that you could try it out...
AutomatikStudio
01-28-2004, 12:12 AM
Well, he posted a working user name and password so that you could try it out...Doh....someone...quick...punch me in the face...
zeeg99
01-28-2004, 12:30 AM
*punches*
I'm going to TRY and learn some flash, I also have an open source jewels game I want to modify, I just need to add a time limit to it and maybe a couple modifications =)
MaDCaT75
01-28-2004, 01:52 AM
If anyone wants to put in a submit button for me for helicopter PM me I like to play for hours before submitting my score!
eXtremeTim
01-28-2004, 01:57 AM
While it might work its not tracking the game duration.
zeeg99
01-28-2004, 06:00 AM
Ok, I've made the score increase per level, removed the "Boss" thing, and I fixed the aliens crafts not showing up right away (had to remove thing in bg)..
I'm working on making it shoot the balls faster per level :P
Oblivion Knight
01-28-2004, 09:34 AM
Cool new game zeeg99 :)
I tried doing this for ProArcade a while back, but failed miserably.
It would seem that you missed something in the code though if it's not tracking the game duartion like eXtremeTim says.. Hopefully this issue can be fixed. Thanks for sharing.
Oni no Densetsu
01-28-2004, 04:24 PM
I'm still unsure of what program I would need to convert my own flash games for vB arcade. Assitance?
AutomatikStudio
01-28-2004, 04:33 PM
I'm still unsure of what program I would need to convert my own flash games for vB arcade. Assitance?You need Macromedia Flash (http://www.macromedia.com/software/flash/).
yabba
01-28-2004, 07:43 PM
This was taken from flashkit.com =)
This is my first one, and I did a Submit button since I was unable to get it to work right otherwise =)
P.S.
Someone teach me how to do it without a Submit button =)
You can try out the game here: http://forums.sieged.net/arcade.php?do=play&gameid=21 (demo/demo)
Updated 1-28 4:18am (CST)
It now has a few fixes, when you gain levels, your score increases faster and the next level takes %50 more to reach, the game shouldn't end now (unless you die), and the space ships now show correctly.
I'll try to get it so each level speeds up the amount of space ships/how fast they go, I'm new to flash so gimme time =)
I also want to add different weapons for it.
After the big boss in Level 15 ends the game :-( no loop ?
Greets yabba
zeeg99
01-29-2004, 03:56 AM
I think I changed that, check it again
xxxsaint
01-29-2004, 04:25 AM
could someone tell me where I can get that Penguin Bash .FLA ?
<a href="http://www.handy-discount.at/SantaV1.php" target="_blank">http://www.handy-discount.at/SantaV1.php</a>
Very fun and cool game, much better than smashing penguin.
AutomatikStudio
01-29-2004, 02:18 PM
http://www.handy-discount.at/SantaV1.php
Very fun and cool game, much better than smashing penguin.So do you have the source file or were you just informing us that you like the game?
Amzadi
01-29-2004, 04:41 PM
Where is the hack to install the Arcade itself for VB3? I see all the games, but not the Arcade hack itself.
corsacrazy
01-29-2004, 04:43 PM
Where is the hack to install the Arcade itself for VB3? I see all the games, but not the Arcade hack itself.
click johns sig
corsacrazy
01-29-2004, 05:17 PM
CAN SOMEONE EDIT THE PENGUIN GAME
everyone has got 3235 which is the max score so there really is no point of playing it again !
Amzadi
01-29-2004, 05:48 PM
click johns sig
Duh, thanks! I'm not usually that stupid. This blasted cold is kicking my butt. By the way, great hack John!
msimplay
01-29-2004, 09:26 PM
CAN SOMEONE EDIT THE PENGUIN GAME
everyone has got 3235 which is the max score so there really is no point of playing it again !
yeh whats the point of that :mad:
Schorsch
01-29-2004, 09:32 PM
CAN SOMEONE EDIT THE PENGUIN GAME
everyone has got 3235 which is the max score so there really is no point of playing it again !
same here, it is a pity :(
Good point. Any ideas? No matter what, there's always got to be a top score...
Detomah
01-29-2004, 09:38 PM
CAN SOMEONE EDIT THE PENGUIN GAME
everyone has got 3235 which is the max score so there really is no point of playing it again !
Yeah I noticed that. :/
It could do with being changed so that it does something along the lines of taking the points from 10 shots that go to make up the overall score, then it auto submits that score. That way it would make it much more difficult to get everyone getting the maximum score as virtually nobody would get 3235 ten times on the trot. :)
Oni no Densetsu
01-29-2004, 09:43 PM
I tried opening a .swf file at miniclip.com that was available for download into my Flash MX program. But I says that I cannot open a protected movie file or whatever. Can someone help?
Detomah
01-29-2004, 09:48 PM
I tried opening a .swf file at miniclip.com that was available for download into my Flash MX program. But I says that I cannot open a protected movie file or whatever. Can someone help?
It has to be in the .fla format to edit the game if I read right, that's what makes it so difficult to find a load of new games, as most game makers want you to pay for the privledge of using and editing their games. :)
Oni no Densetsu
01-29-2004, 10:02 PM
Darn. Is there a way to convert the games or a place that someone can suggest where .fla games are available for download? :D
NuclioN
01-29-2004, 10:04 PM
Miniclip games are ok and copyright protected but there are many other good games with no copyright claim because the author never thought it could be opened and used in this way. If they aren't respond to mail with questions about the use on other places then i'm sorry but then the game will be in the arcade if i can modify it. These games aren't commercial so the author has no financial loss if some forums have them to play with. I understand that the towerball game will have claims that it is owned by *** but the swf is on the web and is shared with no awareness about copyright.
BillaBongUSA
01-30-2004, 12:01 AM
New game: Disco Racer
Installation
Well... You know the drill...
Okay, this game doesn't correctly record the amount of time that was spent playing, and I know why, but I'm having trouble with thinking of a way of correcting it. Anyway, if I ever get it fixed, I'll let you know and upload a new .SWF.
[Edit: Oh, and here's a screenshot.]
[Edit: Okay, the SWF's been fixed.]
[Edit: 1/29/04, 11:19 CST: Okay, fixed the problem with the wrenches.]
Amzadi
01-30-2004, 12:11 AM
Personally, I'm just happy seeing new games being added on a regular basis.
Thanks!
BillaBongUSA
01-30-2004, 12:35 AM
No problem. :D
Okay, I just fixed the time problem, so if anyone else has downloaded it, you can re-download the zip and replace the SWF if you want to.
Thanks for the release BillaBongUSA - installed on www.v3arcade.com and working fine. :)
futureal
01-30-2004, 01:49 AM
Detomah: I could probably make that change to the Penguin game, but I'm not sure where to find the source. If someone has it, by all means let me know. I am hesistant to decompile anything and I can't find the original authors for it.
Amzadi
01-30-2004, 01:54 AM
John, I've been trying to catch up by reading the posts one by one. Did you say you were going to make it so only certain groups could access the Arcade or is it already in the zip?
BillaBongUSA
01-30-2004, 02:05 AM
New game: Joust
Installation
Well... You know the drill...
It's kinda crappy, but it's Joust nonetheless. As you can see in the screenshot, this game doesn't really fit in the table of the default style, but the game doesn't look good at sizes smaller than that due to the scanline effect that it's got.
BillaBongUSA
01-30-2004, 02:13 AM
John, I've been trying to catch up by reading the posts one by one. Did you say you were going to make it so only certain groups could access the Arcade or is it already in the zip?
Yep, allowing access to certain user groups is already a feature in v3 Arcade. :)
SnowBot
01-30-2004, 02:19 AM
great new games guys :) cheers for all the hard work and effort :)
Amzadi
01-30-2004, 02:24 AM
Yep, allowing access to certain user groups is already a feature in v3 Arcade. :)
Thanks for the quick reponse BillaBongUSA. I was reading so much of the old stuff, my eyes were starting to cross.
Oni no Densetsu
01-30-2004, 02:25 AM
One of my members brought this up, the wrenches in Disco Racer do not calculate any points at all. Can someone fix this?
BillaBongUSA
01-30-2004, 03:22 AM
Ah, found the problem... The game was coded by someone who spoke German, so some of the words in the code had strange characters in them. Anyway, I updated the SWF in the zip again, the wrenches should now add to your score.
corsacrazy
01-30-2004, 07:51 AM
instead of just a next button mate on disco racer how about play again and a next button... ps i see the race bit but not much disco LOL
Detomah
01-30-2004, 01:38 PM
instead of just a next button mate on disco racer how about play again and a next button... ps i see the race bit but not much disco LOL
Was going to mention this. :) In Disco racer, there is a couple of things that i'd like to possibly get added if the know how is there.: ) Would it be possible to make the game something like 3 or 5 mins long instead of 1, it'd make it so much more playable. also as corsa mentioned is there any chance to add a play again button as it's an awfully long winded process to start again if you crash into the first car you see. I was going to mention the wrentchs, but already dealt with. :)
futureal - I'm not sure who actually added the Penguin game in the first place to be honest, but i'll try and track them down and get them to pass the .fla file onto you so it can be improved. :)
FAO Mars Rover Editor - That game has some serious potential, I found a couple of problems with it though, after getting to lvl 10 I found the speed of the incoming missile things had still not got any quicker (think you already knew of that one), I also found that when the game ended, you get to submit your score, but it then cam up on screen that you did not have permission to add the score, so in the high score table it looked like nobody had ever played, but if you looed at the high score table on the game over screen you saw lots of people had played, so I presume it's a slight bug with the score submission system in that game.
Does anyone have the .fla file for Maeda path, I want to use that game but there is no point with it having such a huge bug in it. Basically all you have to do is click on the arrow at the start of the level, then leave the play area, then click on the end of level arrow to complete each level, which is basically no fun at all and it kind of takes the challange out of it. So if anyone has the .fla for it i'll have a go at doing that one. :)
Oni no Densetsu
01-30-2004, 03:53 PM
I'm still confused on how to put in keyframes and add the stuff since I've been trying to work on Funky Pong.
Also, shouldn't the first post of this thread be update with the new games? :P
Oblivion Knight
01-30-2004, 04:31 PM
Joust is severly buggy, and always has been..
The game randomly restarts itself and there are several graphical problems.. It's really not worth the effort.. ;)
BillaBongUSA
01-30-2004, 08:54 PM
I dunno, Joust works fine for me except for the fact that the bird sometimes gets stuck when you try to wrap around from the top left corner to the top right corner.
Oh, and I've looked at all of the suggestions for Disco Racer, and I'll work on them in a little while. But I dunno, one minute already seems like a long time to play it, but if anyone else wants the time to be extended, I guess I can change it.
Oni no Densetsu
01-30-2004, 10:13 PM
Can someone help me? I'm trying to convert the game Funky Pong for v3 Arcade. But the instructions on the first page confuse me, sadly enough. So I took a screenshot of the open document and was wondering if someone could show me where to put the coding show in the first post of this thread?
Email the fla to john@eovie.co.uk and I'll take a look. I think someone sent it to me before, but my server has been down for a while (including all the email on it).
New game, as promised:
? Hexxagon - https://vborg.vbsupport.ru/showpost.php?p=471060&postcount=938
Oni no Densetsu
01-30-2004, 10:42 PM
I don't want it converted for me. I just want to know where I'm supposed to put the scripts. But I will send it anyway.
Doesn't matter, I found the FLA.
And here it is:
? Funky Pong - https://vborg.vbsupport.ru/showpost.php?p=471092&postcount=940
Detomah
01-31-2004, 12:54 AM
And here it is:
? Funky Pong - https://vborg.vbsupport.ru/showpost.php?p=471092&postcount=940
It may be a little crude, but my users will love this game. :D
deathemperor
01-31-2004, 01:14 AM
John, if I want to put Arcade games on another host, what do I have to do to make the Arcade ok in my main site ?
Amzadi
01-31-2004, 01:29 AM
Is that even possible? I thought it worked together with the Forum software? Sounds like a major re-write of the hack to me.
Oni no Densetsu
01-31-2004, 03:11 AM
Man, I just wanted help on what to do. Not for you to do it for me. :P
Amzadi
01-31-2004, 06:04 AM
Don't look a gift horse in the mouth. :)
AutomatikStudio
01-31-2004, 06:51 AM
Man, I just wanted help on what to do. Not for you to do it for me. :PYou said in an earlier post "I just wanna know where to put the scripts"....well what else is there? If he tells you where to put everything then he's practically done all the work anyways? And we're all wanting new games quick...so no offense...but I'd rather John put out new ones now instead of waiting for tons of people to figure out how to do it.
NuclioN
01-31-2004, 08:57 AM
I've send John a poker game. Hope he can let it work. I have permission from the author to use it. :)
Man, I just wanted help on what to do. Not for you to do it for me. :P
There's no set rule on where to add the code for games to work in the v3 Arcade. You need to know Flash in order to do it... sometimes entire games are in their own submovies, or others have more difficult ways of defining whether or not the game is over.
It's usually different for every game.
NuclioN
01-31-2004, 10:44 AM
I realy don't know what to do now. I have 30 + topgames..poker, pinball, blackjack, slots, etc. and all of them worked in the arcade. Some have buttons at the right spot so the gameover point of the the game is set already and if they don't have a button the code to launch the score is present (code for the futureal way of setting the score). Some games i can't share because there is no permission untill this day from the author to use them.
With my decompilers i can do a lot but in this arcade they seem useless. It's because the score must span the entire game in a movieclip and that meens gameover so far. If there is a workaround for this then i can go back to work. Altough i want to share every game it will require the skills and time of the members who have the right decompiler to modify the games. As i said...the points in the games are already there so it's just: add 1 layer with 1 movieclip and add the scorelines/gameovercode to the present 'old' futureal code.
I will upload the games and PM/mail John and maybe another skilled flashman with the right decompiler when the games are available. I hope we can modify every one of them. They are awesome.
SnowBot
01-31-2004, 01:24 PM
why not send the files to John, im sure he would do the games for you.
Cossa
01-31-2004, 04:55 PM
Any way to show which game a person is playing in the arcade via the Who's Online?
? Flash Poker - https://vborg.vbsupport.ru/showpost.php?p=471414&postcount=949
C.Birch
01-31-2004, 08:39 PM
john any hope in getting any more of the miniclip.com games have looked at there site and theres a few but i can not find anyway of buying the fla's for them
BillaBongUSA
01-31-2004, 08:46 PM
You'd have to contact them and ask for their permission to use their games.
MaDCaT75
01-31-2004, 08:48 PM
can someone find a minesweeper game maybe?
PiotrasG
01-31-2004, 10:18 PM
can someone find a minesweeper game maybe?
here is one at flashkit
http://www.flashkit.com/movies/Games/Full_Game_Source/Mineswee-Chris_Le-2589/index.php
Rampag33
02-01-2004, 04:07 AM
Woohoo tons more games. Anyone going to do Jewels?
MaDCaT75
02-01-2004, 04:35 AM
what is jewels like?
Oblivion Knight
02-01-2004, 08:13 AM
Woohoo tons more games. Anyone going to do Jewels?
eXtremeTim is working on this I believe.. :)
Zorck
02-01-2004, 03:08 PM
And here it is:
? Funky Pong - https://vborg.vbsupport.ru/showpost.php?p=471092&postcount=940
I see a bug in this game, if you make a convination of (back, forward and loop) the game play solo for ever :D.
You can see the my score of 147 here
my page (http://www.redactiva.net/board/arcade.php?do=scores&name=funkypong)
I thing that you need to disable the right click menu adding this in the .fla
Stage.showMenu=false;
I put in the template this sentence but in this game no solve the problem
<param name="menu" value="false">
Sorry for my bad bad english :(
C.Birch
02-01-2004, 05:15 PM
defo i bug just tryed it out myself
I didn't read through the entire page but is this add-on hack a bandwidth hog?
I didn't read through the entire page but is this add-on hack a bandwidth hog?
If you're going to install a lot of games, obviously it'll use bandwidth when users play.
Amzadi
02-01-2004, 05:37 PM
It's not light on bandwidth, so I only offer the games to my paying members.
C.Birch
02-01-2004, 05:45 PM
john how do you get the games(fla) from miniclip and how much it cost? because that snowboarding game would be great and a few other ones.
john how do you get the games(fla) from miniclip and how much it cost? because that snowboarding game would be great and a few other ones.
I don't, I use a program to convert to .FLA and do it that way. Howeverm, I only do this with Miniclip games that are on the "Free Site Content" page. :)
C.Birch
02-01-2004, 06:39 PM
can you say what the convert software is and i try and help with getting some the free miniclip games working if i can work it out.
can you say what the convert software is and i try and help with getting some the free miniclip games working if i can work it out.
It's $100 USD, by the way. The free demo doesn't convert most of the Actionscript.
C.Birch
02-01-2004, 06:47 PM
$100 is not that much when you think of how handy the software would be for people like myself that run a number of sites. incase the fla's are every lost to any of them i be able to get them back from the swf's on the site servers.
Doesn't always work though. Will send you the link.
C.Birch
02-01-2004, 06:50 PM
thanx john
version2
02-01-2004, 07:47 PM
thanx john
Good grief. This rocks!
MaDCaT75
02-03-2004, 07:01 AM
*sigh* playing copter and crashing over and over is wasting bandwidth cuz my skin is high graphics...... please someone do me a submit button for copter?
Detomah
02-03-2004, 10:56 AM
*sigh* playing copter and crashing over and over is wasting bandwidth cuz my skin is high graphics...... please someone do me a submit button for copter?
I aint being funny or having a dig or anything, but in the amount of time you've spent asking other people to do this for you, you could have bought a Flash tutorial book, read it 6 times and done the submit button yourself.
John - Could you possibly send me a link to that program too please, i'd like to have a bash at some of this myself. :) For all I know I might even already have the program somewhere on a disk, but won't know till I go check it out. :)
AutomatikStudio
02-03-2004, 01:17 PM
*sigh* playing copter and crashing over and over is wasting bandwidth cuz my skin is high graphics...... please someone do me a submit button for copter?Agreeing with Detomah...and also asking "Why don't you use the first version of copter that John released?" Yo know...the one with the "submit" button...
Amzadi
02-03-2004, 05:22 PM
Madcat, if you haven't guessed, no-one is going to do it for you. Try offering $$$ or do it yourself.
MindTrix
02-03-2004, 06:19 PM
Madcat will not use the original because it is not coloured, and is different. Also she has offered money for someone to do it if you go look ;) And finally, Madcat if its eating up your BW because of your skin, thats got nothing to do with the arcade, its a risk you take for having a heavily graphic'd skin
Rampag33
02-03-2004, 08:12 PM
Mindtrix is right. Graphical skins kill bandwidth fast. Its would be better just to use some simple html or javascript effects if you can.
MaDCaT75
02-03-2004, 08:51 PM
Agreeing with Detomah...and also asking "Why don't you use the first version of copter that John released?" Yo know...the one with the "submit" button...
Because I hate it.... period.
AutomatikStudio
02-03-2004, 09:04 PM
Because I hate it.... period.Beggars can't be choosers.
SnowBot
02-03-2004, 09:41 PM
Beggars can't be choosers.
:) well said.
Zorck
02-04-2004, 01:05 AM
I found in a cd of flash things whit a few fla&swf of good games, where I can upload it? are 7mg more o less.
How the heck do you make a blank movie clip, and what do you use? I really wanna have this on my forum =(
I suck at teh technology. :o
BillaBongUSA
02-04-2004, 02:29 AM
You need to use Flash, which can be downloaded at the Macromedia (http://www.macromedia.com) website.
MaDCaT75
02-04-2004, 02:37 AM
Beggars can't be choosers.
wrong.
AutomatikStudio
02-04-2004, 02:53 AM
wrong.Hahah..okay...so people who beg can freely be picky about what people give them?:rolleyes:
*arie
02-04-2004, 03:54 AM
Lol.
Amzadi
02-04-2004, 04:36 AM
You gotta wonder about the parents that raised people like that. Ever hear of respect and courtesy?
Castel
02-04-2004, 05:58 AM
Yeah I noticed that. :/
It could do with being changed so that it does something along the lines of taking the points from 10 shots that go to make up the overall score, then it auto submits that score. That way it would make it much more difficult to get everyone getting the maximum score as virtually nobody would get 3235 ten times on the trot. :)
The original of this game is a tally of 5 scores instead of one shot. http://yeti.e-medien.com/playonline.html
Here's the url for the program that makes it possible to mod SWF movies: http://www.ave-imperator.com/
(Mods, feel free to remove if you think it's inappropriate)
Amzadi
02-04-2004, 08:08 PM
Hey John? Are you still going to release new games here?
Yep, I've just been away for a few days... haven't had the chance to release anything.
Giveit2u43
02-04-2004, 09:15 PM
Hahah..okay...so people who beg can freely be picky about what people give them?:rolleyes:
I once had a Begger in Birmingham give me a cigarette back because it was a Embasy No.1 and not a Regal.. *L*
Amzadi
02-04-2004, 09:46 PM
Yep, I've just been away for a few days... haven't had the chance to release anything.
Thanks! I only trust using the games you've approved.
Funky pong has been updated, download the new zip and overwrite the SWF. :)
You might also want to wipe all funky pong scores by running this query -
DELETE FROM gamesessions WHERE gamename='funkypong'
SnowBot
02-05-2004, 09:01 AM
hehehe this means i will not be the champ anymore :(
good work John
Zorck
02-05-2004, 10:04 AM
I have a .rar file whit a few good games, whit the fla files.
Who can convert to v3arcade? or how I can convert this files.?
Thanks a lot.
PiotrasG
02-05-2004, 03:26 PM
zorck john can do it or read the first page of this thread.
version2
02-05-2004, 03:30 PM
zorck john can do it or read the first page of this thread.
I wish there was some howto's on converting games. I would be willing to do some conversions if I knew what the process was and what was needed.
AutomatikStudio
02-05-2004, 04:19 PM
I wish there was some howto's on converting games. I would be willing to do some conversions if I knew what the process was and what was needed.Hmm...how about...read the first page of this tread where it says "CONVERTING GAMES"....
version2
02-05-2004, 04:40 PM
Hmm...how about...read the first page of this tread where it says "CONVERTING GAMES"....Good grief. I read it once and forgot where. I was starting to think I had never read it at all. Thanks, AutomatikStudio.
Edited to add:
Hmm, we would still need to rip fla files from the actual swf's...like in the case of the miniclip type games, correct? I am trying to read up on how this is done.
AutomatikStudio
02-05-2004, 04:59 PM
Good grief. I read it once and forgot where. I was starting to think I had never read it at all. Thanks, AutomatikStudio.
Edited to add:
Hmm, we would still need to rip fla files from the actual swf's...like in the case of the miniclip type games, correct? I am trying to read up on how this is done.Yes, as .SWF files cannot be edited.
Amzadi
02-05-2004, 05:47 PM
Funky pong has been updated, download the new zip and overwrite the SWF. :)
You might also want to wipe all funky pong scores by running this query -
DELETE FROM gamesessions WHERE gamename='funkypong'
What was changed in the Funky Pong update?
The right click cheat was fixed... i.e. there's no more right click menu. (Or at least not one in which the movie playback can be controlled.)
yabba
02-05-2004, 11:59 PM
My Users found another Bug in Funky Pong in some browsers stands the paddel stands still in the beginnig of the Game. Seen with the "Safari" Browser.
Any Chance to fix it ?
MrNase
02-06-2004, 05:53 AM
May i translate that mod or will you release another version in the near future?
I hope rc4 gets released today so i can start my work on your mod and
I hope this will help me to get new life to my community :)
Amzadi
02-06-2004, 06:53 AM
Won't the arcade work with RC4?
MrNase
02-06-2004, 07:51 AM
i hope so... but i would have to translate it to german :)
Link14716
02-06-2004, 11:13 PM
Umm.... something doesn't look right here... heh.
1 UnleashInfinity Flash Poker Champion! 50148 um...something seems wrong here 1:46am Feb 4 228 secs
Giveit2u43
02-07-2004, 01:50 AM
Umm.... something doesn't look right here... heh.
1 UnleashInfinity Flash Poker Champion! 50148 um...something seems wrong here 1:46am Feb 4 228 secs
Seems if you win with your first hand it adds the score to the end of the 50 so it becomes 50150 instead of 200..
BlackxRam
02-08-2004, 06:05 AM
Is there a schedule for new games? Do you have a expected release date for any?
BillaBongUSA
02-08-2004, 06:11 PM
Well, crap. I tried to release a new game, but for some reason the movie clip that's supposed to initiate a session isn't doing anything and I can't figure out why. Oh well, I'll keep working on it.
Amzadi
02-08-2004, 06:19 PM
We appreciate the efforts BillaBongUSA but isn't this just like Breakout? My members wouldn't appreciate 2 games so similar. They whined for days until I removed the 2nd Helicopter game. Bunch of spoiled brats.
version2
02-08-2004, 06:47 PM
We appreciate the efforts BillaBongUSA but isn't this just like Breakout? My members wouldn't appreciate 2 games so similar. They whined for days until I removed the 2nd Helicopter game. Bunch of spoiled brats.
And my members loved having different versions.
Amzadi
02-08-2004, 07:32 PM
Wanna exchange your members for mine? I'll trade you!
Lost Prophesy
02-11-2004, 09:53 AM
I am not sure if this is the right spot to place this ... but I went to www.Mugglenet.com and noticed they had a bunch of flash games! I emailed them asking them if I could use them and I got this email back ....
Yes you may use them.
Emerson
MuggleNet.com
So I have permisson to use this link of games ....
http://www.mugglenet.com/games/shockwave/
So the games that are possible can you guys get them to work with the arcade? I would want them due to my forum is a Harry Potter forum ... thanks! If I don't post this here where do I post them?
- LP
Schorsch
02-11-2004, 10:26 AM
no it's not possible to use them because we need the .fla files in order to edit them.
Lost Prophesy
02-11-2004, 11:30 AM
Well ... where would i get them, I mean if I opened up the swf files in flash could i get it from that, or would the original creator have to have them?
- LP
AutomatikStudio
02-11-2004, 11:39 AM
Original creator. They would have to supply you with the .FLA. Please read other posts in this thread as this issue has been covered NUMEROUS times.
New Game, Pingu Slap! :)
? Pingu Slap - http://www.v3arcade.com/play/showthread.php?t=53
And another...
New Game: Monkey Lander
Available at http://www.v3arcade.com/play/showthread.php?t=55
gmarik
02-14-2004, 08:05 PM
Who could download an test this?
http://www.vbulletin-germany.com/forum/showthread.php?s=&threadid=9305
BlackxRam
02-16-2004, 06:37 AM
Monkey Lander is a fun game however its another flash game that suffers from the inevitable 'ending' theres only 10 levels and then it ends. While there will probably never be a Absolute TOP high score because teh Fuel gage determines points as well but its hard to play a game that will end up having the leader being the fastest at it. Even if everyone gets ALL the fruit.
pastyrhd
02-17-2004, 06:49 AM
how do you issue a calenge to another member
KevinUK
02-17-2004, 06:52 AM
There is a pretty good game available at http://www.coldtomatoes.com/games/juggler/
I'm not sure where the .fla is though :(
Kevin
Amzadi
02-17-2004, 07:11 AM
how do you issue a calenge to another member
One of the cool places you can challenge another player is to click on their name if they have a high score in the Arcade.
bigreefer
02-17-2004, 07:22 PM
Check this out http://www.yetisports.org/playonline.html#
:)
Chris|vB
02-17-2004, 11:30 PM
Thank you very much.
gamexc
02-19-2004, 05:31 PM
I thought this game was interesting if anyone wants to take a look at it
http://www.flashkit.com/movies/Games/Full_Game_Source/Airfox-Mike_Law-8763/index.php?chk=no
Marulatree
02-22-2004, 10:15 AM
Awesome game - Can anyone port it to vbarcade? :)
I thought this game was interesting if anyone wants to take a look at it
http://www.flashkit.com/movies/Games/Full_Game_Source/Airfox-Mike_Law-8763/index.php?chk=no
C.Birch
02-22-2004, 02:03 PM
that airfox game as a real bad bug in in when they play it, that being is you crash into a other ship the title screen comes up with everything flying over it.
vBulletin® v3.8.12 by vBS, Copyright ©2000-2025, vBulletin Solutions Inc.