SMOD file format

11/26/2019 20:33 ka123an#1
I need a help :) shaiya's 3d models files typs are SMOD most of you know this. How can ı open these format in 3d modeling program for example blender ı couldn't find any information about SMOD. How can ı transoform this format to obj or fbx ?
11/26/2019 22:13 {Skrillex}#2
Hi,
Quote:
struct String {
long count; // number of character to follow
char *buffer;// array of characters
};

struct Strings {
long count; // number of String to follow
String* strings; // array of strings
};

struct Vertice {
float x, y, z;
float nx, ny, nz;
float unk;
float u, v;
};
struct Vertices {
long count;
Vertice* vertcs;
};

struct Face {
unsigned short i1, i2, i3;
};

struct Faces {
long count;
Face* facs;
};

struct FileSMOD {
long count;
Strings objects3D;
Vertices vertices;
Faces faces;
};
[Only registered and activated users can see links. Click Here To Register...]

Regards