From b2a2ea0534d321c9027469fbe6b985dc84343399 Mon Sep 17 00:00:00 2001 From: Walter Pagani Date: Tue, 5 Jan 2021 15:53:36 -0300 Subject: chore(wiki): HTML -> Markdown (#328) --- docs/creature_summon_groups.md | 244 +++++++---------------------------------- 1 file changed, 38 insertions(+), 206 deletions(-) (limited to 'docs/creature_summon_groups.md') diff --git a/docs/creature_summon_groups.md b/docs/creature_summon_groups.md index b7cffb6..84432ae 100644 --- a/docs/creature_summon_groups.md +++ b/docs/creature_summon_groups.md @@ -8,130 +8,29 @@ This table holds data about temporary summoned creatures. It is possible to grou ## Structure - ---------- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Field

Type

Attributes

Key

Null

Default

Extra

Comment

summonerId

mediumint(8)

unsigned

 

NO

0

 

 

summonerType

tinyint(3)

unsigned

 

NO

0

 

 

groupIdtinyint(3)unsigned NO0  
entrymediumint(8)unsigned NO0  

position_x

float

 

 

NO

0

 

 

position_y

float

 

 

NO

0

 

 

position_z

float

 

 

NO

0

 

 

orientation

float

 

 

NO

0

 

 

summonTypetinyint(3)unsigned NO0  
summonTimeint(10)unsigned NO0  
+| Field | Type | Attributes | Key | Null | Default | Extra | Comment | +|-------------------|--------------|------------|-----|------|---------|-------|---------| +| [summonerId][1] | mediumint(8) | unsigned | | NO | 0 | | | +| [summonerType][2] | tinyint(3) | unsigned | | NO | 0 | | | +| [groupId][3] | tinyint(3) | unsigned | | NO | 0 | | | +| [entry][4] | mediumint(8) | unsigned | | NO | 0 | | | +| [position_x][5] | float | | | NO | 0 | | | +| [position_y][6] | float | | | NO | 0 | | | +| [position_z][7] | float | | | NO | 0 | | | +| [orientation][8] | float | | | NO | 0 | | | +| [summonType][9] | tinyint(3) | unsigned | | NO | 0 | | | +| [summonTime][10] | int(10) | unsigned | | NO | 0 | | | + +[1]: #summonerid +[2]: #summonertype +[3]: #groupid +[4]: #entry +[5]: #position_x +[6]: #position_y +[7]: #position_z +[8]: #orientation +[9]: #summontype +[10]: #summontime ## **Description of the fields** @@ -143,32 +42,11 @@ Summoner's id depending on [summonerType](#creature_summon_groups-summonerType) Summoner's type: - ---- - - - - - - - - - - - - - - - - - - - - -

Value

Type

0

SUMMONER_TYPE_CREATURE

1

SUMMONER_TYPE_GAMEOBJECT

2

SUMMONER_TYPE_MAP

+| Value | Type | +|-------|--------------------------| +| 0 | SUMMONER_TYPE_CREATURE | +| 1 | SUMMONER_TYPE_GAMEOBJECT | +| 2 | SUMMONER_TYPE_MAP | ### groupId @@ -196,62 +74,16 @@ Orientation the summoned creature will get when spawned ### summonType - ----- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -

Value

Name

Comments

1

TEMPSUMMON_TIMED_OR_DEAD_DESPAWN

Despawns after a specified time OR when the creature disappears

2

TEMPSUMMON_TIMED_OR_CORPSE_DESPAWN

Despawns after a specified time OR when the creature dies

3

TEMPSUMMON_TIMED_DESPAWN

Despawns after a specified time

4

TEMPSUMMON_TIMED_DESPAWN_OUT_OF_COMBAT

Despawns after a specified time after the creature is out of combat

5

TEMPSUMMON_CORPSE_DESPAWN

Despawns instantly after death

6

TEMPSUMMON_CORPSE_TIMED_DESPAWN

Despawns after a specified time after death

7

TEMPSUMMON_DEAD_DESPAWN

Despawns when the creature disappears

8

TEMPSUMMON_MANUAL_DESPAWN

Despawns when UnSummon() is called

+| Value | Name | Comments | +|-------|----------------------------------------|---------------------------------------------------------------------| +| 1 | TEMPSUMMON_TIMED_OR_DEAD_DESPAWN | Despawns after a specified time OR when the creature disappears | +| 2 | TEMPSUMMON_TIMED_OR_CORPSE_DESPAWN | Despawns after a specified time OR when the creature dies | +| 3 | TEMPSUMMON_TIMED_DESPAWN | Despawns after a specified time | +| 4 | TEMPSUMMON_TIMED_DESPAWN_OUT_OF_COMBAT | Despawns after a specified time after the creature is out of combat | +| 5 | TEMPSUMMON_CORPSE_DESPAWN | Despawns instantly after death | +| 6 | TEMPSUMMON_CORPSE_TIMED_DESPAWN | Despawns after a specified time after death | +| 7 | TEMPSUMMON_DEAD_DESPAWN | Despawns when the creature disappears | +| 8 | TEMPSUMMON_MANUAL_DESPAWN | Despawns when UnSummon() is called | ### summonTime -- cgit