diff options
| author | Subv <s.v.h21@hotmail.com> | 2012-09-05 15:38:39 -0700 |
|---|---|---|
| committer | Subv <s.v.h21@hotmail.com> | 2012-09-05 15:38:39 -0700 |
| commit | 4a96d792073f7cc714e786feb8800d736223f130 (patch) | |
| tree | 76c1e5f8e52505086a2533e6f33938ebc465c1dd /sql | |
| parent | 6ba88daa532d0d213ea80d421f7753566bf72b39 (diff) | |
| parent | c9eb42f2465e607c5e13425cc913b792a15e937e (diff) | |
Merge pull request #7670 from Chevron/mmaps_2
Core/Commands: Implemented mmaps commands.
Nayd's seal of aproval.
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/2012_09_06_00_world_command.sql | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/sql/updates/world/2012_09_06_00_world_command.sql b/sql/updates/world/2012_09_06_00_world_command.sql new file mode 100644 index 00000000000..e60c1644e05 --- /dev/null +++ b/sql/updates/world/2012_09_06_00_world_command.sql @@ -0,0 +1,9 @@ +DELETE FROM `command` WHERE `name`='mmap' OR `name` LIKE 'mmap%'; +INSERT INTO `command` (`name`, `security`, `help`) VALUES +('mmap', 3, 'Syntax: Syntax: .mmaps $subcommand Type .mmaps to see the list of possible subcommands or .help mmaps $subcommand to see info on subcommands'), +('mmap path', 3, 'Syntax: .mmap path to calculate and show a path to current select unit'), +('mmap loc', 3, 'Syntax: .mmap loc to print on which tile one is'), +('mmap loadedtiles', 3, 'Syntax: .mmap loadedtiles to show which tiles are currently loaded'), +('mmap stats', 3, 'Syntax: .mmap stats to show information about current state of mmaps'), +('mmap testarea', 3, 'Syntax: .mmap testarea to calculate paths for all nearby npcs to player'); + |
