Jump to content
  • 0

how to fix this guys?


Ragnar Lothbrok

Question


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

when i run the server this error appears

error1.jpg

and after selecting the character this error appear and

error3.jpg

i cant connect to the server....

error2.jpg

BUMP!

Link to comment
Share on other sites

7 answers to this question

Recommended Posts


  • Group:  Members
  • Topic Count:  48
  • Topics Per Day:  0.01
  • Content Count:  410
  • Reputation:   29
  • Joined:  04/04/12
  • Last Seen:  

You are missing those fields from your SQL database.

Did you make some custom source edits? You have to update your databases.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  81
  • Topics Per Day:  0.02
  • Content Count:  1654
  • Reputation:   583
  • Joined:  08/09/12
  • Last Seen:  

Yes, redownload the latest version from trunk SVN and recompile.

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  80
  • Topics Per Day:  0.02
  • Content Count:  325
  • Reputation:   76
  • Joined:  03/22/12
  • Last Seen:  

hmmm do you have insert npc script before ?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  94
  • Topics Per Day:  0.02
  • Content Count:  2192
  • Reputation:   252
  • Joined:  11/11/11
  • Last Seen:  

Basically, the error is stating itself if you read closely to what is being said:

"Unknown column '......' in '........' ". I suggest you try to remember what source modifications you've done and any SQL adjustments. Basically, you have changes because rAthena doesn't support 'serial' in the Auction database:


CREATE TABLE IF NOT EXISTS `auction` (
 `auction_id` bigint(20) unsigned NOT NULL auto_increment,
 `seller_id` int(11) unsigned NOT NULL default '0',
 `seller_name` varchar(30) NOT NULL default '',
 `buyer_id` int(11) unsigned NOT NULL default '0',
 `buyer_name` varchar(30) NOT NULL default '',
 `price` int(11) unsigned NOT NULL default '0',
 `buynow` int(11) unsigned NOT NULL default '0',
 `hours` smallint(6) NOT NULL default '0',
 `timestamp` int(11) unsigned NOT NULL default '0',
 `nameid` int(11) unsigned NOT NULL default '0',
 `item_name` varchar(50) NOT NULL default '',
 `type` smallint(6) NOT NULL default '0',
 `refine` tinyint(3) unsigned NOT NULL default '0',
 `attribute` tinyint(4) unsigned NOT NULL default '0',
 `card0` smallint(11) NOT NULL default '0',
 `card1` smallint(11) NOT NULL default '0',
 `card2` smallint(11) NOT NULL default '0',
 `card3` smallint(11) NOT NULL default '0',
 PRIMARY KEY  (`auction_id`)
) ENGINE=MyISAM;

https://rathena.svn.sourceforge.net/svnroot/rathena/trunk/sql-files/main.sql

Nor play time. You probably have scripts that need those additional fields?

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  26
  • Topics Per Day:  0.01
  • Content Count:  2244
  • Reputation:   182
  • Joined:  11/19/11
  • Last Seen:  

is that serial/playtime from eamod, or is this the script/src xanatria made

Link to comment
Share on other sites


  • Group:  Members
  • Topic Count:  30
  • Topics Per Day:  0.01
  • Content Count:  154
  • Reputation:   6
  • Joined:  04/26/12
  • Last Seen:  

recompile your server files

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
Answer this question...

×   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...