-
Proficient Member
[Research]Tekk java el editor listCfg_xxxx
// VERSION Elements.data v1.0 Structure file reader
//
//list<nb>{
// int>number of successive int
// string:length (in byte)
// int>number of successive int
//}
//use list<nb>=list<nb> to use the same structure of list specified after =
list0{
skip<4
}
What do it skip and how do you know where to skip?
list1{
[ID, Name, ??, ??, ??, ??]
int>1 - is it for ID?
Wstring:64 - is it for Name?
int>4 - what is for?
How can you write new cfg based on the structure?
-
-
Apprentice
Re: [Research]Tekk java el editor listCfg_xxxx
http://ipicture.ru/upload/100413/thumbs/97u26s1E1E.png
{
int>4
}
=
{
int>1
int>1
int>1
int>1
}
{
#8$2
Wstring:16
int>32
}
=
Wstring:16=TypeName(1)
int>32=data of 32 items(1)
Wstring:16=TypeName(2)
int>32=data of 32 items(2)
Wstring:16=TypeName(3)
int>32=data of 32 items(3)
Wstring:16=TypeName(4)
int>32=data of 32 items(4)
Wstring:16=TypeName(5)
int>32=data of 32 items(5)
Wstring:16=TypeName(6)
int>32=data of 32 items(6)
Wstring:16=TypeName(7)
int>32=data of 32 items(7)
Wstring:16=TypeName(8)
int>32=data of 32 items(8)
#8$2=:
2 bottom strings are repeated 8 times.
-
Proficient Member
Re: [Research]Tekk java el editor listCfg_xxxx
Thanks a lot. I get it now.
What about skip<?
-
Apprentice
Re: [Research]Tekk java el editor listCfg_xxxx
How many skip byte in list o_O
-
Proficient Member
Re: [Research]Tekk java el editor listCfg_xxxx
okay ;)
How do you calculate the amount of bytes to skip till the next list?
-
Apprentice
Re: [Research]Tekk java el editor listCfg_xxxx