Adjust EXP storage to uint64 (#4377)
* Updates EXP table to 200/70 * Always store exp as uint64 no matter the client date. * Adjusts guild exp to uint64. Co-authored-by: Aleos <aleos89@users.noreply.github.com> Co-authored-by: Lemongrass3110 <lemongrass@kstp.at>
This commit is contained in:
@@ -439,7 +439,7 @@ CREATE TABLE IF NOT EXISTS `guild` (
|
||||
`max_member` tinyint(6) unsigned NOT NULL default '0',
|
||||
`average_lv` smallint(6) unsigned NOT NULL default '1',
|
||||
`exp` bigint(20) unsigned NOT NULL default '0',
|
||||
`next_exp` int(11) unsigned NOT NULL default '0',
|
||||
`next_exp` bigint(20) unsigned NOT NULL default '0',
|
||||
`skill_point` tinyint(11) unsigned NOT NULL default '0',
|
||||
`mes1` varchar(60) NOT NULL default '',
|
||||
`mes2` varchar(120) NOT NULL default '',
|
||||
|
||||
Reference in New Issue
Block a user