feat(Scripts/Commands): Implement character changeaccount command (#13532)

* feat(Scripts/Commands): Implement character changeaccount command

* strings and stuff

* clear unused
This commit is contained in:
Skjalf
2022-10-24 22:43:46 -03:00
committed by GitHub
parent e55d7cb951
commit 192bf4736b
3 changed files with 60 additions and 0 deletions

View File

@@ -0,0 +1,8 @@
--
DELETE FROM `acore_string` WHERE `entry` = 5083;
INSERT INTO `acore_string` (`entry`, `content_default`) VALUES
(5083, 'Character %s (%u) moved from account %s (%u) to account %s (%u).');
DELETE FROM `command` WHERE `name` = 'character changeaccount';
INSERT INTO `command` (`name`, `security`, `help`) VALUES
('character changeaccount', 3, 'Syntax: .character changeaccount $NewAccountName $Name.\nMoves the specified character to the provided account. \nKicks the player if the character is online.');