0x10c

Started by
28 comments, last by AoS 12 years ago

See I was thinking the other day about some kind of concept where you actually script your own AI, e.g. you control a bunch of characters and you can script their own individual AI using some kind of language (like choose a default target, what do to if the healer is being attacked, and being able to communicate with the other character's AI's and giving/receiving orders, etc...). Kind of like robocode but less academic.

A number of 'hardcore' RPGs already allow something like this. For example, take a look at Dragon Age's Tactics - it's nowhere near a full scripting language, but it allows you to quite significantly change the behaviour of allied NPCs.

Tristam MacDonald. Ex-BigTech Software Engineer. Future farmer. [https://trist.am]

Advertisement

[quote name='Bacterius' timestamp='1334050320' post='4929836']
See I was thinking the other day about some kind of concept where you actually script your own AI, e.g. you control a bunch of characters and you can script their own individual AI using some kind of language (like choose a default target, what do to if the healer is being attacked, and being able to communicate with the other character's AI's and giving/receiving orders, etc...). Kind of like robocode but less academic.

A number of 'hardcore' RPGs already allow something like this. For example, take a look at Dragon Age's Tactics - it's nowhere near a full scripting language, but it allows you to quite significantly change the behaviour of allied NPCs.
[/quote]

I have been designing, and doing a little programming on, an mmorpg where the player avatars never log off and you can set yours to various behaviors, or allow others to use it while you are offline. You can set various general and specific orders, and there are default settings, like defend your town if its attacked or handle shopkeeping. Complex stuff might involve gathering resources or following along on raiding or something.

What will probably end up happening is that I will say fuck it too much work and just make a single player game with AI and play it by myself. Because as everyone here would be glad to tell me, mmorpgs are almost impossible alone.

[quote name='swiftcoder' timestamp='1334060362' post='4929873']
[quote name='Bacterius' timestamp='1334050320' post='4929836']
See I was thinking the other day about some kind of concept where you actually script your own AI, e.g. you control a bunch of characters and you can script their own individual AI using some kind of language (like choose a default target, what do to if the healer is being attacked, and being able to communicate with the other character's AI's and giving/receiving orders, etc...). Kind of like robocode but less academic.

A number of 'hardcore' RPGs already allow something like this. For example, take a look at Dragon Age's Tactics - it's nowhere near a full scripting language, but it allows you to quite significantly change the behaviour of allied NPCs.
[/quote]

I have been designing, and doing a little programming on, an mmorpg where the player avatars never log off and you can set yours to various behaviors, or allow others to use it while you are offline. You can set various general and specific orders, and there are default settings, like defend your town if its attacked or handle shopkeeping. Complex stuff might involve gathering resources or following along on raiding or something.

What will probably end up happening is that I will say fuck it too much work and just make a single player game with AI and play it by myself. Because as everyone here would be glad to tell me, mmorpgs are almost impossible alone.
[/quote]

Try an LMORPG? A Low-Multiplayer-Online. Expected to have no more than 100 users on a server, more likely 20-50 on average.

But personally I think the idea of "Always Logged in", while a great theory, is likely going to prove exceptionally hard to pull off due to griefers. In a large scale game, people would find ways to abuse any automated system you put in, and force players to do something to have a negative impact on the character while they're not there to stop it. So doing it in a smaller scale environment where users can have more control over the server may be better. If they're allowed to host their own invite only servers, then the problem of griefers fall on their shoulders, not yours. After all, they were the ones who invited them.
Old Username: Talroth
If your signature on a web forum takes up more space than your average post, then you are doing things wrong.
Try an LMORPG? A Low-Multiplayer-Online. Expected to have no more than 100 users on a server, more likely 20-50 on average.

But personally I think the idea of "Always Logged in", while a great theory, is likely going to prove exceptionally hard to pull off due to griefers. In a large scale game, people would find ways to abuse any automated system you put in, and force players to do something to have a negative impact on the character while they're not there to stop it. So doing it in a smaller scale environment where users can have more control over the server may be better. If they're allowed to host their own invite only servers, then the problem of griefers fall on their shoulders, not yours. After all, they were the ones who invited them.[/quote]
True but it depends on what you are allowed to make your avatar do while you are not there to control it. It can range from the basic "make it an unkillable shopseller with your own list of wares" which is hardly griefable, save perhaps for the location at which you put your avatar, to a complex scripting system (where people could lead a pack of enemies into your avatar and thus indirectly kill it while you are absent). It isn't an easy problem to solve, but then griefing has been around forever, and a lot of heuristic or community solutions exist (not the least of which is to simply use a whitelist as you suggested).

And you may also inadvertently make it so that a well-scripted avatar actually plays better than the average human player (I wouldn't be surprised...), which also introduces a whole lot of problems, especially in MMO's and such competitive games.

“If I understand the standard right it is legal and safe to do this but the resulting value could be anything.”


[quote name='AltarofScience' timestamp='1334107042' post='4930066']
[quote name='swiftcoder' timestamp='1334060362' post='4929873']
[quote name='Bacterius' timestamp='1334050320' post='4929836']
See I was thinking the other day about some kind of concept where you actually script your own AI, e.g. you control a bunch of characters and you can script their own individual AI using some kind of language (like choose a default target, what do to if the healer is being attacked, and being able to communicate with the other character's AI's and giving/receiving orders, etc...). Kind of like robocode but less academic.

A number of 'hardcore' RPGs already allow something like this. For example, take a look at Dragon Age's Tactics - it's nowhere near a full scripting language, but it allows you to quite significantly change the behaviour of allied NPCs.
[/quote]

I have been designing, and doing a little programming on, an mmorpg where the player avatars never log off and you can set yours to various behaviors, or allow others to use it while you are offline. You can set various general and specific orders, and there are default settings, like defend your town if its attacked or handle shopkeeping. Complex stuff might involve gathering resources or following along on raiding or something.

What will probably end up happening is that I will say fuck it too much work and just make a single player game with AI and play it by myself. Because as everyone here would be glad to tell me, mmorpgs are almost impossible alone.
[/quote]

Try an LMORPG? A Low-Multiplayer-Online. Expected to have no more than 100 users on a server, more likely 20-50 on average.

But personally I think the idea of "Always Logged in", while a great theory, is likely going to prove exceptionally hard to pull off due to griefers. In a large scale game, people would find ways to abuse any automated system you put in, and force players to do something to have a negative impact on the character while they're not there to stop it. So doing it in a smaller scale environment where users can have more control over the server may be better. If they're allowed to host their own invite only servers, then the problem of griefers fall on their shoulders, not yours. After all, they were the ones who invited them.
[/quote]

Well the game has no PvP, and the PvE is cooperative, essentially its the players vs the environment and fucking up another player hurts you too. Also I was thinking of a restricted server, ie you would have to be vouched for by current players to join. And its not really commercial, so small playerbase is no biggy. Also not anyone can just walk up and use your avatar, you can list first the things it is allowed to do, and second which players are allowed to use it for which things.

I guess someone could still grief if they worked hard but instant perma ban kinda makes it so you would have to spend months building up a character to get one small griefing chance.

This would never work in an open sign ups commercial game of course.
Also not anyone can just walk up and use your avatar, you can list first the things it is allowed to do, and second which players are allowed to use it for which things.[/quote]
Rent-a-slave, conditions apply tongue.png I thought you meant the avatar actually played while you were absent, AI-style. But come to think of it that's probably going to be more destructive to your avatar than actually letting people use it.

I guess someone could still grief if they worked hard but instant perma ban kinda makes it so you would have to spend months building up a character to get one small griefing chance.[/quote]
That's a good point, if the effort vs reward is too big, then griefing will automatically stop. The problem, of course, is that usually, griefing can be done with a level 1 character.

“If I understand the standard right it is legal and safe to do this but the resulting value could be anything.”


And you may also inadvertently make it so that a well-scripted avatar actually plays better than the average human player (I wouldn't be surprised...), which also introduces a whole lot of problems, especially in MMO's and such competitive games.

This is what I find worrysome. What happens when the 1000 or so people put in enough time to make their ships fully automated and godlike? Even if it's totally by accident if they leave for a week and come back to find out their ship has been griefing new players that whole week or that they've been banned.

I'm curious to know how having to support a 16 bit CPU as part of gameplay will affect the rest of the gameplay's polish. It seems like the most unnecessary part of the design imo. I'm actually less inclined to play the game knowing that's part of the gameplay.

That's a good point, if the effort vs reward is too big, then griefing will automatically stop. The problem, of course, is that usually, griefing can be done with a level 1 character.


You seem to grossly underestimate the lengths some people will go to grief people. In one server for a game I play, we had this player who would come on just to spam this annoying audio clip. He was banned in less than a minute after an admin was able to get logged into the tool and kick him. Including warning times, etc.

a minute later, he came back, with a different account. Banned again in less than 30 seconds. He did this a few times in a row, then took awhile longer to come back, but he did. Banned a 5th or 6th time. Then another admin apparently setup a quick and dirty program that intercepted the audio and was watching each users's first 5 minutes for that clip. The player has joined over 100 times last I heard, and has been kicked in less than 5 seconds.
Old Username: Talroth
If your signature on a web forum takes up more space than your average post, then you are doing things wrong.
You seem to grossly underestimate the lengths some people will go to grief people. In one server for a game I play, we had this player who would come on just to spam this annoying audio clip. He was banned in less than a minute after an admin was able to get logged into the tool and kick him. Including warning times, etc.

a minute later, he came back, with a different account. Banned again in less than 30 seconds. He did this a few times in a row, then took awhile longer to come back, but he did. Banned a 5th or 6th time. Then another admin apparently setup a quick and dirty program that intercepted the audio and was watching each users's first 5 minutes for that clip. The player has joined over 100 times last I heard, and has been kicked in less than 5 seconds.[/quote]
It was an average, not a worst case figure. There's always going to be some people like that. I agree though, one griefer is enough to ruin the game for everybody else.

A solution to this would be to require a valid credit card to play the game (without actually charging anything), with the ability to ban players along with their credit cards (not officially, of course, but if they attempt to sign up again with the same credit card, it fails). Unless they have hundreds of spare credit cards lying around, which I doubt, it will be difficult to bypass the ban (and they can't enter bogus cards as it's verified by the bank).

I think we're derailing the topic a bit here, though.

“If I understand the standard right it is legal and safe to do this but the resulting value could be anything.”


Also not anyone can just walk up and use your avatar, you can list first the things it is allowed to do, and second which players are allowed to use it for which things.

Rent-a-slave, conditions apply tongue.png I thought you meant the avatar actually played while you were absent, AI-style. But come to think of it that's probably going to be more destructive to your avatar than actually letting people use it.

I guess someone could still grief if they worked hard but instant perma ban kinda makes it so you would have to spend months building up a character to get one small griefing chance.[/quote]
That's a good point, if the effort vs reward is too big, then griefing will automatically stop. The problem, of course, is that usually, griefing can be done with a level 1 character.
[/quote]

Well the Avatar can play by itself if you set it to do so I guess. Nothing too complex though.

Well you have to design the game so that griefing is not as easy as rolling a new level one and ruining someone's week. You can't just stick it in to any game.

This topic is closed to new replies.

Advertisement