diff options
Diffstat (limited to 'docs/account_instance_times.md')
| -rw-r--r-- | docs/account_instance_times.md | 83 |
1 files changed, 77 insertions, 6 deletions
diff --git a/docs/account_instance_times.md b/docs/account_instance_times.md index 1c8f60e..f049a18 100644 --- a/docs/account_instance_times.md +++ b/docs/account_instance_times.md @@ -1,7 +1,78 @@ -[Database Structure](Database-Structure) > [Character-Database](Character-Database) > [account_instance_times](account_instance_times) +# account\_instance\_times -Column | Type | Description ---- | --- | --- -AccountId | int(10) unsigned | -InstanceId | int(10) unsigned | -ReleaseTime | bigint(20) unsigned | +`Back-to:Characters` + +**The \`account\_instance\_times\` table** + +This table controls how many instances the account's characters have been in last 1 hour. If there is 5 records per account, the player won't be able to enter another instance. + +**Structure** + +<table> +<colgroup> +<col width="12%" /> +<col width="12%" /> +<col width="12%" /> +<col width="12%" /> +<col width="12%" /> +<col width="12%" /> +<col width="12%" /> +<col width="12%" /> +</colgroup> +<tbody> +<tr class="odd"> +<td><p><strong>Field</strong></p></td> +<td><p><strong>Type</strong></p></td> +<td><p><strong>Attributes</strong></p></td> +<td><p><strong>Key</strong></p></td> +<td><p><strong>Null</strong></p></td> +<td><p><strong>Default</strong></p></td> +<td><p><strong>Extra</strong></p></td> +<td><p><strong>Comment</strong></p></td> +</tr> +<tr class="even"> +<td><p><a href="#account_instance_times-accountId">accountId</a></p></td> +<td><p>int(10)</p></td> +<td><p>unsigned</p></td> +<td><p>PRI</p></td> +<td><p>NO</p></td> +<td><p> </p></td> +<td><p> </p></td> +<td><p> </p></td> +</tr> +<tr class="odd"> +<td><p><a href="#account_instance_times-instanceId">instanceId</a></p></td> +<td><p>int(10)</p></td> +<td><p>unsigned</p></td> +<td><p>PRI</p></td> +<td><p>NO</p></td> +<td><p>0</p></td> +<td><p> </p></td> +<td><p> </p></td> +</tr> +<tr class="even"> +<td><p><a href="#account_instance_times-releaseTime">releaseTime</a></p></td> +<td><p>bigint(20)</p></td> +<td><p>unsigned</p></td> +<td><p> </p></td> +<td><p>NO</p></td> +<td><p>0</p></td> +<td><p> </p></td> +<td><p> </p></td> +</tr> +</tbody> +</table> + +**Description of the fields** + +### accountId + +Account of the player. See [account.id](account_2130004.html#account-id). + +### instanceId + +This is the instance.id which characters of this account has been past 5 hours. + +### releaseTime + +The time when the instances should be allowed again measured in Unix time. |
