muzika Posted November 21, 2012 Posted November 21, 2012 Saan po pwede maka kuha ng pvpladder and ownladder.sql files? Quote
Ragnar Lothbrok Posted November 21, 2012 Posted November 21, 2012 (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 November 21, 2012 by arnie2302 Quote
Recommended Posts
Join the conversation
You can post now and register later. If you have an account, sign in now to post with your account.