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

Website for TFS 1.2

ZeeBeast

Preferable Beta Tester
Joined
Dec 5, 2013
Messages
206
Reaction score
10
Location
United States
I found a bunch of ways to make a website for TFS 1.0, but I cannot find any for TFS 1.2
I have tried to make a website for TFS 1.0, but as expected, that didn't work.
If anyone has any info, please help.
Thanks in advance.
 
If works with tfs 1.0 probably will works with 1.2, is the same shit.
I dont think so. I keep getting this error:
string(106) "SELECT `ip`, `created`, `points`, `cooldown`, `flag` FROM `znote_accounts` WHERE `account_id` = 2 LIMIT 1;"
(query - SQL error)
Type: select_single (select single row from database)

Unknown column 'cooldown' in 'field list'
 
I dont think so. I keep getting this error:
string(106) "SELECT `ip`, `created`, `points`, `cooldown`, `flag` FROM `znote_accounts` WHERE `account_id` = 2 LIMIT 1;"
(query - SQL error)
Type: select_single (select single row from database)

Unknown column 'cooldown' in 'field list'
Your znote_accounts table is missing the cooldown column.
You can alter znote_account and add this:
Code:
ALTER TABLE `znote_accounts` ADD `cooldown` int(10) DEFAULT 0;
 
Your znote_accounts table is missing the cooldown column.
You can alter znote_account and add this:
Code:
ALTER TABLE `znote_accounts` ADD `cooldown` int(10) DEFAULT 0;
That fixed that problem. Now I'm getting this error:
string(106) "SELECT `ip`, `created`, `points`, `cooldown`, `flag` FROM `znote_accounts` WHERE `account_id` = 2 LIMIT 1;"
(query - SQL error)
Type: select_single (select single row from database)

Unknown column 'flag' in 'field list'

Should I try the same thing but just change the name?

EDIT: I did the same thing. It worked. Thank you
 
Last edited:
That fixed that problem. Now I'm getting this error:
string(106) "SELECT `ip`, `created`, `points`, `cooldown`, `flag` FROM `znote_accounts` WHERE `account_id` = 2 LIMIT 1;"
(query - SQL error)
Type: select_single (select single row from database)

Unknown column 'flag' in 'field list'

Should I try the same thing but just change the name?

EDIT: I did the same thing. It worked. Thank you
Flag is supposed to be a varchar(20) not an int.

Code:
ALTER TABLE `znote_accounts` ADD `flag` varchar(20) NOT NULL;
 
Back
Top