diff options
| author | w1sht0l1v3 <w1sht0l1v3@gmail.com> | 2013-01-26 00:41:46 +0200 |
|---|---|---|
| committer | w1sht0l1v3 <w1sht0l1v3@gmail.com> | 2013-01-26 00:41:46 +0200 |
| commit | 6acfa490659875af8ea546aa223d07b3c9ad21cc (patch) | |
| tree | 068e36a3fb605fcd509ac808a9c361dd83558122 /sql | |
| parent | f3d0ea66be2ae4696393ecdd5b714f1ed21cc073 (diff) | |
Script/Commands: Implement command to list the members of a group/party.
Diffstat (limited to 'sql')
| -rw-r--r-- | sql/updates/world/2013_01_26_00_world_misc.sql | 8 |
1 files changed, 8 insertions, 0 deletions
diff --git a/sql/updates/world/2013_01_26_00_world_misc.sql b/sql/updates/world/2013_01_26_00_world_misc.sql new file mode 100644 index 00000000000..429d900d765 --- /dev/null +++ b/sql/updates/world/2013_01_26_00_world_misc.sql @@ -0,0 +1,8 @@ +DELETE FROM `trinity_string` WHERE `entry` IN (1149,1150); +INSERT INTO `trinity_string` (`entry`,`content_default`,`content_loc1`,`content_loc2`,`content_loc3`,`content_loc4`,`content_loc5`,`content_loc6`,`content_loc7`,`content_loc8`) VALUES +(1149,'Group type: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL), +(1150,'Name: %s (%s), GUID: %u, Flags: %s, Roles: %s',NULL,NULL,NULL,NULL,NULL,NULL,NULL,NULL); + +DELETE FROM `command` WHERE `name`='group list'; +INSERT INTO `command` (`name`,`security`,`help`) VALUES +('group list',3,'Syntax: .group list [$CharacterName] \r\nLists all the members of the group/party the player is in.'); |
