From a35d4f08a3f9f086eae94dccbfda2ff0c8eb5ae3 Mon Sep 17 00:00:00 2001 From: FrancescoBorzi Date: Mon, 25 Feb 2019 19:24:20 +0100 Subject: Import DB wiki from TC 335 --- docs/linked_respawn.md | 119 ++++++++++++++++++++++++++++++++++++++++++++++--- 1 file changed, 113 insertions(+), 6 deletions(-) (limited to 'docs/linked_respawn.md') diff --git a/docs/linked_respawn.md b/docs/linked_respawn.md index 385abcd..ca0ffbd 100644 --- a/docs/linked_respawn.md +++ b/docs/linked_respawn.md @@ -1,7 +1,114 @@ -[Database Structure](Database-Structure) > [World-Database](World-Database) > [linked_respawn](linked_respawn) +# linked\_respawn + +`Back-to:World` + +**The \`linked\_respawn\` table** + +This table links trash mobs to bosses so that if you kill the boss, the trash do not respawn before the instance is reset. +Gameobjects can be linked too! + +**Structure** + + ++++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Field

Type

Attributes

Key

Null

Default

Extra

Comment

guid

int(10)

unsigned

PRI

NO

 

 

Dependent Creature

linkedGuid

int(10)

unsigned

 

NO

 

 

Master Creature

linkType

tinyint(3)

unsigned

 

NO

0

 

 

+ +**Description of the fields** + +### guid + +This is the guid of the [creature](creature_2130009.html#creature-guid) or [gameobject](gameobject_2130146.html#gameobject-guid) you want to link. + +### linkedGuid + +This is the guid of the [creature](creature_2130009.html#creature-guid) or [gameobject](gameobject_2130146.html#gameobject-guid) (boss most likely) that you want to link to. + +### linkedType + + +++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Value

Dependent

Master

0

creature

creature

1

creature

gameobject

2

gameobject

gameobject

3

gameobject

creature

+ -Column | Type | Description ---- | --- | --- -Guid | int(10) unsigned | -LinkedGuid | int(10) unsigned | -LinkType | tinyint(3) unsigned | -- cgit