• There is NO official Otland's Discord server and NO official Otland's server list. The Otland's Staff does not manage any Discord server or server list. Moderators or administrator of any Discord server or server lists have NO connection to the Otland's Staff. Do not get scammed!
  • 2026 staff recruitment is open! Check it out and consider applying!

Solved I would like to bring this issue up!

Didn't gesior already post what the correct version is?

What do you mean :P?

No, the bug isnt fixed, i just bring it up so hopefully others can also take look into it. Since i was the one which took help from gesior and he confirm also its a bug in latest tfs.
 
Gesior typed what that line should look like, but in case you actually change it,
It saves the new item with a float-attribute in the database in an incorrect form,
And thus, causes the item to be "fucked". (I honestly do not understand what he meant exactly :S)
 
Gesior typed what that line should look like, but in case you actually change it,
It saves the new item with a float-attribute in the database in an incorrect form,
And thus, causes the item to be "fucked". (I honestly do not understand what he meant exactly :S)

Gesior made those testes through teamviewer on my computer. He tried everything and still get fcked. Thats why i bringing it up, so hopefully it get fixed soon as possible :/
 
Cool. What version of TFS?

Just for testing:
in otserv.cpp change

Code:
int main(int argc, char* argv[])
{

to

Code:
int main(int argc, char* argv[])
{
   std::cout << "uint32_t: " << sizeof(uint32_t) << std::endl;
   std::cout << "float: " << sizeof(float) << std::endl;

Compile and start.

It should output

Code:
uint32_t: 4
float: 4
 
Im using tfs 5946, its in private subversion 0.3!

I going to try and post here.

- - - Updated - - -

It doesnt print anything, how do you even make it print. what should i do to make it print, you have skype?
 
Last edited:
Back
Top