diff options
| author | Voicot Kaczynski <88860233+febaut@users.noreply.github.com> | 2022-01-07 16:24:33 -0500 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2022-01-07 22:24:33 +0100 |
| commit | d479d9b5f8669738f4bfe1c72f5384ea7f2a2f28 (patch) | |
| tree | 2790bb281396968d65b17dde952cb8bb1ed1b531 /docs/es/account_tutorial.md | |
| parent | 916b760d6e2ddcc266d803300fce064ba66c952f (diff) | |
| download | wiki-d479d9b5f8669738f4bfe1c72f5384ea7f2a2f28.tar.gz wiki-d479d9b5f8669738f4bfe1c72f5384ea7f2a2f28.tar.bz2 wiki-d479d9b5f8669738f4bfe1c72f5384ea7f2a2f28.zip | |
chore: translations into Spanish. (#668)
Diffstat (limited to 'docs/es/account_tutorial.md')
| -rw-r--r-- | docs/es/account_tutorial.md | 78 |
1 files changed, 78 insertions, 0 deletions
diff --git a/docs/es/account_tutorial.md b/docs/es/account_tutorial.md new file mode 100644 index 0000000..e7818bb --- /dev/null +++ b/docs/es/account_tutorial.md @@ -0,0 +1,78 @@ +# account\_tutorial + +[<-Volver a: Characters](database-characters.md) + +**La tabla \`account\_tutorial\`** + +Esta tabla es usada para almacenar el estado de los tutoriales de todas las cuentas. + +**Estructura** + +| Field | Type | Attributes | Key | Null | Default | Extra | Comment | +| -------------- | ---- | ---------- | --- | ---- | ------- | ------ | ------------------ | +| [accountId][1] | INT | UNSIGNED | PRI | NO | 0 | Unique | Account Identifier | +| [tut0][2] | INT | UNSIGNED | | NO | 0 | | | +| [tut1][3] | INT | UNSIGNED | | NO | 0 | | | +| [tut2][4] | INT | UNSIGNED | | NO | 0 | | | +| [tut3][5] | INT | UNSIGNED | | NO | 0 | | | +| [tut4][6] | INT | UNSIGNED | | NO | 0 | | | +| [tut5][7] | INT | UNSIGNED | | NO | 0 | | | +| [tut6][8] | INT | UNSIGNED | | NO | 0 | | | +| [tut7][9] | INT | UNSIGNED | | NO | 0 | | | + +[1]: #accountid +[2]: #tut0 +[3]: #tut1 +[4]: #tut2 +[5]: #tut3 +[6]: #tut4 +[7]: #tut5 +[8]: #tut6 +[9]: #tut7 + +**Descripción de los campos** + +### guid + +Cuenta del jugador. Véase [account.id](account#id). + +### tut0 + +`field-no-description|2` + +### tut1 + +`field-no-description|3` + +### tut2 + +`field-no-description|4` + +### tut3 + +`field-no-description|5` + +### tut4 + +`field-no-description|6` + +### tut5 + +`field-no-description|7` + +### tut6 + +`field-no-description|8` + +### tut7 + +Sin valores de 32bits flags. Entonces, 8 x valores de 32bits da como resultado 256 bits disponibles para almacenar 256 mensajes de estado de los tutoriales. + +Cada bit significa: + +- 0 - Sin mostrar aún +- 1 - Mostrado + +Esto es usado para mostrar solo tutoriales que el personaje no ha visto ya. + +Desmarcar la opción "Mostrar tutoriales" dentro del juego hace que todos los bits se conviertan en Mostrado. Así, todas las columnas van a contener 11111111111111111111111111111111 binario = 4294967295 en decimal después de que esta opción haya sido cambiada. |
