|
| | #1 (permalink) |
| Whiskey Tango Foxtrot Join Date: Aug 2006
Posts: 1,817
+1 Internets | Metaplace What's the consensus on this for creating MMO's? I know it's not out yet, and probably a little bit to go, but I'm still surprised there hasn't been any talk at all about it in here. I suppose most people here are turned off by 2.5D only (so far), since most here have actually shown they can get a completely 3D game up and running - but I suppose it's a good starting point for us lesser folks who don't have a whole lot of knowledge when it comes to programming, etc. Last edited by Believe : 04-22-2008 at 12:11 PM. |
| | |
| | #2 (permalink) |
| Fires of Heaven Officer Join Date: Jan 2002 Location: Melbourne, Australia
Posts: 2,519
+3 Internets | doesn't really look suitable. Seems more like a sims / second life / facebook type set up rather then a real game engine. Might still be able to create something but you couldn't do anything too advanced using just their pre-generated code. |
| | |
| | #3 (permalink) |
| Plugged In Like Neo Join Date: May 2005 Location: San Diego, CA
Posts: 1,974
+2 Internets | Faille, As a clarification, users are not limited to our "pre-generated code". If it can be scripted in Lua, it can most likely be done in Metaplace. We have a set of full build tools on the web which includes a script editor that allows advanced programmers to make practically anything they want. We have physics, collision, XML/web integration, etc. We're still in alpha testing right now, but so far we've had everything from basic RPG's to space shooters, to puzzle games, to social chat spaces. Having said that, alpha testers can export their whole worlds as stylesheets so that others can build up on them. Testers can also create modules out of their code, which are small chunks of useful snippets (think, a health bar and nametag, or a click-to-move movement system, or a chat box/chat bubbles). What this does is allow you to make a world and then pull in scripts, art, templates, etc. that you want to include. They're not set in stone though, since you basically just pulled in the scripts you can tweak them however you want. So it's a good starting point if you're someone who likes to save yourself some work from scratch and just tweak something someone else did. Everything is open sourced, so basically right now as an alpha user you can browse every single game made by other testers and Metaplace staff and steal any scripts you want for use in your own game. There is the option to make your creations private, but most people are all about sharing so that our repository of code snippets grows. I'm not trying to sell you guys on using MP, but I did want to clear up a misconception that it's not a 'real game engine'. You'll be able to script up any game you want in Metaplace, and the difference is that your final product (and even your work in progress) will be instantly viewable on the web by any user who has Flash installed. And for those of you who are obsessed with requiring client downloads, we have testers who are working on standalone clients as we speak. Sure it's not 3D yet, but there have been some amazing advances in Flash 3D on the web as of late. And you'd be pretty surprised how damn good "2.5d" can look and how well it plays. |
| | |
| | #4 (permalink) |
| Fires of Heaven Officer Join Date: Jan 2002 Location: Melbourne, Australia
Posts: 2,519
+3 Internets | Thanks Cuppy! Any word on the financial side of things? How can creators make money using it? I know for myself I'm reaching the point where if I'm going to create something, I want to own it and use it as I want in terms of selling it etc. |
| | |
| | #5 (permalink) |
| Fires of Heaven Officer Join Date: Jan 2002 Location: Melbourne, Australia
Posts: 2,519
+3 Internets | Also, I don't think there's anything wrong with 2.5D at all. In fact it probably removes a lot of problems that going fully 3D causes and is better suited to tactical type games imo. |
| | |
| | #7 (permalink) |
| EECFG Join Date: Apr 2002 Location: Salina, KS
Posts: 161
+4 Internets | Since it deploys to the Flash player can you script using Actionscript? I saw something about Metascript, and didn't even know it ran in the Flash player. Also, could it be possible to use Adobe Air to make it deploy as a desktop application? Anyhow, it sounds interesting. I'll probably check it out more when I can get around to it. It has potential to be perfect for someone like me. I, like Faille, thought it was just a tile/sprite based Second Life type of thing the first time I ran across it. |
| | |
| | #10 (permalink) |
| Registered User Join Date: Nov 2002
Posts: 923
| I've been wanting to create my own MMO game for a long time, and I was looking at flash as a platform long before I heard of Metaplace. I'm actually kinda pissed I missed out of the alpha sign ups-- especially since I code in lua a shit ton because of WoW. And Metaplace being run by some FoH board frequenters is kinda neat too. There are some significant disadvantages to using flash as a platform though. I'm hardly an expert on the subject however, so by all means somebody correct me if I'm wrong. First is the lack of hardware acceleration, obviously. You can make 3d in flash, but you can run Quake without hardware acceleration as well. You just wouldn't want to say, write a serious FPS in flash. Hopefully Silverlight and Garage game's InstantAction will encourage Adobe some in this regard. Second is that your game's content will have to be streamed and can't be preloaded, as far as I know. Content will have to be loaded on-the-fly and your game will be limited accordingly. I'm not even sure if there are caching options available. Third is the lack of use of the right mouse button. You can write a custom client for Metaplace, but honestly I'm not sure why you'd want to do that over just straight up using another platform (such as Torque) that may be more suited to your game and which would also probably be much less work. Unless you wanted your game to have a more traditional .exe client and also a web interface via Metaplace. That said, there are some large advantages to a flash based game. Accessibility being the big one. Imagine playing a MMO on your cell phone. Your game will also run on something like 95% of desktops or whatever. Ease of development is also a factor. If you're just a solo dev, trying to write a WoW killer in C++ is probably biting off more than you can chew. Writing a flash game however, is much more realistic. I played MUDs for years. Games don't need high end graphics to be good. The big unknown about Metaplace is the server side of things. I couldn't find any information about how Metaplace will serve users. If you don't want your game to be trivially hacked, then you will need your servers to handle a lot of the code. I'd be very curious as to how they plan to host such resource intensive games for free, and what sort of limitations they will have. |
| | |
| | #11 (permalink) | ||||||||
| Plugged In Like Neo Join Date: May 2005 Location: San Diego, CA
Posts: 1,974
+2 Internets | Alrighty, I wanted to make sure that I provide all correct technical details here, so I ran these questions by Dorian Ouer, one of our server programmers. Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
Quote:
This code is entirely sandboxed within the server process, meaning that a faulty script or bad code can only negatively affect that particular world instance and not crash a server box or effect other worlds. This also allows sweeping code changes to your game logic and features in real-time, without a recompile or a restart of your game server. There are checks and balances built-in to maintain some semblance of sanity about how many resources a particular world can monopolize. (HD space, bandwidth, CPU time, logfile size, etc.) We are still debating where these limits should be, and how any hosting model we come up with would potentially allow these limitations to be negotiated. We need a lot more practical data about what kinds of worlds our users will make before we start giving this serious consideration. Hope this helps! =) | ||||||||
| | |
| | #12 (permalink) |
| Whiskey Tango Foxtrot Join Date: Aug 2006
Posts: 1,817
+1 Internets | At first, I was planning to work on a Fantasy-ish MMO I've been thinking up for a while, but I think instead I'm going to try something else - Something like Monster Rancher online. Probably impossible for me to accomplish but it's worth a try. Wish I was able to get into Alpha, but somehow I missed it. Last edited by Believe : 04-25-2008 at 09:37 PM. |
| | |
| | #13 (permalink) |
| I have a competition in me. Join Date: Nov 2004 Location: In the clinch.
Posts: 546
+1 Internets | I have really been looking forward to Metaplace for all kinds of reasons - both professional and personal. Sadly, I didn't get in on Alpha, but I routinely get invites for the load-testing events they run. I'd keep an eye out for those since it seems to be a good way of keeping in-tune with what's going on in development. I'm planning a fairly gruesome zombie-survival game around what I know so far... |
| | |
![]() |
| Thread Tools | Search this Thread |
| Display Modes | Rate This Thread |
| |