View topic - Let's make a Tutorial Game for new modders



All times are UTC + 1 hour


Post new topic Reply to topic  [ 74 posts ]  Go to page Previous  1, 2, 3, 4  Next
Author Message
PostPosted: 27 Apr 2011, 06:16 
Conflict Terra Developer
User avatar

Joined: 21 Jan 2010, 06:21
Location: Tucson
knorke wrote:
Just noticed there is some error:
[i][f=0000000] Inconsistent movedata 1 for simplehover (moveclass hover2x2): neither canhover nor floater, but not a ground movetype[/i]
(everything works but it gives this message in infolog)
there might be more things like that, that are not 100% spot on...


Pretty sure that's the engine being like "you put hover in the movedef, but the unit has no actual hover abilities."

Sounds like good progress, I approve of your approach through teaching with increasing levels of "difficulty".


Top
 Offline Profile  
 
PostPosted: 27 Apr 2011, 14:56 
Modeler
User avatar

Joined: 15 Dec 2008, 15:53
Location: at front, llt pushing
Image


Top
 Offline Profile  
 
PostPosted: 27 Apr 2011, 15:05 
Moderator
User avatar

Joined: 29 Apr 2005, 00:14
Location: #moddev - join it!
Yeah, Hovers need canhover = true in the unitdef as well as a movedef with the HOVER keyword.

Why? I don't know.


Top
 Offline Profile  
 
PostPosted: 27 Apr 2011, 16:23 
Moderator
User avatar

Joined: 22 Feb 2006, 01:02
Location: cheap kitchen
yes i carefully copied over the colors from advice dog to the textures.
Image

thanks, will test the hover thing.


Top
 Offline Profile  
 
PostPosted: 27 Apr 2011, 21:38 
Journeywar Developer & Mapper
User avatar

Joined: 24 Jan 2006, 21:12
Location: There is no god - and reality is his prophetess
well, seems i have no excuses to be lazy left. Nailed me into the corner, like a snail with salt, like a prisoner by a searchlight..


Top
 Offline Profile  
 
PostPosted: 28 Apr 2011, 22:48 
Modeler
User avatar

Joined: 15 Dec 2008, 15:53
Location: at front, llt pushing
Quote:
So far there is:


u probably got these in mind already but... air trans and gunship would be good.


Top
 Offline Profile  
 
PostPosted: 29 Apr 2011, 08:34 
Evolution RTS Developer
User avatar

Joined: 17 Nov 2005, 02:43
Location: Raegquitting Spring on 04/24/12
FLOZi wrote:
Yeah, Hovers need canhover = true in the unitdef as well as a movedef with the HOVER keyword.

Why? I don't know.


Also, without this little script, they will always be upright = 1,

Code:
setSFXoccupy(setSFXoccupy_argument)
{   
terraintype = setSFXoccupy_argument;   

                if(terraintype == 2)
      {
                move base to y-axis [-0.85] speed [50];
                set UPRIGHT to 1;   
                }
      else
      {
                move base to y-axis [0.0] speed [50];
                set UPRIGHT to 0;   
                }
                if(terraintype == 4)
      {
                move base to y-axis [0] speed [50];
                set UPRIGHT to 0;   
                }
      else
      {
                move base to y-axis [-0.85] speed [50];
                set UPRIGHT to 1;   
                }
}


Top
 Offline Profile  
 
PostPosted: 29 Apr 2011, 23:49 
Moderator
User avatar

Joined: 22 Feb 2006, 01:02
Location: cheap kitchen
no country for old cob.

aircraft & transporters would def. be good to have.
but while i got both working in other games i dont know what a minimal example would look like.

was wondering if some gadget/widget would be good to have?
In theory it is not needed but then you will usually have unit_script.lua, game_spawn.lua & some healthbar widget anyway. So maybe just something small.


Top
 Offline Profile  
 
PostPosted: 29 Apr 2011, 23:50 
User avatar

Joined: 02 May 2005, 02:56
Location: Canada
I was thinking when you get the basics down you can make a few forks to demonstrate advanced topics like gadgets and gui frameworks.


Top
 Offline Profile  
 
PostPosted: 29 Apr 2011, 23:57 
Moderator
User avatar

Joined: 22 Feb 2006, 01:02
Location: cheap kitchen
if someone wants to make a fork with ie chili, nice. but i have no idea on the ui frameworks.
also do not want to script tons of stuff when most new mods die before they even get one model into the game. lua crash course would indeed be good to have but i wont do it, i think there even is some .pdf floating around already?


Last edited by knorke on 29 Apr 2011, 23:59, edited 1 time in total.

Top
 Offline Profile  
 
PostPosted: 29 Apr 2011, 23:58 
Modeler
User avatar

Joined: 15 Dec 2008, 15:53
Location: at front, llt pushing
i think taking at least one feature from every game could be good idea. metal makers(*A), overdrive and connecting mex with E for bigger income(0k), E buildings unlocking units (evo) etc.

(according to sinbads latest post)


Top
 Offline Profile  
 
PostPosted: 30 Apr 2011, 00:15 
Moderator
User avatar

Joined: 22 Feb 2006, 01:02
Location: cheap kitchen
no, thats excactly what should not be included.

zeroK's mex overdrive alone is 1400 lines:
http://code.google.com/p/zero-k/source/ ... rdrive.lua

that is zero helpful to beginners.


Top
 Offline Profile  
 
PostPosted: 30 Apr 2011, 00:28 
Journeywar Developer & Mapper
User avatar

Joined: 24 Jan 2006, 21:12
Location: There is no god - and reality is his prophetess
maybe make modchapters? chapter 1 mod is finnished, if you can implement and understand all of those, move towards chapter two mod.

1400 lines of code sounds like a chapter 8 or nine mod though.


Top
 Offline Profile  
 
PostPosted: 30 Apr 2011, 00:36 
Modeler
User avatar

Joined: 15 Dec 2008, 15:53
Location: at front, llt pushing
olol, ok then, didnt know, thought it would be cool to show some more possibilities of engine.


Top
 Offline Profile  
 
PostPosted: 30 Apr 2011, 00:40 
Moderator
User avatar

Joined: 22 Feb 2006, 01:02
Location: cheap kitchen
there are lots of complete/wip games showing what the engine can do. the engine can do too much, it is impossible to show everything.
Would be like trying to show everything you can draw with a pencil.
The idea is to show how you sharpen the pencil and then avoid poking it into your eye.

after chapter 2 nubs will find their own way.
that is, if you rotate them toward the water.
Image


Top
 Offline Profile  
 
PostPosted: 30 Apr 2011, 03:22 
Blood & Steel Developer
User avatar

Joined: 25 Aug 2004, 12:31
Location: Has not played *a in years.
chapter 2 sounds to me like an entire chapter on DSD and BA spin offs since I am assuming chapter 1 is an intro into modifying things.


Top
 Offline Profile  
 
PostPosted: 30 Apr 2011, 07:25 
Evolution RTS Developer
User avatar

Joined: 17 Nov 2005, 02:43
Location: Raegquitting Spring on 04/24/12
Wombat wrote:
i think taking at least one feature from every game could be good idea. metal makers(*A), overdrive and connecting mex with E for bigger income(0k), E buildings unlocking units (evo) etc.

(according to sinbads latest post)


Has nothing to do with energy, that's just the building I chose for it (so you wouldn't have to build special buildings just for tech.

It's all based on zwzsg's teching gadget.


Top
 Offline Profile  
 
PostPosted: 04 May 2011, 19:00 
Moderator
User avatar

Joined: 22 Feb 2006, 01:02
Location: cheap kitchen
added a buildervehicle and a helicopter:
Image
the helicopter folds up the rotor blades when landed.
sometimes does that when hovering in mid air too. dont know why:
http://code.google.com/p/springtutorial ... copter.lua

http://code.google.com/p/springtutorial ... copter.lua

I think I wont add any more stuff now unless I really see somebody new using this.


Top
 Offline Profile  
 
PostPosted: 04 May 2011, 19:07 
User avatar

Joined: 02 May 2005, 02:56
Location: Canada
knorke wrote:
I think I wont add any more stuff now unless I really see somebody new using this.

Perhaps making a fresh post in the community news section with some screenshots and summarizing the state of the project, with brief instructions on how to use the project to get started?


Top
 Offline Profile  
 
PostPosted: 04 May 2011, 19:13 
Moderator
User avatar

Joined: 22 Feb 2006, 01:02
Location: cheap kitchen
yes, will do that but have to clean up first and write instruction etc.

fun fact: my post some days ago in "community news section" got deleted without anybody telling me why.


Top
 Offline Profile  
 
Display posts from previous:  Sort by  
Post new topic Reply to topic  [ 74 posts ]  Go to page Previous  1, 2, 3, 4  Next

All times are UTC + 1 hour


Who is online

Users browsing this forum: No registered users and 0 guests


You cannot post new topics in this forum
You cannot reply to topics in this forum
You cannot edit your posts in this forum
You cannot delete your posts in this forum
You cannot post attachments in this forum

Search for:
Jump to:  
Powered by phpBB® Forum Software © phpBB Group

Site layout created by Roflcopter et al.