forked from ACEmulator/ACE
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Display most recently used character as selected upon login. (ACEmula…
- Loading branch information
1 parent
b8c421f
commit 5355361
Showing
5 changed files
with
46 additions
and
36 deletions.
There are no files selected for viewing
1 change: 1 addition & 0 deletions
1
Database/Updates/Character/01_2017_04_26_CharacterLastUpdate.sql
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
ALTER TABLE `character` CHANGE `birth` `lastUpdate` TIMESTAMP on update CURRENT_TIMESTAMP NOT NULL DEFAULT CURRENT_TIMESTAMP; |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,34 +1,38 @@ | ||
2/3/2017 | ||
-------- | ||
- Added four new tables - character_appearance, character_stats, character_skills and character_startup_gear. | ||
|
||
2/4/2017 | ||
-------- | ||
- Added new columns to character_stats table - strengthRanks, enduranceRanks, coordinationRanks, quicknessRanks, focusRanks, selfRanks, healthRanks, staminaRanks, manaRanks, healthCurrent, staminaCurrent, manaCurrent. | ||
|
||
2/7/2017 | ||
-------- | ||
- Added new columns columns to character_stats table - strengthXpSpent, enduranceXpSpent, coordinationXpSpent, quicknessXpSspent, focusXpSpent, selfXpSpent, healthXpSpent, staminaXpSpent, manaXpSpent. | ||
- Removed some columns from character and character_appearance tables - isAdmin, isEnvoy | race, gender. | ||
- Added five new tables - character_properties_bool, character_properties_int, character_properties_bigint, character_properties_double, character_properties_string | ||
|
||
2/16/2017 | ||
-------- | ||
- Changed character table - drop index for name column. | ||
- Added script to activate event_scheduler and create an event for character "deletion" after restore window has expired. | ||
- Added character_friends table for friends list functions. | ||
|
||
2/28/2017 | ||
-------- | ||
- Added characterOptions1 and characterOptions2 fields to character table. | ||
|
||
3/16/2017 | ||
-------- | ||
- Changed column quicknessXpSspent to quicknessXpSpent in character_stats table. | ||
- Added column skillXpSpent to character_skills table. | ||
|
||
3/18/2017 | ||
-------- | ||
- In the in character_stats table the following changes have been made: | ||
-- Changed column coordinationXpSpent to an unsigned int(10) to match other columns and prevent crash. | ||
-- Changed columns healthCurrent, staminaCurrent, manaCurrent to unsigned smallint(2) to prevent crash at higher values. | ||
2/3/2017 | ||
-------- | ||
- Added four new tables - character_appearance, character_stats, character_skills and character_startup_gear. | ||
|
||
2/4/2017 | ||
-------- | ||
- Added new columns to character_stats table - strengthRanks, enduranceRanks, coordinationRanks, quicknessRanks, focusRanks, selfRanks, healthRanks, staminaRanks, manaRanks, healthCurrent, staminaCurrent, manaCurrent. | ||
|
||
2/7/2017 | ||
-------- | ||
- Added new columns columns to character_stats table - strengthXpSpent, enduranceXpSpent, coordinationXpSpent, quicknessXpSspent, focusXpSpent, selfXpSpent, healthXpSpent, staminaXpSpent, manaXpSpent. | ||
- Removed some columns from character and character_appearance tables - isAdmin, isEnvoy | race, gender. | ||
- Added five new tables - character_properties_bool, character_properties_int, character_properties_bigint, character_properties_double, character_properties_string | ||
|
||
2/16/2017 | ||
-------- | ||
- Changed character table - drop index for name column. | ||
- Added script to activate event_scheduler and create an event for character "deletion" after restore window has expired. | ||
- Added character_friends table for friends list functions. | ||
|
||
2/28/2017 | ||
-------- | ||
- Added characterOptions1 and characterOptions2 fields to character table. | ||
|
||
3/16/2017 | ||
-------- | ||
- Changed column quicknessXpSspent to quicknessXpSpent in character_stats table. | ||
- Added column skillXpSpent to character_skills table. | ||
|
||
3/18/2017 | ||
-------- | ||
- In the in character_stats table the following changes have been made: | ||
-- Changed column coordinationXpSpent to an unsigned int(10) to match other columns and prevent crash. | ||
-- Changed columns healthCurrent, staminaCurrent, manaCurrent to unsigned smallint(2) to prevent crash at higher values. | ||
|
||
4/26/2017 | ||
--------- | ||
- Renamed column character.birth to character.lastUpdate to better reflect its use. |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,4 +1,5 @@ | ||
"C:\Program Files\MySql\MySQL Server 5.7\bin\mysql.exe" -h localhost -u root -pPassword12! mysql < database\Create\create_mysql.sql | ||
"C:\Program Files\MySql\MySQL Server 5.7\bin\mysql.exe" -h localhost -u root -pPassword12! ace_auth < database\base\AuthenticationBase.sql | ||
"C:\Program Files\MySql\MySQL Server 5.7\bin\mysql.exe" -h localhost -u root -pPassword12! ace_character < database\base\CharacterBase.sql | ||
"C:\Program Files\MySql\MySQL Server 5.7\bin\mysql.exe" -h localhost -u root -pPassword12! ace_world < database\base\WorldBase.sql | ||
"C:\Program Files\MySql\MySQL Server 5.7\bin\mysql.exe" -h localhost -u root -pPassword12! ace_world < database\base\WorldBase.sql | ||
"C:\Program Files\MySql\MySQL Server 5.7\bin\mysql.exe" -h localhost -u root -pPassword12! ace_character < database\Updates\Character\01_2017_04_26_CharacterLastUpdate.sql |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters