Forum

> > Stranded II > General > Is moding easy?
Forums overviewStranded II overviewGeneral overviewLog in to reply

English Is moding easy?

14 replies
To the start Previous 1 Next To the start

old Re: Is moding easy?

Shudokai
User Off Offline

Quote
Eer! If you just want to make trees dropping cannonbals, yes it is ...

But if you want to make a "good" Mod ... No it isnt...

It takes lot of time, it is lot of work and you need a good team and test persons for the mod.

old Re: Is moding easy?

AdidasOFC1
BANNED Off Offline

Quote
In fact, modding is _NOT_ easy. you have to invest much time, and you need a strong will to finish what you've started. but once something works exactly as you want it to, you get a very great feeling
@shudokai: you don't really need a good team, test persons etc. look at s2ext: atm, we are 2 persons (mcleaf and me), we don't test each others scripts etc., everyone of us just puts his stuff in, makes the mod work and gives the stuff to the other. principially, any of us could make the mod on his own. (maybe it's better to have a modding team, i don't know...)

old Re: Is moding easy?

Colonel-Shemp
User Off Offline

Quote
I agree with banane. It really isn't easy. It's fun, but it gets annoying when you have a problem. Like banane said, you really do need a will to finish the mod, but you don't really need a team to make one. Just look at my mod, im the only one making it! It is better to have people as it makes things go faster. You can make a good mod, allowed you have the skill, time, and patience to do it. It feels good when people like your mod, it gives meaning to the hard (or not, depends) work you did.

old Re: Is moding easy?

Builder2-0
User Off Offline

Quote
I disagree with everyone here. Compared to modding for other games (In my experience I've done Half Life 2, Garry's Mod, Oblivion, Morrowind, and various other games), Stranded 2 is extremely easy.

It is however boring. And annoying if you don't have any modeling ability whatsoever. But beyond that, the scripting language is easy to pick up, and if you are good at reading broken English, then Google Translator does a good job at "translating" the German scripting information.

Saying modding is hard is probably one of the reasons there are so few English mods. I mean, come on people. You can change damn near anything in the game by just opening up the ini files and changing numbers around. Add in a "script=start" and "script=end" and you *can* change anything (technically the hard coded shit is still hard coded, but oh well, with any luck DC might go open source).

And, if DC ever does go open source, then even source modding is STILL vastly easier than other games. Last time I looked Stranded II was coded with BlitzBasic which is an easy to learn coding language, far easier than C++ (which is what Half-Life 2 uses).

So, yes, modding is easy.

-Builder

old Re: Is moding easy?

AdidasOFC1
BANNED Off Offline

Quote
relatively easy, yeah. builder 2.0, you are right, but for a person who never modded a game before or programmed something, it's quite hard.
It might take a while until you really understand the scripting language, and modelling is complicated at first, too. but if you have practised a while (maybe making some maps) or you have already used other programming languages etc. it's probably very easy to learn some s2scripting.
So Reappy, best try to learn some scripting and go for a map then try changing a few smaller things in the .inf's and adding some new features to units or copy a unit and make it e.g. a trader

old Re: Is moding easy?

Guest

Quote
Yes I know it ain't easy to make a good mod but I was just wondering.....DO YOU NEED TO BE A PROGRAMMER?!


and erm ....even tho how will we leanr these languaeg?

old Re: Is moding easy?

Maenardil
User Off Offline

Quote
To have fun with Stranded modding, you don't need to be programmer. The only problem is, the scripting language and editor features are poorly documented. In my opinion, it's better to learn a programming language and then come back to scripts. I mean, come on, how can you write a scripts, if you don't know what loop or variable is?
With Stranded, you don't have any on the fly code check, so you have to run and see you put = instead of ==. Also, scripts interpreter is far from perfect - if you ever tried to put more then two conditions in the if clause, you know what I mean.

For someone with previous coding experience, Stranded is easy to mod. For others I suggest to make maps. On the other hands, changing stats and such is very easy. I personally would preffer one good map then ten mods.

old Re: Is moding easy?

bezmolvie
User Off Offline

Quote
banane has written
relatively easy, yeah. builder 2.0, you are right, but for a person who never modded a game before or programmed something, it's quite hard.
It might take a while until you really understand the scripting language, and modelling is complicated at first, too. but if you have practised a while (maybe making some maps) or you have already used other programming languages etc. it's probably very easy to learn some s2scripting.
So Reappy, best try to learn some scripting and go for a map then try changing a few smaller things in the .inf's and adding some new features to units or copy a unit and make it e.g. a trader


Maenardil
has written
To have fun with Stranded modding, you don't need to be programmer. The only problem is, the scripting language and editor features are poorly documented. In my opinion, it's better to learn a programming language and then come back to scripts. I mean, come on, how can you write a scripts, if you don't know what loop or variable is?
With Stranded, you don't have any on the fly code check, so you have to run and see you put = instead of ==. Also, scripts interpreter is far from perfect - if you ever tried to put more then two conditions in the if clause, you know what I mean.

For someone with previous coding experience, Stranded is easy to mod. For others I suggest to make maps. On the other hands, changing stats and such is very easy. I personally would preffer one good map then ten mods.


I think your both a little off. Modding is easy, i've never modded, changed, or sought any programing languages. look at my mod. The scripting language is easy to learn. com'on. Copy and paste is the key to making your first through third items. logic is the key to your fourth.
example-
1
2
3
4
5
script=start (the scirpt will now start  ;) )
	on:use {(if you'd ever [I] played [/I] stranded before you would know what use is. so "On the use")
		addstate "light"; (if you know what a state is... add a state of "light")
	} (ends the "use" condition)
script=end (ends the script)
all of this can be picked up from other scripts, so you can basicly understand what your doing. Then, if you read the tutorial, this is a walk in the park.

old Re: Is moding easy?

Colonel-Shemp
User Off Offline

Quote
I agree with builder. Stranded 2 is very easy, plus it's just simple if you have already coded before. I've modded Bf1942 (PAIN IN THE ASS), Bf2 (Not much modding, but was better than bf1942), Morrowind, sodlat (stupid easy) and god knows what else...oh yeah, Age of mythology! I pretty much mod everything.

old Re: Is moding easy?

Maenardil
User Off Offline

Quote
Bloodshot, your post validate my opinion. I said, "changing stats and such is easy". Your example falls into "and such" category. I don't see a loop or variable, or complicated if statement in your sample piece of code.

This is the way you learn any language. You look how other people done things, copy then, change it, add a little here, a little there. Good luck, Bloodshot, you'll learn how to code in no time.

old Re: Is moding easy?

Builder2-0
User Off Offline

Quote
Maenardil has written
Bloodshot, your post validate my opinion. I said, "changing stats and such is easy". Your example falls into "and such" category. I don't see a loop or variable, or complicated if statement in your sample piece of code.

This is the way you learn any language. You look how other people done things, copy then, change it, add a little here, a little there. Good luck, Bloodshot, you'll learn how to code in no time.
I'm forced to agree, but I still feel that Stranded II's scripting language is FAR easier than anything else.

-Builder

old Re: Is moding easy?

WRCMeister
User Off Offline

Quote
Go take Stranded 2, with its simple syntaxes and east to understand functions, and put that up against LUA, which is from Half-Life 2, or the extremely simple map editor, vs Hammer editor which doesent even work for me.


Conclusion:
Stranded 2 is the easy

old Re: Is moding easy?

Builder2-0
User Off Offline

Quote
WRCMeister has written
Go take Stranded 2, with its simple syntaxes and east to understand functions, and put that up against LUA, which is from Half-Life 2, or the extremely simple map editor, vs Hammer editor which doesent even work for me.


Conclusion:
Stranded 2 is the easy

Actually, Lua is Garry's Mod, not Half Life 2. Half Life 2 is coded with C++ (which is more harder than Lua). And Hammer is easy compared to most editing tools. But yea, Stranded 2 is extremely easy.

-Builder
To the start Previous 1 Next To the start
Log in to replyGeneral overviewStranded II overviewForums overview