April 27th, 2006
Stick Arena is a multiplayer game that brings fast paced action in the style of Quake and Unreal Tournament, to the web browser. You will guide your stick-shaped characters in many different top down environments, armed with all kind of weapons: from a Katana to an AK-47.

We have interviewed the developers at XGenStudios, asking them to share some details about their great game.

Q: Can you introduce Stick Arena to our readers?

Skye: Stick Arena is a real-time multiplayer top-down frag-fest, playable from any browser with Flash Player 7 or higher. Since launch in November of 2005, 1.1 Million Registered players have racked up 113 Million kills in just under 30 Million rounds. During peak hours, we’re seeing ~3,000 simultaneous users logged into Stick Arena on XGenStudios.com; distribution on the web’s largest game portals is under negotiation.

Q: When did you come up with this idea and how long did it take to develop?

Skye: During last year’s Game Developer’s Conference (March 2005), we made a decision to be the first Studio to release a successful browser-based action MMO utilizing only FP 7 technology and make it available for free. “No plug-in installation” was an essential requirement; we wanted to reach the largest audience possible and allow access from public systems with potential security restrictions.

We began designing the game in early April and released it publicly on November 1st; just under 8 months from conceptualization to launch.

Q: How many people worked on this project?

Skye: Our team size was 6 throughout most of development; 1 Flash Developer/Producer, 1 Java/PHP Developer, 2 Artists (1 Vector, 1 Raster), 1 Test Lead/QA, and 1 Sound Engineer. We’re a small team, so these titles are abstractions; each team member wears multiple hats and tasks such as Game Design were tackled by the team as a whole.

Q: Is Stick Arena free to play?

Skye: Completely!

We’re also developing an expansion with enhanced functionality (tentatively titled “Go Ballistick!”) for those players who can’t get enough Stick Arena. We’ll continue to upgrade and maintain the free version indefinitely, in addition to adding a ton of the most requested features and content for our premium players. We’re exploring a number of options on how to provide these features at the best value to players, including Micro Payments.

Q: Let's say I am completely new to Stick Arena. What are the steps I should follow to start playing?

Skye:

Visit www.StickArena.com
Click the ‘QuickStart’ button
Aim with the mouse, Click to fire, and Move with the Arrow Keys (or WASD if you prefer)

We designed Stick Arena with Casual Gaming in mind; it’s easy to jump in and get your 5 minutes of fun during your class/coffee break without reading any boring instructions. ‘Low barrier to entry’ was our design mantra for the game.

Jordan: Account creation is optional, takes about 30 seconds, and doesn’t require an E-mail address. This step will give you access features like your personal record and statistics, the ability to join or create a custom game, and the Lobby area where you can chat with other players and challenge your friends (or foes!).

Q: What are the basic requirements for playing the game? (cpu, video, network etc...)

Skye: For the full-blown experience, at full quality with ultra-smooth frame rates and super-low ping times, we recommend a 2+ Ghz system with a broadband connection. We strongly recommend Flash Player 8; this will even allow Stick Arena to run on a 1 Ghz computer with a 56k connection, utilizing our compatibility server. In-game options allow the player to customize their level of detail and performance.

Jordan: Players located in North America will experience the best ping rates; however, we’ll be launching servers in the UK soon with additional geographic expansion to follow. Because Stick Arena utilizes Flash technology, the game is compatible with all Video Cards.

click thumbnails to
enlarge them.















click thumbnails to
enlarge them.

Q: Can you tell us about the weapons/bonuses that are available in the game?

Skye: Stick Arena features 6 weapons including the Shotgun, Katana, AK-47, Baseball Bat, Glock, and Sledgehammer. We decided against health pickups or other power-ups for gameplay; we feel that the result has been exceptional game balance with rock-paper-scissor style relationships between weapons.

Jordan: Heated debate continues to this day over which weapon provides players the greatest edge against their foes.

Q: What were the main difficulties you had to overcome in developing the game?

Skye: Figuring out how to build it, then building it! Stick Arena was very challenging both to design and to develop.

During the design process, we turned our brains inside out to comprehend how the algorithms for a multiplayer game with almost no server-side logic or state should function; how should we store and verify game state information? How can we deal with lag and movement prediction without limiting the action?

For client-side development, coding and tweaking the prediction algorithm for movement was a learning process, with the solution both an art and science; I’m very satisfied with the results.

Jordan: As our first foray into the world of multiplayer Flash development, we faced more than a few challenges in developing Stick Arena. We approached the idea with a great deal of ambition, and there were a lot of things we hoped to accomplish that had never been done before with Flash.

In addition to designing a lightweight communication protocol to keep bandwidth requirements down, we knew we had to implement a server architecture that would scale to massive proportions while still proving cost-effective enough for us to be able to offer the game to players at no cost. No commercial solution seemed to fit the bill, so we went to work architecting and building the back-end ourselves. Not only did we achieve our initial design goals, but we also now have an extensible and modular server platform on which to build future multiplayer titles.

Q: What are the acceptable lag values to play the game smoothly?

Skye: We’ve limited players to a maximum latency of 275ms on standard servers, with an allowable limit of 800ms on our Compatibility Server (these are round-trip values).

Q: Did you find it limiting to use TCP only and the XMLSocket object?

Skye: The XMLSocket object met our needs; XML allowed us to quickly develop a prototype, and during performance tuning we were able to bypass the XMLSocket’s inefficient XML parsing functions when we switched to compact Data Strings.

TCP bloats packet size but in some ways is simpler to implement due to guaranteed and in-order packet delivery. Although most multiplayer games use UDP (which isn’t available with flash), we found TCP to be adequate for our needs.

Jordan: Sending XML strings proved to be far too large and performance-intensive for a real-time action-based game like Stick Arena. However, we knew when we started that we weren’t bound to using only XML; as soon as we had the client and server communicating properly, we switched over to a proprietary protocol that proved to be much more efficient in terms of both performance on the client and bandwidth utilization. When dealing with as much traffic as we are, every byte helps.

It would be wonderful to be able to handle UDP-based communication from a Flash application simply for the reduced overhead. This would effectively mean that we can spend more CPU cycles and bandwidth improving the experience for the player. Alas, it doesn’t seem meant to be, however we are looking forward to being able to make use of the more efficient binary socket library in Flash 8.5.

Q: How do you deal with the synchronization of slower clients?

Skye: Using a similar approach to the one employed in most first-person shooters, we developed an algorithm which predicts the state of remote players using a number of criteria. This method works well in most scenarios, providing the illusion of instantaneous data transfer even during twitch-input and unpredictable combat scenarios. When a data update arrives, any discrepancy between the predicted and actual state are discreetly corrected.

Q: Was your server specifically designed for the game or did you start from a more generic implementation?

Skye: An exhaustive search of available servers revealed that no existing solution suited our needs. The Stick Arena server was designed from the ground-up to handle the requirements of action-oriented flash games while remaining very lightweight and low-cost.

Jordan: Though as Skye mentioned, the server was specifically designed for the purpose of serving as a back-end for Stick Arena, it has been deliberately built in an extensible and modular fashion. The huge success of Stick Arena indicates to us that the Flash gamer community is craving multiplayer titles in a big way. With the Flash player growing in capability and performance by leaps and bounds, our fans are going to see some pretty amazing things from XGen; much of it will be driven based on the server technology developed for Stick Arena.

Q: We have found the game extremely smooth. Does it use the latest flash player 8 features?

Skye: Because FP 8 penetration was relatively low at the time of release, we targeted FP 7 to ensure we could reach the largest audience. However, we also wanted to take advantage of performance gains of FP 8; Stick Arena automatically detects the installed player version and loads the appropriate version.

Q: Is it possible to add more maps or create custom ones?

Skye: Yes; Maps files are external, so the possibilities are endless. We’ll be releasing additional maps with the expansion and are redesigning our internal map editor for public release. This will allow players to contribute to the community and to take advantage of user-created content; we know there are a ton great ideas out there!

Q: Did you develop special tools for creating maps or debugging?

Skye: We planned initially to use a text editor for map building; our level designers protested and we developed a simple map editor in flash. In retrospect, we were able to achieve greater polish within our levels in a fraction of the time it would have taken us to build them with a text editor.

Although we didn’t build tools for debugging the client, we did find AS 2.0 syntax and variable typing helped to reduce the amount of debugging required.

Jordan: On the server side, we built a number of performance testing tools and load simulators to get an idea of how well the different server design techniques would scale. These tools proved to be invaluable in determining which techniques and technologies we should use to build the most scalable server architecture.

Q: Do you use an external editor for Actionscript? Which one would you recommend?

Skye: Macromedia’s IDE proved adequate for Stick Arena, but we are currently exploring additional options, including open source solutions such as Eclipse, as project complexity continues to grow.

Q: Developing a multiplayer game is quite a long work. What would you suggest to developers willing to create their first mp game?

Skye: Detailed planning, especially on multiplayer aspects. Everything takes longer, so create a design document with a minimal set of gameplay elements and stick to it!

Jordan: Developing a multiplayer title is definitely more difficult than any of the Flash titles we’ve worked on previously; however, there are more and more talented developers entering the Flash scene every day. I think we’ll start to see some really innovative and high-quality multiplayer titles soon after the release of 8.5.

As Skye indicated, one of the best pieces of advice we can provide is to do as much planning and documentation as possible. It may take more time upfront, but make no mistake it will save you time in the long run.

Q: Can you tell us about your future game related projects?

Skye: Without going into detail, we’re working on a number of sequels and innovative new titles in parallel while continuing to improve our technology and expand operations. Look for at least one release this year, in addition to the Stick Arena expansion pack which will be coming out in Q3/Q4. Keep an eye on XGenStudios.com for details!

Q: The Flash player 8.5 and Actionscript 3.0 are currently in beta phase. What do you expect from these new updates? Do you find them interesting for game development?

Jordan: We’ve already started to look at ActionScript 3.0 as part of the Flex Builder 2.0 beta, and are extremely excited about the possibilities. I see it affecting our development process most in promoting easier collaboration between developers on a single code base (source control, compartmentalization), more reusable and modular code, and significantly improved debugging functionality.

Of course, who could forget the greatly improved class libraries (binary sockets!), and huge leap in performance with the new AVM2 Virtual Machine? Exciting times are ahead for Flash developers!

back to SpotLight index



Have you played one of the best web games ever ?
Did you create the latest kick-ass flash game and would you like to seen it reviewed in these pages ?
Suggest us some high quality games to feature in our SpotLight!

Game suggestions HERE
| Homepage | News | Games | Articles | Multiplayer Central | Reviews | Spotlight | Forums | Info | Links | Contact us | Advertise | Credits |

| www.smartfoxserver.com | www.gotoandplay.biz | www.openspace-engine.com |

gotoAndPlay() v 3.0.0 -- (c)2003-2008 gotoAndPlay() Team -- P.IVA 03121770048