The Arcive of Official vBulletin Modifications Site.It is not a VB3 engine, just a parsed copy! |
|
vbProArcade v1.0 Flash Games Development Details »» | |||||||||||||||||||||||||
vbProArcade v1.0 Flash Games Development Thread
This thread is intended to provide support for those who wish to find new games for their Arcades, or wish to assist in the development of new games for vbProArcade, or wish to modify existing, open-source Flash games for use with vbProArcade. Note to vbulletin.org moderators: I could not find an appropriate place for this thread, other than the Beta Hacks forum, so here it is. If you feel this should be moved somewhere else, by all means do so. An additional reason I posted it here was because, to my knowledge, only registered users can view this thread, which may contain hack code at one point or another. For the hack itself, you will need to see this thread. The Flash Development thread that you see here is just that, and should only be for the discussion of creating/modifying games to work with vbProArcade. Any discussion of or support for the hack itself will be conducted in the other thread. For documentation on how to modify a game to work with vbProArcade, please see the vbProArcade documentation, which will always be contained in this post. I will try and update this post whenever I update the documentation itself. A list of current games can you find in the second post. Before you modify ANY game's source or post it here, you must MAKE SURE that you have the author's permission to modify and redistribute the code, compiled or otherwise. As games are modified and posted, I will update this post to list them, so that people running vbProArcade may find and install them more easily. Show Your Support
|
Comments |
#612
|
||||
|
||||
I had 170 + queries on the proarcade page and after the modified php and templates 20!! The highscores are gone but is there a way to list the scores somewhere without the load of queries?
|
#613
|
||||
|
||||
Over half the games at the zone are Java-based. If you can rightclick a file and get the "about macromedia 6" popup, it's a swf. If you see it go 'loading sounds, images and notice an 'applet started' saying in the status bar, it's java-based. Even the versions at Shockwave.com are java games.
|
#614
|
|||
|
|||
Quote:
ive got 2 problems with this...first one is there is no sounds yet there is an option for sound on/off, second thing is when i start the game i get a message saying system is too low and will not be keeping score. This is not a message from my computer but with-in the game itself before beginning playing. I played afew games and it appears to be keeping score with no problems... :lick: |
#615
|
||||
|
||||
i broke my arcade!! LOL
http://forum.ragezone.com lol use ragezone skin and go to /proarcade.php and look!!! |
#616
|
|||
|
|||
Quote:
2. Mine does that too for some reason |
#617
|
|||
|
|||
Quote:
|
#618
|
||||
|
||||
Quote:
|
#619
|
||||
|
||||
hey i ++++ed my pc totally and pro arcade dont work.. i think its my active x settings but i enabled it all and it dont work.. but it works on my other 2 pcs..
any ideas please? |
#620
|
||||
|
||||
Tutorial: How to modify games
For those of you who want to modify games but aren't sure how to get started here's a little tutorial to help you out. The first thing you'll need to do is find the score variable. You could just search through the code in the .fla and find it yourself, but this is how I do it. I use a program called flash tool set which can be downloaded here: Flash Tool Set Open the .swf file with F.T.S. and look up at the top toolbar.. Click the "aB" text icon. Screenshot 1 You'll see a list of variables used within the game.. Most of the time it will list the score variable.. For this particular game you can see that the score variable is gScore. Screenshot 2 Now that you know the score variable, open the game's .fla file with Flash MX. Up at the top (center frame) you'll see the actions layer. Find the "game over" section of that layer (usually at or close to the end) and click it. Screenshot 3 Now look just below the frame that shows the images and you'll see the contents. Up at the top right hand corner click the little list icon and select "expert mode" (see screenshot below). Screenshot 4 Then insert the vbproarcade code in the text area. Screenshot 5 In the top lefthand corner click file and then save. Now click file again and select "export movie".. It will then export your modified .fla as a .swf file. Upload it and test to make sure it works. Some games aren't as easy so you might have to experiment a little. On games that don't end by themselves (such as roulette), you'll have to add a "submit score" button. Just go to the layer where you want the button to appear, then look up at the top and click window + common libraries + buttons. Choose the button that you want then left click on it and drag it to the scene. Once you have it in the scene just paste this code into the text area for the action: Code for buttons Code:
on (release) { // set up vars to return vpaver = "100B2"; scorevariable = score; action = "gameover"; game = gamename; score_loc = location + "/proarcade.php"; // this needs to match the Admin CP value // and should be between 0 and 31 hashoffset = 5; // do security shuffle to return newhash subhash1 = gamehash.substr(0,hashoffset); subhash2 = gamehash.substr(hashoffset); newhash = subhash2.concat(subhash1); // redirect back to vbProArcade getURL (score_loc, "_self", "POST"); } Hopefully this is helpful to some of you guys. I figure if more people know how to modify the games we'll have a lot more games to choose from. |
#621
|
|||
|
|||
Nice Tutorial EvilLS1.
|
Thread Tools | |
|
|
X vBulletin 3.8.12 by vBS Debug Information | |
---|---|
|
|
More Information | |
Template Usage:
Phrase Groups Available:
|
Included Files:
Hooks Called:
|