Minecraft LogMe mod 2026 download
logo
minecraft mod LogMe

LogMe

Game Version: CB 1.5.2-R0.1
Total Downloads: 889
Updated: Jun 2, 2013
Created: Jun 2, 2013
Download LogMeDownload Earlier Versions

Earlier Versions

Name Size Uploaded Game Version Downloads
LogMe 1.0 beta 4.01 KB Jun 2, 2013 CB 1.5.2-R0.1 889 download LogMe LogMe 1.0 betaDownload

Description

Share this:

LogMe

Your number one chat logging solution


(MySQL database required!)

LogMe uses up-to-date technology to log your players chat and commands using an ultra-fast MySQL database.

Things to note

This plugin does not sanitize inputs for use on a webpage, it uses prepared statements to stop MySQL injection, though.

Infomation

Ever wanted to log every single thing your players type for reference in the future? Now you can with LogMe. All LogMe needs to log is a MySQL backend. LogMe is currently in beta, please report any errors you may have.

Database structure

CREATE TABLE IF NOT EXISTS `chat_logs` (
  `id` int(255) NOT NULL AUTO_INCREMENT,
  `username` varchar(32) NOT NULL,
  `time` int(255) NOT NULL,
  `msg` text NOT NULL,
  `ip` varchar(30) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

CREATE TABLE IF NOT EXISTS `command_logs` (
  `id` int(255) NOT NULL AUTO_INCREMENT,
  `username` varchar(32) NOT NULL,
  `time` int(255) NOT NULL,
  `msg` text NOT NULL,
  `ip` varchar(30) NOT NULL,
  PRIMARY KEY (`id`),
  UNIQUE KEY `id` (`id`)
) ENGINE=InnoDB DEFAULT CHARSET=latin1 AUTO_INCREMENT=1 ;

Comments

Add a comment