rhett Posted April 12, 2014 Group: Members Topic Count: 1 Topics Per Day: 0.00 Content Count: 1 Reputation: 0 Joined: 04/27/13 Last Seen: April 23, 2014 Share Posted April 12, 2014 (edited) I need help on these two problemsI just started to know how to make a server.. and followed some guides made from different people.And searched for some solutions on problem that occurs then doesnt work.Please help Thank you. Edited April 12, 2014 by rhett Quote Link to comment Share on other sites More sharing options...
Pascal S Posted April 15, 2014 Group: Members Topic Count: 5 Topics Per Day: 0.00 Content Count: 12 Reputation: 2 Joined: 04/15/14 Last Seen: August 8, 2014 Share Posted April 15, 2014 (edited) #Database: ragnarok #Table: loginlog CREATE TABLE IF NOT EXISTS `loginlog` ( `time` datetime NOT NULL default '0000-00-00 00:00:00', `ip` varchar(15) NOT NULL default '', `user` varchar(23) NOT NULL default '', `rcode` tinyint(4) NOT NULL default '0', `log` varchar(255) NOT NULL default '', INDEX (`ip`) ) ENGINE=MyISAM ; https://github.com/rathena/rathena/blob/master/sql-files/logs.sql -- -- Table structure for table `mapreg` -- CREATE TABLE IF NOT EXISTS `mapreg` ( `varname` varchar(32) NOT NULL, `index` int(11) unsigned NOT NULL default '0', `value` varchar(255) NOT NULL, KEY `varname` (`varname`), KEY `index` (`index`) ) ENGINE=MyISAM; https://github.com/rathena/rathena/blob/master/sql-files/main.sql http://rathena.org/wiki/SQL_Installation#Database_Installation Edited April 15, 2014 by Pascal S 1 Quote Link to comment Share on other sites More sharing options...
Question
rhett
I need help on these two problems
Thank you.
I just started to know how to make a server.. and followed some guides made from different people.
And searched for some solutions on problem that occurs then doesnt work.
Please help

Edited by rhettLink to comment
Share on other sites
1 answer to this question
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.