https://github.com/azerothcore/mod-starter-guild
This module automatically joins new players to a guild of your choice on first login.
https://github.com/azerothcore/mod-starter-guild
azerothcore-module core-module
Last synced: 10 days ago
JSON representation
This module automatically joins new players to a guild of your choice on first login.
- Host: GitHub
- URL: https://github.com/azerothcore/mod-starter-guild
- Owner: azerothcore
- License: agpl-3.0
- Created: 2018-03-05T17:06:34.000Z (about 7 years ago)
- Default Branch: master
- Last Pushed: 2025-03-02T12:59:33.000Z (about 2 months ago)
- Last Synced: 2025-04-13T02:24:41.038Z (16 days ago)
- Topics: azerothcore-module, core-module
- Language: C++
- Homepage:
- Size: 46.9 KB
- Stars: 10
- Watchers: 10
- Forks: 20
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.md
Awesome Lists containing this project
README
#  AzerothCore
## Starter Guild
- Latest build status with azerothcore:
[](https://github.com/azerothcore/mod-starter-guild)
## Description
This module automatically assigns new characters to a specific guild depending on the faction.
## Usage
- Create a new guild ingame for each faction with `.guild create` or directly into the database.
- Edit the configuration file.
- Create a new character and open the guild tab.
- Keep in mind that the limit of players is 1000 per guild.## SQL example to create the guild
- Check that the ids do not exist, and in this case, the owner will be the first creating player, generally the administrator.
```sql
DELETE FROM `guild` WHERE `guildid` IN (1, 2);
INSERT INTO `guild` (`guildid`, `name`, `leaderguid`, `motd`) VALUES
(1, "Horde Starting Guild", 1, "Lok'Tar Ogar!"),
(2, "Alliance Starting Guild", 1, "Fight together, for the alliance");
```## Credits
* [stygiancore]( http://stygianthebest.github.io ): (Author of the module).
* [SoulSeekkor]( https://github.com/SoulSeekkor ) cleaned up deprecation warnings and fixed naming.* AzerothCore: [repository](https://github.com/azerothcore) - [website](http://azerothcore.org/) - [discord chat community](https://discord.gg/PaqQRkd)
## License
- This code and content is released under the [GNU AGPL v3](https://github.com/azerothcore/azerothcore-wotlk/blob/master/LICENSE-AGPL3).