• 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!

Problem running my server

tlundin

Almighty push all the noobs.
Joined
Jul 28, 2009
Messages
95
Reaction score
1
I had my ot it was 8.62 and i switched to 8.60 but when i enter i got debug each 1 minute or less for no reason if and I dont really know what should i do , also im using tfs 0.2.8 any one got idea why i got debugs ?
 
Make sure you using data/items from 8.60, i had similar issue with random debugs. Fixed it by using items from original compiled source.
 
i did still i get debug and also there is certain teleports if i get in i got debugs too any new suggestion ?
 
Here you Are Domini
first it's 0.2.8 for 8.62 :D
he need it for roxOT

in resources.h
changed
Code:
#define STATUS_SERVER_PROTOCOL "8.62"
to
Code:
#define STATUS_SERVER_PROTOCOL "8.60"

after than it's never worked and still give me u need 8.62 to be allowed so i add another things :D
i changed something in protocols files
protocollogin.cpp
changed this
Code:
    if(version < 862)
    {
        disconnectClient(0x0A, "Only clients with protocol 8.62 allowed!");
        return false;
    }
to
Code:
    if(version < 860)
    {
        disconnectClient(0x0A, "Only clients with protocol 8.60 allowed!");
        return false;
    }

and in protocolgame.cpp
change this
Code:
    if(version < 862)
    {
        disconnectClient(0x14, "Only clients with protocol 8.62 allowed!");
        return false;
    }
to
Code:
    if(version < 860)
    {
        disconnectClient(0x14, "Only clients with protocol 8.60 allowed!");
        return false;
    }
 
i don't have his server scripts :D
so i'm gonna ask him .. hehehe

but i don't think problem in flags
because i didn't touched the source files
only downgrade it to 8.60
 
i don't think there is new graphic it's rox map the same one since it begin in 8.54 source client
when we run the source of rox 8.62 every thing works good and no debug

maybe the problem in the compiled tfs
 
The problem is that TFS is trying to send some 8.62 data that does not exist in 8.60

You should just get 0.3.6 and convert it.
 
Here you Are Domini
first it's 0.2.8 for 8.62 :D
he need it for roxOT

in resources.h
changed
Code:
#define STATUS_SERVER_PROTOCOL "8.62"
to
Code:
#define STATUS_SERVER_PROTOCOL "8.60"

after than it's never worked and still give me u need 8.62 to be allowed so i add another things :D
i changed something in protocols files
protocollogin.cpp
changed this
Code:
    if(version < 862)
    {
        disconnectClient(0x0A, "Only clients with protocol 8.62 allowed!");
        return false;
    }
to
Code:
    if(version < 860)
    {
        disconnectClient(0x0A, "Only clients with protocol 8.60 allowed!");
        return false;
    }

and in protocolgame.cpp
change this
Code:
    if(version < 862)
    {
        disconnectClient(0x14, "Only clients with protocol 8.62 allowed!");
        return false;
    }
to
Code:
    if(version < 860)
    {
        disconnectClient(0x14, "Only clients with protocol 8.60 allowed!");
        return false;
    }

Thats great and all, but why the f would you keep the item.otb check? haha Okay for those verions that arent bugged, but he will probbly just have problems with it. :p
Code:
    if(version < 862)
    {
        disconnectClient(0x0A, "Only clients with protocol 8.62 allowed!");
        return false;
    }

Do not replace that, remove it.
 
wibben i tried to start the ot too without these file item and start with the original copy and still i got debugs xD
 
Thats great and all, but why the f would you keep the item.otb check? haha Okay for those verions that arent bugged, but he will probbly just have problems with it. :p
Code:
    if(version < 862)
    {
        disconnectClient(0x0A, "Only clients with protocol 8.62 allowed!");
        return false;
    }

Do not replace that, remove it.

i don't think this is a reason of debug :eek:
 
i don't think this is a reason of debug :eek:
Who said debug? xD
The bug woud be that he would have problems with loading his items.otb file? Do a quick serach if you haven't heard of that problem before.
The problem is that at 8.60 there we're 2 diffrent otb files, one that RME made, and one that the TFS team? made.

This caused problems due to all the new spirits, therefor RME will only load the one RME made, otherwise it will say "the items.otb file needs an update.."
But when you try to use RMEs otb file, TFS wont start due to that its the wrong version. Therefor this check has been removed on most of the servers
to make it easier for the mapper.
 
listen :D
he is my friend and i who compiled for him

first we tried all otb for 8.60
second there is no version check of otb

third i tried all ways to change it to 8.60
@Mark said change only resources.h and it's never work
i changed every thing i can too fast because i have exams ,so no much time

but we will make it 0.4
if i got bored of this 0.2
anyway 0.2 is sucks :D need more functions
 
I upgraded an 8.54 to 8.6 and had a similar problem make sure it's not item like runs, because runes were changed to charges rather than stacks, and there was rune deco in item shop every time player went near it it debugeed
 
listen :D
he is my friend and i who compiled for him

first we tried all otb for 8.60
second there is no version check of otb

third i tried all ways to change it to 8.60
@Mark said change only resources.h and it's never work
i changed every thing i can too fast because i have exams ,so no much time

but we will make it 0.4
if i got bored of this 0.2
anyway 0.2 is sucks :D need more functions

Start using 0.4 now like I told him yesterday on teamviewer.
 
Back
Top