How do I mod things?

The place to discuss all things Lugaru.
Silb
Master cartographer
Posts: 558
Joined: Sat Dec 10, 2005 10:03 am
Location: Map Guild

Post by Silb » Mon Jan 08, 2007 9:08 am

Usagi wrote:I don't have taste buds.
Why do you get stronge coffee for Christmas?

User avatar
Usagi
Screenshot Superhero
Posts: 1161
Joined: Fri Apr 08, 2005 11:13 am

Post by Usagi » Mon Jan 08, 2007 9:21 am

To ensure that my faith does not waver in the face of heathens.

Or is it to ensure that my face does not waver in the faith of heathens?

I get them mixed up sometimes.

User avatar
rudel_ic
official Wolfire heckler
Posts: 2193
Joined: Sun Aug 28, 2005 11:19 pm
Location: Hamburg City
Contact:

Post by rudel_ic » Mon Jan 08, 2007 3:28 pm

Whats stronge?

Nayr
wicked bad-ass title
Posts: 643
Joined: Wed Jul 07, 2004 9:35 am

Post by Nayr » Mon Jan 08, 2007 7:39 pm

yea, I'm writing another app. I'm trying to remember the format from memory.

something like (if someone else wants to try):

Header:

Code: Select all

short v; // number of vertices
short t; // number of triangles
Data:

Code: Select all

(for each vertex)
{
float x;
float y;
float z;
}

(for each triangle)
{
short ref[3]; // index number for vertices
float u[3]; // u index
float v[3]; // v index
}
then some other stuff; but that's what I can't remember.

pyros soul
Posts: 402
Joined: Thu Dec 01, 2005 7:59 pm
Location: Randomness Forum
Contact:

Post by pyros soul » Mon Jan 08, 2007 8:12 pm

I am so confused that BBQ is starting to become smarter than me.

Nayr
wicked bad-ass title
Posts: 643
Joined: Wed Jul 07, 2004 9:35 am

Post by Nayr » Mon Jan 08, 2007 8:23 pm

I think something just went over my head. What?

[edit]you know you haven't been on the forum much when someone doesn't know who you are.

I might be the oldest active member aside from viking. Or has he gone too?[/edit]

zip
lugaruguru
Posts: 1820
Joined: Mon Jan 26, 2004 12:39 pm
Location: USA, Missouri
Contact:

Post by zip » Mon Jan 08, 2007 9:28 pm

Viking is still here, as am I :p
The format is:

Code: Select all

short vertexNum; 

short TriangleNum; 

float vertex[i].x, vertex[i].y, vertex[i].z; 
//where i is 0 to vertexNum-1 

int Triangles[i].vertex[0], Triangles[i].vertex[1], Triangles[i].vertex[2]; 
//where i is 0 to TriangleNum-1, and vertex[0] is the first vertex in
the triangle, vertex[1] the second, and so on

float Triangles[i].gx[0], Triangles[i].gx[1], Triangles[i].gx[2]; 
//where i is 0 to TriangleNum-1, and gx is the horizontal texture uv 

float Triangles[i].gy[0], Triangles[i].gy[1], Triangles[i].gy[2]; 
//where i is 0 to TriangleNum-1, and gy is the vertical texture uv

wormguy
Posts: 685
Joined: Sat Oct 08, 2005 9:59 am
Contact:

Post by wormguy » Mon Jan 08, 2007 10:02 pm

Silb wrote:
Usagi wrote:I don't have taste buds.
Why do you get stronge coffee for Christmas?
I think we our first official Wolfire Forum meme.

User avatar
Usagi
Screenshot Superhero
Posts: 1161
Joined: Fri Apr 08, 2005 11:13 am

Post by Usagi » Mon Jan 08, 2007 11:46 pm

It's a stronge meme; I hope it continues to evolve, until it finally achieves Godhood in a can of coffee and gives me taste buds.

zip
lugaruguru
Posts: 1820
Joined: Mon Jan 26, 2004 12:39 pm
Location: USA, Missouri
Contact:

Post by zip » Tue Jan 09, 2007 3:23 am

Colicedus-is-a-walking-meme.

User avatar
NightDevil
Posts: 38
Joined: Sun Jul 16, 2006 6:18 am
Location: DeEP in THe REALmS OF HEll
Contact:

Post by NightDevil » Tue Jan 09, 2007 4:04 am

EAsy thing with the sword and I like it It looks Cool
http://img204.imageshack.us/my.php?imag ... 500aj9.png

User avatar
Colicedus
forom-muppat-yoda
Posts: 2592
Joined: Thu Aug 10, 2006 4:57 am
Location: Where ever your mind takes you

Post by Colicedus » Tue Jan 09, 2007 5:30 am

zip wrote:Colicedus-is-a-walking-meme.
WTF is a Walking Meme? :? :evil: :?

User avatar
Viking Zippy
Wooter
Posts: 1215
Joined: Sun Jan 25, 2004 5:56 pm
Location: Milky Way
Contact:

Post by Viking Zippy » Tue Jan 09, 2007 11:09 am

Nayr wrote:I might be the oldest active member aside from viking. Or has he gone too?[/edit]
As Zip said, we're still here, though I've eased up on the post-happy-ness a bit ;) ... but if we're not counting David and Jeff, Loki's got the earliest registration date, and I think I've seen him post occasionally ...
Colicedus wrote:
zip wrote:Colicedus-is-a-walking-meme.
WTF is a Walking Meme? :? :evil: :?
According to a search result on Google, a walking meme is an "an idea, behavior, or usage that spreads from person to person within a group" ... but I still don't' know what stronge is :P

User avatar
leDoOd
What custom title?
Posts: 777
Joined: Fri Feb 11, 2005 10:25 am
Location: The Q Continuum
Contact:

Post by leDoOd » Tue Jan 09, 2007 7:05 pm

^ See here for the full story:
http://www.wolfire.com/forum/viewtopic.php?t=1799

And Zip, how do we go about using that code? Is there a program or something else that you have to input that, or something?

Nayr
wicked bad-ass title
Posts: 643
Joined: Wed Jul 07, 2004 9:35 am

Post by Nayr » Tue Jan 09, 2007 7:07 pm

no. That's just a format.

I'm pretty sure there's more to it than that, or one of the values was an int instead of a short, or something. Something was different.

Post Reply