PDA

View Full Version : Spells help



Karuji
16-04-2008, 09:01 PM
Ok now im having some trouble designing spells.
Orgininally i tried just back an object with a sprite and abit of a fancy effect as a spell but that didnt really work to well. So now im trying to make some kind of template but thats not really working out to well either

So now i ask you the great knowlagable developers of game.dev how i can make some kinds of nice spells :)

|-|1Pp13
16-04-2008, 09:33 PM
might be a bit slow but particle effects?

or have you already tried that?

Karuji
16-04-2008, 09:38 PM
Im trying to work out the code part before i work on the graphics...

dislekcia
16-04-2008, 10:13 PM
Ok now im having some trouble designing spells.
Orgininally i tried just back an object with a sprite and abit of a fancy effect as a spell but that didnt really work to well. So now im trying to make some kind of template but thats not really working out to well either

So now i ask you the great knowlagable developers of game.dev how i can make some kinds of nice spells :)

... I'm having a lot of trouble understanding what it is you want to do.

More information please. Explain what this is for and what you want to have happen with these spells.

-D

Karuji
17-04-2008, 01:58 PM
Ah sorry dis . . .
Ok basicly im having trouble making spells in gamer, i stated some random things i tried but they were no help.

So now if you can point me in the ight direction to make spells it would help :)

dislekcia
17-04-2008, 02:32 PM
Ah sorry dis . . .
Ok basicly im having trouble making spells in gamer, i stated some random things i tried but they were no help.

So now if you can point me in the ight direction to make spells it would help :)

I still have no information to go on here...

You want to make spells in a game. You want advice on how to do that. OK, here goes:
1) Write a game.
2) Come up with spell concepts in the context of your game.
3) Add those spells to your game.
4) Make more sense when asking for help.

At least tell me what kind of goddamn game it is! What do you want to have happen in the game and how are these spells supposed to work? There is no damn way you're going to get anyone here to spoon-feed you custom code to do exactly what you want - BECAUSE NOBODY HAS A CLUE WHAT IT IS YOU ACTUALLY WANT!

-D

SkinkLizzard
18-04-2008, 08:55 PM
he wants help on a spell engine something like you did for your genetics in ex vitro
dis, he wants to be able to have a spell system that allows coupling of various spell effects to make spells
and for these spells to work in the world similar to say morrowinds spell system
(translation not guaranteed and open to correction)

could also be he wants theory on generic objects in this case spells that
get properties defining their behaviour.(what I said at the top but possibly more understandable)

dislekcia
18-04-2008, 10:44 PM
he wants help on a spell engine something like you did for your genetics in ex vitro
dis, he wants to be able to have a spell system that allows coupling of various spell effects to make spells
and for these spells to work in the world similar to say morrowinds spell system
(translation not guaranteed and open to correction)

could also be he wants theory on generic objects in this case spells that
get properties defining their behaviour.(what I said at the top but possibly more understandable)

Ah, ok, now we've got something to start from... There are a few really nice things that GM can do regarding modular/procedural objects. I outlined most of them in the code for Ex-Vitro, which can be downloaded in my prototypes thread.

The best thing to do is figure out a general system for how spells interact with the world and then break that down into logical components that you can mix and match. For example, you might decide that objects in your world have hit points, which means that spells can affect those hit points - immediately you have healing and damage options and modules: Direct damage, damage over time, damage while in area, damaged health stolen to you, etc. Each one of those can be drilled down and explored more to give you even more module ideas... The key is coming up with a coherent set of basic systems that will make up your whole world.

-D