Jump to content
  • 0

SQL Error need help! :((


Question

2 answers to this question

Recommended Posts

Posted

Update your homunculus table...

--
-- Table structure for table `homunculus`
--
CREATE TABLE IF NOT EXISTS `homunculus` (
 `homun_id` int(11) NOT NULL auto_increment,
 `char_id` int(11) NOT NULL,
 `class` mediumint(9) unsigned NOT NULL default '0',
 `prev_class` mediumint(9) NOT NULL default '0',
 `name` varchar(24) NOT NULL default '',
 `level` smallint(4) NOT NULL default '0',
 `exp` int(12) NOT NULL default '0',
 `intimacy` int(12) NOT NULL default '0',
 `hunger` smallint(4) NOT NULL default '0',
 `str` smallint(4) unsigned NOT NULL default '0',
 `agi` smallint(4) unsigned NOT NULL default '0',
 `vit` smallint(4) unsigned NOT NULL default '0',
 `int` smallint(4) unsigned NOT NULL default '0',
 `dex` smallint(4) unsigned NOT NULL default '0',
 `luk` smallint(4) unsigned NOT NULL default '0',
 `hp` int(12) NOT NULL default '1',
 `max_hp` int(12) NOT NULL default '1',
 `sp` int(12) NOT NULL default '1',
 `max_sp` int(12) NOT NULL default '1',
 `skill_point` smallint(4) unsigned NOT NULL default '0',
 `alive` tinyint(2) NOT NULL default '1',
 `rename_flag` tinyint(2) NOT NULL default '0',
 `vaporize` tinyint(2) NOT NULL default '0',
 PRIMARY KEY  (`homun_id`)
) ENGINE=MyISAM;

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.

  • Recently Browsing   0 members

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