• 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 i can fix this? (image)

nuelma123

New Member
Joined
Jun 6, 2011
Messages
66
Reaction score
1
m4kxthP.png

I USING TFS 1.2 10.90

HOW I CAN FIX THIS BUG?
I NOT HAVE THE BUTTONS!!!! INVITED/EDIT RANK/ ETC

HELP PLEASE!!!!!!!!
I'M DESPERATE
 
In TFS config.lua find line about in-game guild management and turn it off (so TFS will work fine with website guild management).
This error occurs when you create guild when guild leader is online and there is 'in-game' guild management 'on'.

TFS 1.2 - I don't know.
 
I think that the error be here: DON't WORK this "tiggers"

YRou0hv.png


Code:
BEGIN
    INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('the Leader', 3, NEW.`id`);
    INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('a Vice-Leader', 2, NEW.`id`);
    INSERT INTO `guild_ranks` (`name`, `level`, `guild_id`) VALUES ('a Member', 1, NEW.`id`);
END

I think that this code not is correct

help
 
Execute this SQL Query:

Code:
delete from guilds;

Then:

Code:
ALTER TABLE `guilds` ADD COLUMN `join_date` INT( 11 ) NOT NULL DEFAULT '0';

Also, in config.lua:

Code:
ingameGuildManagement = true

change it to false.
 
hello, thanks for you reply,
Iwas create this column in table "guild" and edit config lua , but not work , continuing the same problem

dTFfSJ6.png


I do not understand this step that you indicate me

XSosr6w.png
 
Hello! I don't really understand...
I have done everything here, but i got this error instead:
  • Guild with ID 0 doesn't exist. Can you help me? :)
And i cant find this in config:
in config.lua search for:
Lua:
ingameGuildManagement = true
and changer for:
Lua:
ingameGuildManagement = false
 
Last edited:
Back
Top