Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
https://github.com/azerothcore/mod-transmog
Plug&Play transmog module for AzerothCore, based on Rochet2 works
https://github.com/azerothcore/mod-transmog
acore-rev-1-x acore-rev-2-x azerothcore azerothcore-module hacktoberfest
Last synced: 2 days ago
JSON representation
Plug&Play transmog module for AzerothCore, based on Rochet2 works
- Host: GitHub
- URL: https://github.com/azerothcore/mod-transmog
- Owner: azerothcore
- License: agpl-3.0
- Created: 2016-11-17T09:24:30.000Z (about 8 years ago)
- Default Branch: master
- Last Pushed: 2024-09-11T14:22:25.000Z (4 months ago)
- Last Synced: 2024-10-29T15:12:26.191Z (2 months ago)
- Topics: acore-rev-1-x, acore-rev-2-x, azerothcore, azerothcore-module, hacktoberfest
- Language: C++
- Homepage: https://github.com/azerothcore/mod-transmog/blob/master/README.md
- Size: 361 KB
- Stars: 119
- Watchers: 18
- Forks: 143
- Open Issues: 17
-
Metadata Files:
- Readme: README.md
- License: LICENSE
Awesome Lists containing this project
README
# Transmog Module
- Latest Transmog build status with azerothcore: [![Build Status](https://github.com/azerothcore/mod-transmog/workflows/core-build/badge.svg?branch=master&event=push)](https://github.com/azerothcore/mod-transmog)
This is a module for [AzerothCore](http://www.azerothcore.org) that adds transmog feature, it's based on [Rochet2 Transmog Script](http://rochet2.github.io/Transmogrification.html)
## Important notes
You have to use at least this AzerothCore commit:
If using this module with an AzerothCore commit older than
please delete the IDs 50000 and 50001 from npc_text before upgrading AzerothCore:
```sql
DELETE FROM `npc_text` WHERE `ID` IN (50000,50001);
```
Otherwise there will be conflicts for these IDs. The module will now use IDs 601083 and 601084 as default.## Requirements
Transmogrification module currently requires:
AzerothCore v1.0.2+
## How to install
### 1) Simply place the module under the `modules` folder of your AzerothCore source folder.
You can do clone it via git under the azerothcore/modules directory:
```sh
cd path/to/azerothcore/modules
git clone https://github.com/azerothcore/mod-transmog.git
```or you can manually [download the module](https://github.com/azerothcore/mod-transmog/archive/master.zip), unzip the Transmog folder and place it under the `azerothcore/modules` directory.
### 2) Import the SQL to the right Database (auth, world or characters)
Import the SQL manually to the right Database (auth, world or characters) or with the `db_assembler.sh` (if `include.sh` provided).
### 3) Re-run cmake and launch a clean build of AzerothCore
### 4) Place transmog npc
With a gm account goto the location you want to add the npc and use this command:
```
.npc add 190010
```**That's it.**
### (Optional) Edit module configuration
If you need to change the module configuration, go to your server configuration folder (e.g. **etc**), copy `transmog.conf.dist` to `transmog.conf` and edit it as you prefer.
## License
This module is released under the [GNU AGPL license](https://github.com/azerothcore/mod-transmog/blob/master/LICENSE).