Page 6 of 24
waffle pwnd
Posted: 03 Sep 2006, 06:16
by cyclerboy
i can run spring on Vista WEEEEEEEEEEE im ready for testing gerry
Posted: 03 Sep 2006, 06:31
by Sheekel
Thats great! LAN party tomorrow with fozzy. I'll have lvl1 of MAG ready for us to play
(we should probably discuss this with private messages)
...
I've decided that the MAG commander i made sucks, so im making a new one.
And i still dont know what to do about the texture issue...
Posted: 03 Sep 2006, 08:28
by Sheekel
I've figured out that its not my textures, but its the way spring shades the units. And apparently dont-shade "piecenum" doesnt work in spring, so i guess were stuck with it for now...
Posted: 03 Sep 2006, 08:31
by Maelstrom
If your using s3o, just set the self illumination to the max setting. Actually, s3o wouldnt be a bad idea... You could basically make do with just one texture!
Just have a large texture (like 1024 or 2048px big) with little spots of each colour on them, (like 4x4 blocks of each brick colour), and a few different sized brick tops (like 4x4 dot sizes), and a few misc bits like wheels and logos, then you have a uniform texture library like 3do, that actually works in Spring!
Posted: 03 Sep 2006, 15:13
by SinbadEV
Yeah... I could s3o stuff for you if you want.
Posted: 03 Sep 2006, 15:56
by Sheekel
I made another pack of textures last night that are a perfect match to the 256bit colors. Looks great now.
How do i do the little team dot thing?
Posted: 04 Sep 2006, 00:09
by Weaver
An update
Something new
Just shout if you want them.
Posted: 04 Sep 2006, 00:15
by Snipawolf
Oh-ho.. Not bad XD
Posted: 04 Sep 2006, 19:27
by Weaver
http://www.lego.com/eng/create/gallery/default.asp
There's a lot of dross here, but also a few nice things. Like an AIAT model, which I could adapt.
Made by this guy.
http://www.lego.com/eng/create/gallery/ ... AAC14AC0E0
Posted: 05 Sep 2006, 05:35
by bwansy
I have a question: does every one of the MAG units have a minifig on it?
Posted: 05 Sep 2006, 05:37
by Sheekel
That depends, im not even done with lvl1 yet. But i planned on lvl1 being all minifig infantry, and then lvl2 being tanks and such.
Posted: 05 Sep 2006, 05:49
by bwansy
MAG Scout Plane. Sorry my ability is limited to designing aircraft, which is exactly what I am studying in U.

Posted: 05 Sep 2006, 17:48
by Min3mat
LOVE it
make sure to get a genius to script the turrets and also make them moderately weak.
A good example of something along the right lines would be the imperial proton torpedo artillery from EaW
had some weak turrets which it could use ONLY when not using its cannon
that would be good IMO, and make the big cannon take a wee while to set up
(v important you get stuff like this in to make for good gameplay and interesting balance IMO, as thats what this mod is all about, that and blowing the crap out of lego like youa re 7 years old again :D :D :D)
Posted: 05 Sep 2006, 18:27
by PK Maximoo
Sheekel wrote:I am seriously concerned about how well this mod is going to perform on computers, everything seems very high-poly. Right now the normal minifig without guns or vehicle or anything is 440 polygons. I'm still not sure about if that would be sufficient or if i should reduce it more.
As caydr likes reminding people in his ubercomplex modelling thread, poly count isn't THAT draining on resources; you should be fine around 500 polys if necessary, but that head could definitely be simplified.
Posted: 05 Sep 2006, 19:19
by Sheekel
Maelstrom wrote:From the little that I understand about scripting, that would be possible, and actually quite easy. Observe (pseudo code):
Code: Select all
hide block_set_0, block_set_1, block_set_2, block_set_3, block_set_4;
Switch (Rand(0,4))
{
case 0:
show block_set_0;
case 1:
show block_set_1;
case 2:
show block_set_2;
case 3:
show block_set_3;
case 4:
show block_set_4;
}
(take from old thread)
Im considering using this switch-case option to have somewhat random block colors, but wouldnt it vastly increase the polygon count if i had to make 4 textured versions of each unit? Or does spring not render polygons "hidden" by the script.
[Edit] Does the scripting system even support switch-case?
Posted: 05 Sep 2006, 19:45
by FLOZi
Spring doesn't render hidden faces, and no, I don't think BOS supports swtich/case.
Posted: 05 Sep 2006, 20:05
by SinbadEV
you can duplicate the effects of a switch/case with a series of if statements so the general principle is still valid.
Posted: 05 Sep 2006, 20:07
by Aun
Check Gundam, Smoth has several models for some buildings.
Posted: 05 Sep 2006, 20:21
by Sheekel
SinbadEV wrote:you can duplicate the effects of a switch/case with a series of if statements so the general principle is still valid.
Do you think it is something worth adding to the mod? Or would it decrease performance or something. Im willing to do the work.
Posted: 05 Sep 2006, 20:23
by SinbadEV
if it's just during the create script and it's good enough I think it would deffinitely add to the feel of the thing.