[SOLVED]Dúvidas Sobre Anticheat

Olá,

Depois que executei a compilação do servidor junto com o Sistema passivo antiCheat, foi possível ver o anticheat em ação porem não consigo encontrar os arquivos sql para que as informações sobre os players sejam salvas no banco de dados. Alguém poderia me informar como consigo os arquivos sql para inserir no meu banco de dados?.

Obrigado

Encontrei.

DROP TABLE IF EXISTS players_reports_status; CREATE TABLE players_reports_status (

guid int(10) unsigned NOT NULL DEFAULT ‘0’,

creation_time int(10) unsigned NOT NULL DEFAULT ‘0’,

average float NOT NULL DEFAULT ‘0’,

total_reports bigint(20) unsigned NOT NULL DEFAULT ‘0’,

speed_reports bigint(20) unsigned NOT NULL DEFAULT ‘0’,

fly_reports bigint(20) unsigned NOT NULL DEFAULT ‘0’,

jump_reports bigint(20) unsigned NOT NULL DEFAULT ‘0’,

waterwalk_reports bigint(20) unsigned NOT NULL DEFAULT ‘0’,

teleportplane_reports bigint(20) unsigned NOT NULL DEFAULT ‘0’,

climb_reports bigint(20) unsigned NOT NULL DEFAULT ‘0’,

PRIMARY KEY (guid)

) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT=‘’;

DROP TABLE IF EXISTS daily_players_reports; CREATE TABLE daily_players_reports (

guid int(10) unsigned NOT NULL DEFAULT ‘0’,

creation_time int(10) unsigned NOT NULL DEFAULT ‘0’,

average float NOT NULL DEFAULT ‘0’,

total_reports bigint(20) unsigned NOT NULL DEFAULT ‘0’,

speed_reports bigint(20) unsigned NOT NULL DEFAULT ‘0’,

fly_reports bigint(20) unsigned NOT NULL DEFAULT ‘0’,

jump_reports bigint(20) unsigned NOT NULL DEFAULT ‘0’,

waterwalk_reports bigint(20) unsigned NOT NULL DEFAULT ‘0’,

teleportplane_reports bigint(20) unsigned NOT NULL DEFAULT ‘0’,

climb_reports bigint(20) unsigned NOT NULL DEFAULT ‘0’,

PRIMARY KEY (guid)

) ENGINE=InnoDB DEFAULT CHARSET=utf8 COMMENT=‘’;

Obrigado

— Canned message start

It appears the issue in the original post was solved, so this thread shall be closed. Should you encounter any other difficulties, please open a new thread.

— Canned message end —