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

How report bugs works? cTRL + z

Nekiro

Legendary OT User
TFS Developer
Joined
Sep 7, 2015
Messages
2,696
Solutions
127
Reaction score
2,145
Like in title. How its working?

I mean players can report bug with ctrl + z but where the bugs saves? And when i try it nothing happens
I just write something in box and send and just nothing.
 
Where should i enable this system?

Well in TFS 1.2 it is enabled by default and the player's account type has to be greater than 1.

If you wish to let all players be able to report using ctrl+z you can go to your game.cpp and remove this:

Code:
    if (player->getAccountType() == ACCOUNT_TYPE_NORMAL) {
        return;
    }

Edit: Not sure if this will work.
 
Last edited:
Well in TFS 1.2 it is enabled by default and the player's account type has to be greater than 1.

If you wish to let all players be able to report using ctrl+z you can go to your game.cpp and remove this:

Code:
    if (player->getAccountType() == ACCOUNT_TYPE_NORMAL) {
        return;
    }

Edit: Not sure if this will work.
i tried this, but dont work for me... TFS 1.2

i removed these lines, and the players still haven't authorization to report
 
Back
Top