Jump to content

Recommended Posts

Posted (edited)

try this one

pvpladder

CREATE TABLE IF NOT EXISTS `pvpladder` (
 `char_id` int(11) NOT NULL DEFAULT '0',
 `name` varchar(30) NOT NULL DEFAULT '',
 `streaks` smallint(6) unsigned NOT NULL DEFAULT '0',
 `kills` smallint(6) unsigned NOT NULL DEFAULT '0',
 `deaths` smallint(6) unsigned NOT NULL DEFAULT '0',
 `streaktime` datetime DEFAULT NULL,
 PRIMARY KEY (`char_id`)
) ENGINE=MyISAM;

ownladder

CREATE TABLE IF NOT EXISTS `ownladder` (
 `guild_id` int(11) NOT NULL DEFAULT '0',
 `name` varchar(24) NOT NULL DEFAULT '',
 `currentown` smallint(6) unsigned NOT NULL DEFAULT '0',
 `highestown` smallint(6) unsigned NOT NULL DEFAULT '0',
 `owntime` datetime DEFAULT NULL,
 PRIMARY KEY (`guild_id`)
) ENGINE=MyISAM;

i just copy this code on my server sql, hope it will help...

Edited by arnie2302

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...