Catch up on stories from the past week (and beyond) at the Slashdot story archive

 



Forgot your password?
typodupeerror
×
PC Games (Games) Role Playing (Games) Entertainment Games

The Future Of MMOGs - You As Designer? 24

Thanks to GameSpy for their feature discussing user-created content as the future of massively multiplayer games. In one section, Will Harvey of There Inc. discusses potential problems with more exotic player-created features: "If third-party developers [A.K.A., gamers playing the game] write games for an MMPG, will the code for those games also run on the servers? What if it crashes?" Elsewhere, Will Wright talks about quality issues after players create content: "Once we have the ability to leverage the creative process, how do we move that content between players in the most efficient way? There's always some content that a small number of players create that will have the most appeal."
This discussion has been archived. No new comments can be posted.

The Future Of MMOGs - You As Designer?

Comments Filter:
  • Some thoughts (Score:5, Interesting)

    by Asmodeus ( 10868 ) on Saturday November 15, 2003 @09:28AM (#7480799)
    I'm currently writing a game which has an emphasis on user content. We are using C#/.NET (no flames please) and using a lot of bytecode analysis/verification/manipulation. This allows us to verify that we can constrain the cycles used by uploaded code by inserting new bytecode into the loop structures etc. We can also use DFA and a defined set of permissable interfaces to limit the capabilities of the uploaded code.
    For an example of one of our bytecode manipulators which manages object persistence, look at the www.gotdotnet.com site and search for bytecode in the user samples.
    Some other thoughts are that copyright, ownership, censorship are the main showstoppers, not technology.

    Asmo
    • I bet you can't wait for your users to submit 862 new types of Desert Eagle.
    • To me a lot of this seems like a big hassle, which Is why I tend to prefer RPC over passing programs around. (Though I acknowledge the problems with RPC -- the concept BTW, not the Sun "RPC" service in Unix -- and acknowledge the advantages of scripts/bytecode). But in the cases I'm interested in, RPC has always seemed more flexible and scalable.

      reed
      • You have a good point, but .NET RPC is really slow, and we need to pass very large volumes of data to the end user written AI - basically the entire game state as remembered by them + any new state that they can see.
        We also need to ensure that we can sensibly bound the CPU usage and bytecode mods seem to be the best way of doing that.

        Asmo
  • What it takes (Score:5, Interesting)

    by Doctor Cat ( 676482 ) on Saturday November 15, 2003 @09:39AM (#7480809) Homepage
    Ultimately I think any solution to helping people find the best content has to involve the players rating it in some way. Otherwise it won't scale well. But there's already been a lot of work on the web on user-rating systems that can be leveraged. Recommendation systems that say "if you liked thos things you might like this too", based on what groups of things other players liked, could have application here as well.

    Another thing I've seen in a lot of the early wave of games that focus on user-created content is that the tools seem to be aimed at some specific skill level and type of creator. I think we need to see tools that support a broader range, where people with less skill, less experience, or simply less motivation can still create something a little bit interesting, and the people who really master the tools have a lot of power and flexibility to do really amazing things.

    Anyway I do think this area will grow a lot, as better tools & games are developed. My comparison has always been to the free web-hosting services like Geocities, Angelfire, etc. that got really big based entirely on user created content. RPGs or virtual worlds built this way are, I think, particularly suited to encouraging socializing, as they often lack any combat or obsession-feeding goal structures, while they provide a never-ending source of new things to see and explore that provide potential conversation subjects.

    • "I think we need to see tools that support a broader range, where people with less skill, less experience, or simply less motivation can still create something a little bit interesting, and the people who really master the tools have a lot of power and flexibility to do really amazing things."

      Interestingly enough this is a key part of my game system. New users can build ships from pre-constructed parts, experienced users can build entirely new designs, including their own hull geometry. Intermediate users
  • Second Life (Score:5, Interesting)

    by Hard_Code ( 49548 ) on Saturday November 15, 2003 @09:45AM (#7480818)
    Second Life [secondlife.com] is already there. All of the content is user-created. There is a scripting language that can be used to create complex behavoir. Houses, trams, amusement park rides, airplanes, sentry guns, alien ships, ghosts, even a recreation of the destruction of the world trade center towers.

    Check out the archives of the "embedded journalist" [secondlife.com].
    • I saw yesterday's article about them changing their TOS so that all users own their own creations, so I thought I'd jump in and take a look around. I have to admit I didn't have any idea how far along Second Life had come. The reviews and the website don't do the system justice. I don't see how a geek could possibly not get hooked by Second Life...

      The client is a pretty amazing piece of code. There's all kinds of information you can get on every object in the world, and there's something like a half doze
  • He does what? (Score:5, Insightful)

    by quandrum ( 652868 ) on Saturday November 15, 2003 @10:03AM (#7480845)
    From the article:

    Will Harvey of There Inc. discusses potential problems with more exotic player-created features: "If third-party developers [A.K.A., gamers playing the game] write games for an MMPG, will the code for those games also run on the servers? What if it crashes?"

    This is a simple matter of programming. Your MMOG is a platform, just like any computer, and you should be able to allow user-space code to run and crash without affecting the underlying system.

    I worked on a mud in college that allowed user specific code. The head programmer had written a light VM that ran most of the actual mud code. It sandboxed the user land stuff and your code could do whatever you wanted within the context of the syntax and you weren't bringing the MUD down. However, the VM was very memory hungry and really needed to be re-written by someone who knows VM's. He made it all up as he went.
    • Hence our decision to use C#/.NET. Pre-made VM which will be on every windows platform, has garbage collection and a JIT and which supports loading and unloading assemblies into isolated domains. Why not Java? I wanted to learn a new language, and some aspects of C# make the bytecode easier to manipulate, e.g. compiler support for accessor/mutator methods. The prototype was actually written in Java using Java3D but C# has better support for vector and point types.

      Asmo
    • I worked on a mud in college that allowed user specific code. The head programmer had written a light VM that ran most of the actual mud code. It sandboxed the user land stuff and your code could do whatever you wanted within the context of the syntax and you weren't bringing the MUD down. However, the VM was very memory hungry and really needed to be re-written by someone who knows VM's. He made it all up as he went.

      Sounds a lot like MOO... MOO is really quite nice, but it's definitely an ageing creature
  • Sandbox (Score:3, Insightful)

    by foniksonik ( 573572 ) on Saturday November 15, 2003 @10:30AM (#7480942) Homepage Journal
    Like any other collaborative development initiative they will need to implement a Sandbox environment for trying out new things which can allow for official QA.

    Especially if they allow code to run... virtual virus anyone? worms which run through avatars via their gear and send off info about their location or status to the creator? and the banal possibility of a server crash though I think that is the least fo their worries as it would be easily loggable and traceable because of it's dramatic impact.
  • An interesting tidbit from the VP of there.com: he is wondering about hosting: does the original creator of the game run the third-party contentent (code)? A big problem with robustness, security and scalability there. And what will the technical architecture look like? I'm surprised that they haven't thought about these issues with There (or maybe they have but don't want to give them away).

    Well, as one of the lead developers on the VOS project [interreality.org], I think it could look a bit like VOS of course! I'm

  • by Shazow ( 263582 )
    I think the biggest issue, especially in MMORPGs, is the roleplaying aspect. The content that users create would have to be parallel to the world it's based in or otherwise it just throws everything out of context. So, another important issue would be censorship.

    Not entirely sure of a viable way to keep this under control though.

    - shazow
  • by Dreamweaver ( 36364 ) on Saturday November 15, 2003 @08:36PM (#7483708)
    Since MMORPGs (or MMPGs or MMOGs or whatever over-long acronym is in style now) are at heart just graphical extensions of the old text-based MUD model, why not extend the MUD model of player-created content?

    MMOGs seem to want either all or nothing: the whole system is centered around player-created content, or the system is locked down with only the company's own developers creating new content. The closest one seems to get to a middle-of-the-road are things like Star Wars: Galaxies 'player cities' and the ubiquitous crafting skills. While nice, these things were relatively standard faire on MUDs for players and the nothing-but-player-content of There or Second Life are approximately mirrored by the old talker-type MOOs and MUSHes.

    What seems to be missing, in my opinion anyway, is the ability for players to become content creators in a fixed world. In the MUD system there was generally the possibility that a dedicated player who showed some interest and aptitude could become part of the world's development staff. Usually this required some basic pre-requisites (time online, a level reached, a % of the game world explored, some sort of 'builder test', etc). Provided that they were fulfilled, one could attain a staff-member status on the MUD and go on to create the fixed or semi-fixed world in which the players moved.

    For those not familiar with the concept, consider Everquest. When the developers wished to add a new area to the world, an expansion pack was generally released. The content of these expansions was created by game developers in an office complex somewhere and generally was only basically based on player desires and expectations (this can obviously be argued one way or another, but is not the point). Player houses and the like could be created without the release of an expansion pack as they were just a fixture within the larger fixed-world format of the game.
    Within the MUD system model, designated players could create the sort of content that would normally be deigned to an expansion release. New dungeons, new cities, etc. Because the average player doesn't know how to program and has little or no 3d graphics skills, their toolset would be obviously limited. On MUDs, builder characters were generally limited to a menu-based on-line creation system or some basic scripting language that accomplished the task with no knowledge of the underlying code. For graphics MMPGs, similar could be accomplished using toolsets, scripting languages and pre-defined graphic object sets created for the purpose.

    The obvious problems with such a system, intellectual property rights and consistency of quality, are fairly easily addressed. One agrees at the outset that created works are the property of the parent company, waiving rights to content created this way. To maintain quality across the board, either enact a content review system by company staffed teams, allow a wider set of so-flagged characters to 'beta test' the new content, or a mixture of both. Content created by players would thus not be accessable to the populace at large until it was verified not only to be of good quality, but to fit into the larger world-theme of the game.

    Of course, you could look at it as un-paid labor to do the job that the game producers should be doing themselves. The same could be said of MUDs, though. I built and coded for a mud for years with no form of compensation besides player gratitude. I did it because I enjoyed the game and wanted to provide new challenges and places to explore for my fellow players. Given the hardcore-ness of a lot of the MMPGers out there and their dedication to the game, I've often wondered why no game has set up a system like this. MUDs have existed for so long despite being text-only for a reason. The opportunity to take part in the game's development is a great draw that can, for a lot of people, myself included, even outstrip the lure of playing the game itself. Imagine the popularity of an already popular game like Everquest or FF XI if the
    • What seems to be missing, in my opinion anyway, is the ability for players to become content creators in a fixed world. In the MUD system there was generally the possibility that a dedicated player who showed some interest and aptitude could become part of the world's development staff. Usually this required some basic pre-requisites (time online, a level reached, a % of the game world explored, some sort of 'builder test', etc). Provided that they were fulfilled, one could attain a staff-member status on t
  • Sandboxing (Score:3, Interesting)

    by cyranose ( 522976 ) on Sunday November 16, 2003 @02:55AM (#7485705) Homepage
    I've coded for Second Life in the past, so I don't want to dis There, but that Will Harvey quote honestly baffles me. Even the extended quote in the article seems out of touch. If you use SL, you'll see a scripting language that doesn't seem to have any of those problems (and no, I didn't work on that part).

    The real problem with user scripting is that once you have the equivalent of magic in the world, you can really piss people off. And that's hard to sandbox or detect algorithmically. For example, it's difficult to tell the difference between user code that helps a friend levitate and one that keeps a victim pinned in place.

    The real problem with user content in general is similar: you want to somehow reward and retain beneficial content and discourage the retention of crap. Let people build all the crap they want, but please take it down at the end of the day, okay?

    Second Life has some interesting approches, including taxation and community rating. But, frankly, the crappy content problem is not solved in the real world either.

    I'm just glad for anything that turns non-designers into even modest designers--in any world. For me, it was legos and computer graphics that got me thinking about aesthetics. The more ways, the better.
    • > The real problem with user scripting is that once you have the equivalent of magic in the world, you can really piss people off. And that's hard to sandbox or detect algorithmically.

      SecondLife has a pretty decent solution to this. The scripts are treated as part of the world and can do no more or less than the avatar that owns them.

      You can't do arbitrary things to arbitrary avatars or objects from a script.

      What you CAN do is build a script that does what you want, that communicate with other script

For God's sake, stop researching for a while and begin to think!

Working...