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/pool_template.md | 84 +++++++++++++++++++++++++++++++++++++++++++++++---- 1 file changed, 78 insertions(+), 6 deletions(-) (limited to 'docs/pool_template.md') diff --git a/docs/pool_template.md b/docs/pool_template.md index 7ce1525..695f8b7 100644 --- a/docs/pool_template.md +++ b/docs/pool_template.md @@ -1,7 +1,79 @@ -[Database Structure](Database-Structure) > [World-Database](World-Database) > [pool_template](pool_template) +# pool\_template -Column | Type | Description ---- | --- | --- -Entry | mediumint(8) unsigned | -Max_limit | int(10) unsigned | -Description | varchar(255) | +`Back-to:World` + +**The \`pool\_template\` table** + +Each unique pool is defined in this table. + +**Structure** + + ++++++++++ + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +

Field

Type

Attributes

Key

Null

Default

Extra

Comment

entry

mediumint(8)

unsigned

PRI

NO

0

 

Pool entry

max_limit

int(10)

unsigned

 

NO

0

 

Max number of objects (0) is no limit

description

varchar(255)

signed

 

YES

NULL

 

 

+ +**Description of the fields** + +### entry + +The pool ID. This is an arbitrary number that is only used to link the gameobjects, creatures or quests in this pool. + +### max\_limit + +This is the maximum number of objects that should be spawned in this pool. +0 is no limit. + +### description + +Field describes the basic information about what the pool refers to. Example: Snarlflare (14272) -- cgit