mirror of
https://github.com/EQEmu/Server.git
synced 2026-03-05 17:42:24 +00:00
Bit of Task Revamp (shared still unimplemented)
Lots of change, packets should be better defined. Task type tasks are now supported
This commit is contained in:
parent
07f3ab955f
commit
c08993b60b
@ -1,5 +1,17 @@
|
|||||||
EQEMu Changelog (Started on Sept 24, 2003 15:50)
|
EQEMu Changelog (Started on Sept 24, 2003 15:50)
|
||||||
-------------------------------------------------------
|
-------------------------------------------------------
|
||||||
|
== 07/09/2018 ==
|
||||||
|
mackal: Rework of Task System, Shared Tasks still unsupported
|
||||||
|
- The tables now have better named columns, which hopefully won't need to be explained
|
||||||
|
- Text1 is now target_name, Text2 is now item_list, Text3 is now description_override
|
||||||
|
- Tasks can now reward faction hits, this is just normal NPC Faction ID entries because I was lazy
|
||||||
|
- The "Task" type tasks are now supported, a player can only be doing one of these at a time
|
||||||
|
- Activity IDs for use spell on and use skill on have been identified but not implemented
|
||||||
|
- Identified "duration code" for unlimited duration tasks (None = 0, Short = 1, Medium = 2, Long = 3)
|
||||||
|
- Activities can now have multiple zones separated by ';'
|
||||||
|
- tasks.startzone removed since it actually just uses first activity
|
||||||
|
- skill_list and spell_list are both IDs that can be separated by ';' (still unimplemented though)
|
||||||
|
|
||||||
== 07/07/2018 ==
|
== 07/07/2018 ==
|
||||||
Akkadius: Implemented a much better replacement for qglobals called 'DataBuckets'
|
Akkadius: Implemented a much better replacement for qglobals called 'DataBuckets'
|
||||||
- A much more detailed example can be found at: https://github.com/EQEmu/Server/wiki/Data-Buckets
|
- A much more detailed example can be found at: https://github.com/EQEmu/Server/wiki/Data-Buckets
|
||||||
|
|||||||
@ -30,7 +30,7 @@
|
|||||||
Manifest: https://github.com/EQEmu/Server/blob/master/utils/sql/db_update_manifest.txt
|
Manifest: https://github.com/EQEmu/Server/blob/master/utils/sql/db_update_manifest.txt
|
||||||
*/
|
*/
|
||||||
|
|
||||||
#define CURRENT_BINARY_DATABASE_VERSION 9123
|
#define CURRENT_BINARY_DATABASE_VERSION 9124
|
||||||
#ifdef BOTS
|
#ifdef BOTS
|
||||||
#define CURRENT_BINARY_BOTS_DATABASE_VERSION 9019
|
#define CURRENT_BINARY_BOTS_DATABASE_VERSION 9019
|
||||||
#else
|
#else
|
||||||
|
|||||||
@ -377,6 +377,7 @@
|
|||||||
9121|2018_02_18_bug_reports.sql|SHOW TABLES LIKE 'bug_reports'|empty|
|
9121|2018_02_18_bug_reports.sql|SHOW TABLES LIKE 'bug_reports'|empty|
|
||||||
9122|2018_03_07_ucs_command.sql|SELECT * FROM `command_settings` WHERE `command` LIKE 'ucs'|empty|
|
9122|2018_03_07_ucs_command.sql|SELECT * FROM `command_settings` WHERE `command` LIKE 'ucs'|empty|
|
||||||
9123|2018_07_07_data_buckets.sql|SHOW TABLES LIKE 'data_buckets'|empty|
|
9123|2018_07_07_data_buckets.sql|SHOW TABLES LIKE 'data_buckets'|empty|
|
||||||
|
9124|2018_07_09_tasks.sql|SHOW COLUMNS FROM `tasks` LIKE 'type'|empty|
|
||||||
|
|
||||||
# Upgrade conditions:
|
# Upgrade conditions:
|
||||||
# This won't be needed after this system is implemented, but it is used database that are not
|
# This won't be needed after this system is implemented, but it is used database that are not
|
||||||
|
|||||||
Loading…
x
Reference in New Issue
Block a user