модуль группового квестинга

This commit is contained in:
2026-03-14 23:31:49 +04:00
parent c53d6b30d4
commit 15c4cbf085
18 changed files with 1096 additions and 0 deletions
@@ -0,0 +1,72 @@
name: Bug report
description: Create a bug report to help us improve.
title: "Bug: "
body:
- type: textarea
id: current
attributes:
label: Current Behaviour
description: |
Description of the problem or issue here.
Include entries of affected creatures / items / quests / spells etc.
If this is a crash, post the crashlog (upload to https://gist.github.com/) and include the link here.
Never upload files! Use GIST for text and YouTube for videos!
validations:
required: true
- type: textarea
id: expected
attributes:
label: Expected Behaviour
description: |
Tell us what should happen instead.
validations:
required: true
- type: textarea
id: reproduce
attributes:
label: Steps to reproduce the problem
description: |
What does someone else need to do to encounter the same bug?
placeholder: |
1. Step 1
2. Step 2
3. Step 3
validations:
required: true
- type: textarea
id: extra
attributes:
label: Extra Notes
description: |
Do you have any extra notes that can help solve the issue that does not fit any other field?
placeholder: |
None
validations:
required: false
- type: textarea
id: commit
attributes:
label: AC rev. hash/commit
description: |
Copy the result of the `.server debug` command (if you need to run it from the client get a prat addon)
validations:
required: true
- type: input
id: os
attributes:
label: Operating system
description: |
The Operating System the Server is running on.
i.e. Windows 11 x64, Debian 10 x64, macOS 12, Ubuntu 20.04
validations:
required: true
- type: textarea
id: custom
attributes:
label: Custom changes or Modules
description: |
List which custom changes or modules you have applied, i.e. Eluna module, etc.
placeholder: |
None
validations:
required: false
@@ -0,0 +1,33 @@
name: Feature request
description: Suggest an idea for this project
title: "Feature: "
body:
- type: markdown
attributes:
value: |
Thank you for taking your time to fill out a feature request. Remember to fill out all fields including the title above.
An issue that is not properly filled out will be closed.
- type: textarea
id: description
attributes:
label: Describe your feature request or suggestion in detail
description: |
A clear and concise description of what you want to happen.
validations:
required: true
- type: textarea
id: solution
attributes:
label: Describe a possible solution to your feature or suggestion in detail
description: |
A clear and concise description of any alternative solutions or features you've considered.
validations:
required: false
- type: textarea
id: additional
attributes:
label: Additional context
description: |
Add any other context or screenshots about the feature request here.
validations:
required: false
+65
View File
@@ -0,0 +1,65 @@
# ![logo](https://raw.githubusercontent.com/azerothcore/azerothcore.github.io/master/images/logo-github.png) AzerothCore
## Quest Loot Party Module
[Español](#español) | [English](#english)
[![Build Status](https://github.com/pangolp/mod-quest-loot-party/actions/workflows/core-build.yml/badge.svg?branch=master)](https://github.com/pangolp/mod-quest-loot-party/actions)
---
## Español
- Para que este modulo funcione, se requiere de la aprobación del siguiente pull request.
- Hasta que el mismo no se encuentre en el emulador, no puede funcionar.
- https://github.com/azerothcore/azerothcore-wotlk/pull/16509
Este módulo para **AzerothCore** permite que los objetos de misión (Quest Items) caigan para todos los miembros del grupo que tengan la misión activa, facilitando la progresión en grupo y evitando la necesidad de matar al mismo jefe o criatura múltiples veces.
### Características
* **Botín Grupal:** Cuando un jugador despoja un objeto de misión, todos los miembros del grupo elegibles reciben el objeto.
* **Mensajes Configurables:** Notifica a los jugadores cuando el botín se reparte.
* **Configuración Sencilla:** Control total desde el archivo `.conf`.
### Instalación
1. Copia el contenido de este repositorio en la carpeta `modules/` de tu código fuente de AzerothCore.
2. Vuelve a ejecutar CMake.
3. Compila el servidor.
4. Copia el archivo `QuestParty.conf.dist` a tu carpeta de binarios (donde está el `worldserver.exe`), renombrándolo a `QuestParty.conf`.
### Configuración
En el archivo `QuestParty.conf` puedes ajustar:
* `QuestParty.Enable`: Activa (1) o desactiva (0) el módulo.
* `QuestParty.Message`: Activa (1) o desactiva (0) los mensajes informativos en el chat del juego.
---
## English
- For this module to work, approval of the following pull request is required.
- Until it is found in the emulator, it cannot work.
- https://github.com/azerothcore/azerothcore-wotlk/pull/16509
This module for **AzerothCore** enables quest items to drop for all party members who have the quest active, streamlining group progression and removing the need to kill the same boss or creature multiple times.
### Features
* **Group Looting:** When one player loots a quest item, all eligible party members receive the item.
* **Configurable Messages:** Notifies players when the loot is distributed.
* **Easy Setup:** Full control via the `.conf` file.
### Installation
1. Copy the contents of this repository into the `modules/` folder of your AzerothCore source code.
2. Rerun CMake.
3. Recompile your server.
4. Copy the `QuestParty.conf.dist` file to your binaries folder (where `worldserver.exe` is located) and rename it to `QuestParty.conf`.
### Configuration
Within the `QuestParty.conf` file, you can adjust:
* `QuestParty.Enable`: Enable (1) or Disable (0) the module.
* `QuestParty.Message`: Enable (1) or Disable (0) in-game chat notifications.
---
## Créditos / Credits
* **Autor:** [pangolp](https://github.com/pangolp)
* **Plataforma:** [AzerothCore](https://github.com/azerothcore/azerothcore-wotlk)
@@ -0,0 +1,12 @@
name: core-build
on:
push:
branches:
- 'master'
pull_request:
jobs:
build:
uses: azerothcore/reusable-workflows/.github/workflows/core_build_modules.yml@main
with:
module_repo: ${{ github.event.repository.name }}