Jump to content

About sql-files


Recommended Posts


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  17
  • Reputation:   0
  • Joined:  10/12/12
  • Last Seen:  

Saan po pwede maka kuha ng pvpladder and ownladder.sql files?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  91
  • Topics Per Day:  0.02
  • Content Count:  309
  • Reputation:   6
  • Joined:  04/24/12
  • Last Seen:  

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
Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  10
  • Topics Per Day:  0.00
  • Content Count:  17
  • Reputation:   0
  • Joined:  10/12/12
  • Last Seen:  

Thank you sir. /no1

Link to comment
Share on other sites

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.

×
×
  • Create New...