diff --git a/en/coding/conditions.html b/en/coding/conditions.html index 1f1c268..62b5fb5 100644 --- a/en/coding/conditions.html +++ b/en/coding/conditions.html @@ -22,32 +22,11 @@ \ `N` means the total number of conditions within the IF statement and the way the evaluation of conditions happens. - - - - - - - - - - - - - - - - - - - - - - - - - -
NNumber of ConditionsLogical Operator
01the IF statement is true if the condition is true
1..72..8AND (all conditions must be true for the IF statement to be true)
21..272..8OR (at least one of the conditions must be true for the IF statement to be true)
+|N|Number of Conditions|Logical Operator| +|-| +|0|1|the IF statement is true if the condition is true| +|1..7|2..8|`AND` (all conditions must be true for the IF statement to be true)| +|21..27|2..8|`OR` (at least one of the conditions must be true for the IF statement to be true)| {% hint style="info" %} A single IF statement can contain up to 8 conditions. diff --git a/en/coding/hex..end.html b/en/coding/hex..end.html index f6c5d14..13c323b 100644 --- a/en/coding/hex..end.html +++ b/en/coding/hex..end.html @@ -54,52 +54,15 @@ The following escape sequences are supported within a string literal: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameEscape SequenceByte Form
Null\000
Backspace\b08
Tab\t09
Line Feed\n0A
Carriage Return\r0D
Numeric escape sequence\xnnnn
Escape char\charchar
+|Name|Escape Sequence|Byte Form| +|-| +|Null|\0|00| +|Backspace|\b|08| +|Tab|\t|09| +|Line Feed|\n|0A| +|Carriage Return|\r|0D| +|Numeric escape sequence|\x`nn`|`nn`| +|Escape char|\`char`|`char`| ```sb3 hex diff --git a/en/edit-modes/README.html b/en/edit-modes/README.html index a3aeee3..c8b326b 100644 --- a/en/edit-modes/README.html +++ b/en/edit-modes/README.html @@ -181,78 +181,18 @@ Sanny Builder offers many different modes and their number may vary from version to version: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TitleNaming schemaParameters orderGame
GTA IIIcommunitycustomall versions of GTA III
GTA VCcommunitycustomall versions of Vice City
GTA SA v1.0communitycustomSA v1.0
GTA SA v2.0communitycustomSA v2.0
GTA SA (v1.0 - SCR)RockstaroriginalSA v1.0
GTA LCSRockstaroriginalall versions of Liberty City Stories
GTA VCS (PSP)RockstaroriginalVCS for PSP
GTA VCS (PS2)RockstaroriginalVCS for PS2
VC MobilecommunitycustomVC Android and iOS versions
SA MobilecommunitycustomSA Android and iOS versions
+|Title|Naming schema|Parameters order|Game| +|-| +|GTA III|community|custom|all versions of GTA III| +|GTA VC|community|custom|all versions of Vice City| +|GTA SA v1.0|community|custom|SA v1.0| +|GTA SA v2.0|community|custom|SA v2.0| +|GTA SA (v1.0 - SCR)|Rockstar|original|SA v1.0| +|GTA LCS|Rockstar|original|all versions of Liberty City Stories| +|GTA VCS (PSP)|Rockstar|original|VCS for PSP| +|GTA VCS (PS2)|Rockstar|original|VCS for PS2| +|VC Mobile|community|custom|VC Android and iOS versions| +|SA Mobile|community|custom|SA Android and iOS versions| The naming schema defines the way of describing the opcodes. The _community_ schema has the names randomly guessed over the years, such as `actor` or `thread`. The _Rockstar_ schema has the original taxonomy used by the game developers (e.g. `char` or `script`) that is consistent with the game's inner structures. diff --git a/en/edit-modes/enums.txt.html b/en/edit-modes/enums.txt.html index cbc7747..581483e 100644 --- a/en/edit-modes/enums.txt.html +++ b/en/edit-modes/enums.txt.html @@ -49,9 +49,9 @@ It is possible to define many enumerated types in one file. Each enum must have an unique name. -
+:::warning No comments or any extra syntax are allowed in the enums file. -
+::: ### Enum fields @@ -118,7 +118,7 @@ `Month.Feb` = `"February`, \ `Month.March` = `"March"` -
+:::warning An enum can't have a mix of both integer and string values. The first explicit value takes control of what type of values this enum gets: ``` @@ -130,6 +130,6 @@ X, Y = "Y" // X = "X", Y = "Y" end ``` -
+::: \ No newline at end of file diff --git a/en/edit-modes/extensions.html b/en/edit-modes/extensions.html index a84ed0c..7c62f77 100644 --- a/en/edit-modes/extensions.html +++ b/en/edit-modes/extensions.html @@ -35,63 +35,17 @@ Sanny Builder ships some common and recognized extensions for different edit modes: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Extension NameSourceEdit Modes where available
**CLEO** `{$USE CLEO}`CLEO for GTA III
CLEO for Vice City CLEO 4.4 CLEO Android
GTA III Vice City GTA SA v1.0, v2.0, (v1.0 - SCR) SA Mobile VC Mobile
**ini** `{$USE ini}`IniFiles.cleo plugin
(ships with CLEO)
GTA III
Vice City GTA SA v1.0, v2.0, (v1.0 - SCR)
**file** `{$USE file}`FileSystemOperations plugin
(ships with CLEO)
GTA III
Vice City GTA SA v1.0, v2.0, (v1.0 - SCR)
**bitwise** `{$USE bitwise}`IntOperations plugin
(ships with CLEO4)
GTA III
Vice City GTA SA v1.0, v2.0, (v1.0 - SCR)
**clipboard** `{$USE clipboard}`ClipboardControl pluginGTA III
Vice City GTA SA v1.0, v2.0, (v1.0 - SCR)
**memory** `{$USE memory}`MemoryModule pluginGTA III
Vice City
**CLEO+** `{$USE CLEO+}`CLEO+ pluginGTA SA v1.0, v2.0, (v1.0 - SCR)
**newOpcodes** `{$USE newOpcodes}`newOpcodes pluginGTA SA v1.0, v2.0
**Restoration** `{$USE Restoration}`Opcode Restoration ProjectVice City
- +|Extension Name|Source|Edit Modes where available| +|-| +| **CLEO** `{$USE CLEO}`|CLEO for GTA III\nCLEO for Vice City CLEO 4.4 CLEO Android|GTA III Vice City GTA SA v1.0, v2.0, (v1.0 - SCR) SA Mobile VC Mobile| +| **ini** `{$USE ini}`|IniFiles.cleo plugin\n(ships with CLEO)|GTA III\nVice City GTA SA v1.0, v2.0, (v1.0 - SCR)| +| **file** `{$USE file}`|FileSystemOperations plugin\n(ships with CLEO)|GTA III\nVice City GTA SA v1.0, v2.0, (v1.0 - SCR)| +| **bitwise** `{$USE bitwise}`|IntOperations plugin\n(ships with CLEO4)|GTA III\nVice City GTA SA v1.0, v2.0, (v1.0 - SCR)| +| **clipboard** `{$USE clipboard}`|ClipboardControl plugin|GTA III\nVice City GTA SA v1.0, v2.0, (v1.0 - SCR)| +| **memory** `{$USE memory}`|MemoryModule plugin|GTA III\nVice City| +| **CLEO+** `{$USE CLEO+}`|CLEO+ plugin|GTA SA v1.0, v2.0, (v1.0 - SCR)| +| **newOpcodes** `{$USE newOpcodes}`|newOpcodes plugin|GTA SA v1.0, v2.0| +| **Restoration** `{$USE Restoration}`|Opcode Restoration Project|Vice City| Using opcodes from the third-party libraries not listed there is possible, the compiler will not require the `{$USE}` directive. diff --git a/en/edit-modes/opcodes-list-scm.ini.html b/en/edit-modes/opcodes-list-scm.ini.html index 5b99ccb..0ca6a8e 100644 --- a/en/edit-modes/opcodes-list-scm.ini.html +++ b/en/edit-modes/opcodes-list-scm.ini.html @@ -15,52 +15,15 @@ `SCM.INI` is the file containing information about opcodes used during disassembling and compiling script files. Sanny Builder ships a list of opcodes for each [edit mode](README.md#opcodes). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
GameFile NameLocation
GTA IIISCM.INIdata\gta3
Vice CityVCSCM.INIdata\vc
San AndreasSASCM.INIdata\sa
Liberty City StoriesLCSSCM.INIdata\lcs
Vice City StoriesVCSSCM.INIdata\vcs
VC MobileVCSCM.INIdata\vc_mobile
SA MobileSASCM.INIdata\sa_mobile
+|Game|File Name|Location| +|-| +|GTA III|SCM.INI|data\gta3| +|Vice City|VCSCM.INI|data\vc| +|San Andreas|SASCM.INI|data\sa| +|Liberty City Stories|LCSSCM.INI|data\lcs| +|Vice City Stories|VCSSCM.INI|data\vcs| +|VC Mobile|VCSCM.INI|data\vc_mobile| +|SA Mobile|SASCM.INI|data\sa_mobile| ## File Format diff --git a/en/editor/cli.html b/en/editor/cli.html index edcba73..1e39939 100644 --- a/en/editor/cli.html +++ b/en/editor/cli.html @@ -95,167 +95,38 @@ This list is not final and subject to change at any moment. {% endhint %} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NameAllowed ValuesOptions Tab
Editor::ShowPanel0, 1Editor
Editor::ShowOpcodeInfo0, 1Editor
Editor::ShowLineNumbers0, 1Editor
Editor::ShowGutterBorder0, 1Editor
Editor::OpenLastFile0, 1Editor
Editor::OpenAllClosedFiles0, 1Editor
Editor::ConfirmExit0, 1Editor
Editor::LanguageService0, 1Editor
Editor::SemanticConstHighlighting0, 1Editor
Editor::IdentifiersListAuto0, 1Editor
Editor::ScanDistance0..65535Editor
Editor::Langknown locale idGeneral
Editor::QuickGameLoading0, 1General
Editor::ShowProgress0, 1General
Editor::ShowReport0, 1General
Decompiler::OverwriteOutputFile0, 1General
Decompiler::ManualIMGOpening0, 1General
Decompiler::HexadimalOffsets0, 1Formats
Decompiler::LabelsFormat0, 1, 2Formats
Decompiler::AlwaysWriteOpcodes0, 1General
Decompiler::ReplaceMissionNumbers0, 1General
Decompiler::InsertOriginalMissionNames0, 1General
Compiler::ShowIMGWarning0, 1General
Compiler::CheckConditions0, 1General
Compiler::CheckLocalVariables0, 1General
Compiler::AddExtraInfo0, 1General
CustomNames::UseCustomLabels0, 1Formats
CustomNames::UseCustomVariables0, 1Formats
CustomNames::UseCustomArrays0, 1Formats
CustomNames::Format0, 1, 2Formats
+|Name|Allowed Values|Options Tab| +|-| +|Editor::ShowPanel|0, 1|Editor| +|Editor::ShowOpcodeInfo|0, 1|Editor| +|Editor::ShowLineNumbers|0, 1|Editor| +|Editor::ShowGutterBorder|0, 1|Editor| +|Editor::OpenLastFile|0, 1|Editor| +|Editor::OpenAllClosedFiles|0, 1|Editor| +|Editor::ConfirmExit|0, 1|Editor| +|Editor::LanguageService|0, 1|Editor| +|Editor::SemanticConstHighlighting|0, 1|Editor| +|Editor::IdentifiersListAuto|0, 1|Editor| +|Editor::ScanDistance|0..65535|Editor| +|Editor::Lang|known locale id|General| +|Editor::QuickGameLoading|0, 1|General| +|Editor::ShowProgress|0, 1|General| +|Editor::ShowReport|0, 1|General| +|Decompiler::OverwriteOutputFile|0, 1|General| +|Decompiler::ManualIMGOpening|0, 1|General| +|Decompiler::HexadimalOffsets|0, 1|Formats| +|Decompiler::LabelsFormat|0, 1, 2|Formats| +|Decompiler::AlwaysWriteOpcodes|0, 1|General| +|Decompiler::ReplaceMissionNumbers|0, 1|General| +|Decompiler::InsertOriginalMissionNames|0, 1|General| +|Compiler::ShowIMGWarning|0, 1|General| +|Compiler::CheckConditions|0, 1|General| +|Compiler::CheckLocalVariables|0, 1|General| +|Compiler::AddExtraInfo|0, 1|General| +|CustomNames::UseCustomLabels|0, 1|Formats| +|CustomNames::UseCustomVariables|0, 1|Formats| +|CustomNames::UseCustomArrays|0, 1|Formats| +|CustomNames::Format|0, 1, 2|Formats| {% hint style="info" %} Options set via CLI are not persistent and only applied to the current session. On the next launch Sanny Builder will use values stored in the `settings.ini`. diff --git a/en/editor/console.html b/en/editor/console.html index f1cff76..aafcff7 100644 --- a/en/editor/console.html +++ b/en/editor/console.html @@ -8,7 +8,6 @@ - The **console** offers an ability to switch debug options of Sanny Builder. Mostly they relate to the disassembler features and you can see the changes when disassemble a file. The console window is open after pressing `Ctrl+~`. You may enter the commands in the input line. After typing a command press `Enter` to proceed. The console will display a result. :::l @@ -51,28 +50,11 @@ E.g. given an array of three elements starting at `$10` this option affects the way the variables look like after disassembling: - - - - - - - - - - - - - - - - - - - - - -
Without CONSTANT_INDEXESWith CONSTANT_INDEXES
$10$10[0]
$11$10[1]
$12$10[2]
+|Without `CONSTANT_INDEXES`|With `CONSTANT_INDEXES`| +|-| +|$10|$10[0]| +|$11|$10[1]| +|$12|$10[2]| ### SKIP_SCM_HEADER @@ -92,40 +74,14 @@ The `--debug` [option](cli.md#debug) provides an alternate way of switching the debug options. Run Sanny with the parameter `--debug X`, where `X` is a series of `0` and `1`. Each digit in the series corresponds to a particular debug option: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IndexDebug Option
1CODE_OFFSETS
2IGNORE_UNKNOWN
3VAR_COUNTER
4CONSTANT_INDEXES
5SKIP_SCM_HEADER
6SKIP_EXTRA_INFO
+|Index|Debug Option| +|-| +|1|CODE_OFFSETS| +|2|IGNORE_UNKNOWN| +|3|VAR_COUNTER| +|4|CONSTANT_INDEXES| +|5|SKIP_SCM_HEADER| +|6|SKIP_EXTRA_INFO| ``` sanny.exe --debug 110000 diff --git a/en/editor/hotkeys.html b/en/editor/hotkeys.html index a09b465..fb13c05 100644 --- a/en/editor/hotkeys.html +++ b/en/editor/hotkeys.html @@ -8,195 +8,53 @@ - Sanny Builder supports many common shortcuts for the file and text operations (`Ctrl+N`, `Ctrl+Z`, etc) as well as some custom ones. Hotkeys marked with `*` are [customizable](options/hotkeys.md). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Key/ComboOperation
**Main Menu**
`F5` *open a file as a script and disassemble
`F6` *compile the editor content to a script file
`F7` *compile the editor content to a script file and copy it to the game's scripts directory
`F8` *run the game for the current [edit mode](../../edit-modes/README.md)
`F10`open the [options](options/README.md) window
`F12`open the documentation
**Text**
`TAB`, `Shift`+`TAB`indent the selected text to the left / right (tab)

`Ctrl`+`Alt`+`A`

`Ctrl`+`Alt`+`D`

indent the selected text to the left / right (by one character)

`Ctrl`+`Alt`+`B`

`Ctrl`+`Alt`+`N`

`Ctrl`+`Alt`+`M`

toggle different modes of the text selection: Normal, Columnar (same as selection with pressed `Alt`), Lines

`Ctrl`+`Shift`+`U`

`Ctrl`+`Shift`+`L`

convert the word to uppercase / lowercase
`Ctrl`+`+`increase the text size (zoom in)
`Ctrl`+`-`decrease the text size (zoom out)
`Ctrl`+`T`delete the word under the cursor
`Ctrl`+`Y`delete the line
`Ctrl`+`Shift`+`Y`clear the line
`Ctrl`+`Q` *[comment / uncomment](../coding/comments.md) the line
**Navigation**
`Ctrl`+`Shift`+`B`jump between brackets: `{}`, `()`, `<>`, `[]`
`Ctrl`+`Up/Down`scroll the page one line up / down
`Ctrl`+`Mouse Wheel Up/Down`page up / down
`Ctrl`+`Shift`+`0..9`toggle a bookmark on the line
`Ctrl`+`0..9`navigate to line with the bookmark
`Ctrl`+`G` *go to the line
`Alt`+`Right` *navigate to symbol under the cursor (a label, mission or function)
`Alt`+`Left` *navigate back to the previous position (where Navigate to Symbol was called)
`Ctrl`+`Enter`open a file which name is under the cursor (see also relative path priorities)
**Code**
`Ctrl`+`Space`show the list of classes / class members / models / labels / variables / missions
`Ctrl`+`Shift`+`Space`show the list of parameters for the current class command
`Ctrl`+`Shift`+`C` *insert the player's coordinates
`Ctrl`+`Shift`+`E` *insert the player's z_angle
`F1`find an opcode with the word under the cursor (with ignoring of `_` and `.`)
`Ctrl`+`F1`find an opcode with the word under the cursor (without ignoring of `_` and `.`)
`F2`use the word under the cursor to expand to the code template with the same name
`Ctrl`+`J`show the list of code templates
`Ctrl`+`M`start/stop recording of a macro (keystroke pressings sequence)
`Ctrl`+`P`replay macro/pause while processing
`Ctrl`+`H` *convert the number under the cursor from decimal to hexadecimal and vice versa
`Ctrl`+`Alt`+`H` *convert the model name under the cursor to its numeric ID and vice versa
**Misc**
`Ctrl`+`~`open console
`Alt`+`S`(when the list of models is active) re-sort the list
- +|Key/Combo|Operation| +|-| +|**Main Menu**|\s| +|`F5` *|open a file as a script and disassemble| +|`F6` *|compile the editor content to a script file| +|`F7` *|compile the editor content to a script file and copy it to the game's scripts directory| +|`F8` *|run the game for the current [edit mode](../../edit-modes/README.md)| +|`F10`|open the [options](options/README.md) window| +|`F12`|open the documentation| +|**Text**|\s| +|`TAB`, `Shift`+`TAB`|indent the selected text to the left / right (tab)| +|

`Ctrl`+`Alt`+`A`

`Ctrl`+`Alt`+`D`

|indent the selected text to the left / right (by one character)| +|

`Ctrl`+`Alt`+`B`

`Ctrl`+`Alt`+`N`

`Ctrl`+`Alt`+`M`

|toggle different modes of the text selection: Normal, Columnar (same as selection with pressed `Alt`), Lines| +|

`Ctrl`+`Shift`+`U`

`Ctrl`+`Shift`+`L`

|convert the word to uppercase / lowercase| +|`Ctrl`+`+`|increase the text size (zoom in)| +|`Ctrl`+`-`|decrease the text size (zoom out)| +|`Ctrl`+`T`|delete the word under the cursor| +|`Ctrl`+`Y`|delete the line| +|`Ctrl`+`Shift`+`Y`|clear the line| +|`Ctrl`+`Q` *|[comment / uncomment](../coding/comments.md) the line| +|**Navigation**|\s| +|`Ctrl`+`Shift`+`B`|jump between brackets: `{}`, `()`, `<>`, `[]`| +|`Ctrl`+`Up/Down`|scroll the page one line up / down| +|`Ctrl`+`Mouse Wheel Up/Down`|page up / down| +|`Ctrl`+`Shift`+`0..9`|toggle a bookmark on the line| +|`Ctrl`+`0..9`|navigate to line with the bookmark| +|`Ctrl`+`G` *|go to the line| +|`Alt`+`Right` *|navigate to symbol under the cursor (a label, mission or function)| +|`Alt`+`Left` *|navigate back to the previous position (where Navigate to Symbol was called)| +|`Ctrl`+`Enter`|open a file which name is under the cursor (see also relative path priorities)| +|**Code**|\s| +|`Ctrl`+`Space`|show the list of classes / class members / models / labels / variables / missions| +|`Ctrl`+`Shift`+`Space`|show the list of parameters for the current class command| +|`Ctrl`+`Shift`+`C` *|insert the player's coordinates| +|`Ctrl`+`Shift`+`E` *|insert the player's z_angle| +|`F1`|find an opcode with the word under the cursor (with ignoring of `_` and `.`)| +|`Ctrl`+`F1`|find an opcode with the word under the cursor (without ignoring of `_` and `.`)| +|`F2`|use the word under the cursor to expand to the code template with the same name| +|`Ctrl`+`J`|show the list of code templates| +|`Ctrl`+`M`|start/stop recording of a macro (keystroke pressings sequence)| +|`Ctrl`+`P`|replay macro/pause while processing| +|`Ctrl`+`H` *|convert the number under the cursor from decimal to hexadecimal and vice versa| +|`Ctrl`+`Alt`+`H` *|convert the model name under the cursor to its numeric ID and vice versa| +|**Misc**|\s| +|`Ctrl`+`~`|open console| +|`Alt`+`S`|(when the list of models is active) re-sort the list| \ No newline at end of file diff --git a/en/scm-documentation/ascii-character-codes.html b/en/scm-documentation/ascii-character-codes.html index b17e345..b01bab9 100644 --- a/en/scm-documentation/ascii-character-codes.html +++ b/en/scm-documentation/ascii-character-codes.html @@ -11,194 +11,176 @@ ```sb3 0AD3: 0@v = string_format "Example %c" <id> ``` - - - - - - - - -
Characterid
- +|Character|id| +|-| +|Tabulador Horizontal (HT)|9| +|Salto de Línea (LF)|10| +|Retorno de Carro (CR)|13| +|Espacio|32| +|!|33| +|"|34| +|#|35| +|$|36| +|%|37| +|&|38| +|'|39| +|(|40| +|)|41| +|*|42| +|+|43| +|,|44| +|\-|45| +|.|46| +|/|47| +|0|48| +|1|49| +|2|50| +|3|51| +|4|52| +|5|53| +|6|54| +|7|55| +|8|56| +|9|57| +|\:|58| +|;|59| +|<|60| +|=|61| +|>|62| +|?|63| +|@|64| +|A|65| +|B|66| +|C|67| +|D|68| +|E|69| +|F|70| +|G|71| +|H|72| +|I|73| +|J|74| +|K|75| +|L|76| +|M|77| +|N|78| +|O|79| +|P|80| +|Q|81| +|R|82| +|S|83| +|T|84| +|U|85| +|V|86| +|W|87| +|X|88| +|Y|89| +|Z|90| +|[|91| +|\\|92| +|]|93| +|^|94| +|_|95| +|`|96| +|{|123| +|\||124| +|}|125| +|~|126| +|\s|160| +|¡|161| +|¢|162| +|£|163| +|¤|164| +|¥|165| +|¦|166| +|§|167| +|¨|168| +|©|169| +|ª|170| +|«|171| +|¬|172| +|­|173| +|®|174| +|¯|175| +|°|176| +|±|177| +|²|178| +|³|179| +|´|180| +|µ|181| +|¶|182| +|·|183| +|¸|184| +|¹|185| +|º|186| +|»|187| +|¼|188| +|½|189| +|¾|190| +|¿|191| +|À|192| +|Á|193| +|Â|194| +|Ã|195| +|Ä|196| +|Å|197| +|Æ|198| +|Ç|199| +|È|200| +|É|201| +|Ê|202| +|Ë|203| +|Ì|204| +|Í|205| +|Î|206| +|Ï|207| +|Ð|208| +|Ñ|209| +|Ò|210| +|Ó|211| +|Ô|212| +|Õ|213| +|Ö|214| +|×|215| +|Ø|216| +|Ù|217| +|Ú|218| +|Û|219| +|Ü|220| +|Ý|221| +|Þ|222| +|ß|223| +|à|224| +|á|225| +|â|226| +|ã|227| +|ä|228| +|å|229| +|æ|230| +|ç|231| +|è|232| +|é|233| +|ê|234| +|ë|235| +|ì|236| +|í|237| +|î|238| +|ï|239| +|ð|240| +|ñ|241| +|ò|242| +|ó|243| +|ô|244| +|õ|245| +|ö|246| +|÷|247| +|ø|248| +|ù|249| +|ú|250| +|û|251| +|ü|252| +|ý|253| +|þ|254| +|ÿ|255| - \ No newline at end of file + \ No newline at end of file diff --git a/en/scm-documentation/gta-limits.html b/en/scm-documentation/gta-limits.html index c696183..9da204c 100644 --- a/en/scm-documentation/gta-limits.html +++ b/en/scm-documentation/gta-limits.html @@ -8,192 +8,27 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
GTA IIIVice CitySan AndreasSA MobileLCSVCS
**main size (in bytes)**131072225512200000200000
**mission size (in bytes)**32768350006900069000
**number of missions**120120200
**mission cleanup list**505075
**model names (2nd segment)**200220395
**running scripts**1281289696
**local variables**16+2 [timers](../coding/variables.md#timer-variables)16+2 [timers](../coding/variables.md#timer-variables)

32+2 [timers](../coding/variables.md#timer-variables)

1024 total in missions

40+2 [timers](../coding/variables.md#timer-variables)96+2 [timers](../coding/variables.md#timer-variables)
**gosub nesting levels**4688
**text draw**2489696
**jump table labels**N/AN/A75N/A
**external scripts**N/AN/A82N/A
**external script attachments**N/AN/A70N/A
**car generators**160185500
**radar blips**3275175250
**pickups**336336620620
**last opcode**048105a80a4e0a90
**spheres**161616
**car saving garage types**16..1816..18, 24..3216..18, 24..32, 39..4516..18, 24..32, 39..45
**garages**323250
+|\s|GTA III|Vice City|San Andreas|SA Mobile|LCS|VCS| +|-| +|**main size (in bytes)**|131072|225512|200000|200000|\s|\s| +|**mission size (in bytes)**|32768|35000|69000|69000|\s|\s| +|**number of missions**|120|120|200|\s|\s|\s| +|**mission cleanup list**|50|50|75|\s|\s|\s| +|**model names (2nd segment)**|200|220|395|\s|\s|\s| +|**running scripts**|128|128|96|96|\s|\s| +|**local variables**|16+2 [timers](../coding/variables.md#timer-variables)|16+2 [timers](../coding/variables.md#timer-variables)|

32+2 [timers](../coding/variables.md#timer-variables)

1024 total in missions

|40+2 [timers](../coding/variables.md#timer-variables)|96+2 [timers](../coding/variables.md#timer-variables)|\s| +|**gosub nesting levels**|4|6|8|8|\s|\s| +|**text draw**|2|48|96|96|\s|\s| +|**jump table labels**|N/A|N/A|75|\s|N/A|\s| +|**external scripts**|N/A|N/A|82|\s|N/A|\s| +|**external script attachments**|N/A|N/A|70|\s|N/A|\s| +|**car generators**|160|185|500|\s|\s|\s| +|**radar blips**|32|75|175|250|\s|\s| +|**pickups**|336|336|620|620|\s|\s| +|**last opcode**|0481|05a8|0a4e|0a90|\s|\s| +|**spheres**|16|16|16|\s|\s|\s| +|**car saving garage types**|16..18|16..18, 24..32|16..18, 24..32, 39..45|16..18, 24..32, 39..45|\s|\s| +|**garages**|32|32|50|\s|\s|\s| {% hint style="info" %} Originally posted by CyQ on [GTAForums.com](http://www.gtaforums.com/index.php?showtopic=213017\&view=findpost\&p=3145932) diff --git a/en/scm-documentation/gta3/pedtypes.html b/en/scm-documentation/gta3/pedtypes.html index 2c8505a..e9f816f 100644 --- a/en/scm-documentation/gta3/pedtypes.html +++ b/en/scm-documentation/gta3/pedtypes.html @@ -8,108 +8,33 @@ - ```sb3 009A: 0@ = create_actor <ID> 0 at 0 0 0 ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDType
0player1
1player2
2player3
3player4
4civmale
5civfemale
6cop
7gang1
8gang2
9gang3
10gang4
11gang5
12gang6
13gang7
14gang8
15gang9
16emergency
17fireman
18criminal
19unused
20prostitute
21special
+|ID|Type| +|-| +|0|player1| +|1|player2| +|2|player3| +|3|player4| +|4|civmale| +|5|civfemale| +|6|cop| +|7|gang1| +|8|gang2| +|9|gang3| +|10|gang4| +|11|gang5| +|12|gang6| +|13|gang7| +|14|gang8| +|15|gang9| +|16|emergency| +|17|fireman| +|18|criminal| +|19|*unused*| +|20|prostitute| +|21|special| \ No newline at end of file diff --git a/en/scm-documentation/gta3/radar-icons.html b/en/scm-documentation/gta3/radar-icons.html index 4128f1f..b0da329 100644 --- a/en/scm-documentation/gta3/radar-icons.html +++ b/en/scm-documentation/gta3/radar-icons.html @@ -8,126 +8,32 @@ - ```sb3 02A7: 0@ = create_icon_marker_and_sphere <ID> at 892.75 -425.75 13.875 ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDIconDescription
0![](../../../img/gta3/radar/dot.png)Small pink square, unused
1![](../../../img/gta3/radar/asuka.png)Asuka Kasen
2![](../../../img/gta3/radar/bomb.png)8-Ball's bomb shop
3![](../../../img/gta3/radar/catalina.png)Catalina
4![](../../../img/gta3/radar/centre.png)Player
5![](../../../img/gta3/radar/copcar.png)Cop car, unused
6![](../../../img/gta3/radar/don.png)Donald Love
7![](../../../img/gta3/radar/eight.png)8-Ball
8![](../../../img/gta3/radar/el.png)El Burro (Diablo)
9![](../../../img/gta3/radar/ice.png)D-Ice (Hood)
10![](../../../img/gta3/radar/joey.png)Joey Leone
11![](../../../img/gta3/radar/kenji.png)Kenji Kasen
12![](../../../img/gta3/radar/liz.png)King Courtney (Yardie)
13![](../../../img/gta3/radar/luigi.png)Luigi
14![](../../../img/gta3/radar/north.png)North
15![](../../../img/gta3/radar/ray.png)Ray Machowski
16![](../../../img/gta3/radar/sal.png)Salvatore Leone
17![](../../../img/gta3/radar/save.png)Safehouse
18![](../../../img/gta3/radar/spray.png)Pay 'n' Spray
19![](../../../img/gta3/radar/tony.png)Toni Cipriani
20![](../../../img/gta3/radar/weapon.png)Ammu-Nation
+|ID|Icon|Description| +|-| +|0|![](%gta3-r/dot.png)|Small pink square, unused| +|1|![](%gta3-r/asuka.png)|Asuka Kasen| +|2|![](%gta3-r/bomb.png)|8-Ball's bomb shop| +|3|![](%gta3-r/catalina.png)|Catalina| +|4|![](%gta3-r/centre.png)|Player| +|5|![](%gta3-r/copcar.png)|Cop car, unused| +|6|![](%gta3-r/don.png)|Donald Love| +|7|![](%gta3-r/eight.png)|8-Ball| +|8|![](%gta3-r/el.png)|El Burro (Diablo)| +|9|![](%gta3-r/ice.png)|D-Ice (Hood)| +|10|![](%gta3-r/joey.png)|Joey Leone| +|11|![](%gta3-r/kenji.png)|Kenji Kasen| +|12|![](%gta3-r/liz.png)|King Courtney (Yardie)| +|13|![](%gta3-r/luigi.png)|Luigi| +|14|![](%gta3-r/north.png)|North| +|15|![](%gta3-r/ray.png)|Ray Machowski| +|16|![](%gta3-r/sal.png)|Salvatore Leone| +|17|![](%gta3-r/save.png)|Safehouse| +|18|![](%gta3-r/spray.png)|Pay 'n' Spray| +|19|![](%gta3-r/tony.png)|Toni Cipriani| +|20|![](%gta3-r/weapon.png)|Ammu-Nation| \ No newline at end of file diff --git a/en/scm-documentation/lcs/clothes.html b/en/scm-documentation/lcs/clothes.html index af8c024..ae63b01 100644 --- a/en/scm-documentation/lcs/clothes.html +++ b/en/scm-documentation/lcs/clothes.html @@ -8,84 +8,27 @@ - ```sb3 0357: set_actor $PLAYER_ACTOR skin_to <ID> ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDName
PLRLeone's suit
PLR2Lawyer's suit
PLR3Casual clothes
PLR4Chauffeur's clothes
PLR5Overalls
PLR6Tuxedo
PLR7Avenging Angel's fatigues
PLR8'The King' jumpsuit
PLR9Cox Mascot suit
PLR10Underwear
PLR11Hero garb
PLR12'Dragon' jumpsuit
PLR13Antonio
PLR14Sweats
PLR15Wiseguy
PLR16Goodfella
+|ID|Name| +|-| +|PLR|Leone's suit| +|PLR2|Lawyer's suit| +|PLR3|Casual clothes| +|PLR4|Chauffeur's clothes| +|PLR5|Overalls| +|PLR6|Tuxedo| +|PLR7|Avenging Angel's fatigues| +|PLR8|'The King' jumpsuit| +|PLR9|Cox Mascot suit| +|PLR10|Underwear| +|PLR11|Hero garb| +|PLR12|'Dragon' jumpsuit| +|PLR13|Antonio| +|PLR14|Sweats| +|PLR15|Wiseguy| +|PLR16|Goodfella| \ No newline at end of file diff --git a/en/scm-documentation/lcs/gangs.html b/en/scm-documentation/lcs/gangs.html index e32f4d2..4128f1d 100644 --- a/en/scm-documentation/lcs/gangs.html +++ b/en/scm-documentation/lcs/gangs.html @@ -8,51 +8,16 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDName
0Leone
1Triad
2Diablo
3Yakuza
4Yardie
5Colombian
6Hood
7Forelli
8Sindacco
+|ID|Name| +|-| +|0|Leone| +|1|Triad| +|2|Diablo| +|3|Yakuza| +|4|Yardie| +|5|Colombian| +|6|Hood| +|7|Forelli| +|8|Sindacco| \ No newline at end of file diff --git a/en/scm-documentation/lcs/models.html b/en/scm-documentation/lcs/models.html index 49b1228..cb3fbfa 100644 --- a/en/scm-documentation/lcs/models.html +++ b/en/scm-documentation/lcs/models.html @@ -8,355 +8,92 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDName
0PLAYER
1COP
2SWAT
3FBI
4ARMY
5MEDIC
6FIREMAN
7MALE01
8(unknown)
9TAXI_D
10PIMP
11CRIMINAL01
12CRIMINAL02
13MALE02
14MALE03
15FATMALE01
16FATMALE02
17FEMALE01
18FEMALE02
19FEMALE03
20FATFEMALE01
21FATFEMALE02
22PROSTITUTE
23PROSTITUTE2
24P_MAN1
25P_MAN2
26P_WOM1
27P_WOM2
28CT_MAN1
29CT_MAN2
30CT_WOM1
31CT_WOM2
32LI_MAN1
33LI_MAN2
34LI_WOM1
35LI_WOM2
36DOCKER1
37DOCKER2
38SCUM_MAN
39SCUM_WOM
40WORKER1
41WORKER2
42B_MAN1
43B_MAN2
44B_MAN3
45B_WOM1
46B_WOM2
47B_WOM3
48MOD_MAN
49MOD_WOM
50ST_MAN
51ST_WOM
52FAN_MAN1
53FAN_MAN2
54FAN_WOM
55HOS_MAN
56HOS_WOM
57CONST1
58CONST2
59SHOPPER1
60SHOPPER2
61SHOPPER3
62STUD_MAN
63STUD_WOM
64CAS_MAN
65CAS_WOM
68HITMAN
79GANG01 (LEONE_A)
80GANG02 (LEONE_B)
81GANG03 (TRIAD_A)
82GANG04 (TRIAD_B)
83GANG05 (DIABLO_A)
84GANG06 (DIABLO_B)
85GANG07 (YAKUZA_A)
86GANG08 (YAKUZA_B)
87GANG09 (YARDIE_A)
88GANG10 (YARDIE_B)
89GANG11 (COLOMBIAN_A)
90GANG12 (COLOMBIAN_B)
91GANG13 (HOOD_A)
92GANG14 (HOOD_B)
93GANG15 (FORELLI_A)
94GANG16 (FORELLI_B)
95GANG17 (SINDACCO_A)
96GANG18 (SINDACCO_B)
+|ID|Name| +|-| +|0|PLAYER| +|1|COP| +|2|SWAT| +|3|FBI| +|4|ARMY| +|5|MEDIC| +|6|FIREMAN| +|7|MALE01| +|8|(unknown)| +|9|TAXI_D| +|10|PIMP| +|11|CRIMINAL01| +|12|CRIMINAL02| +|13|MALE02| +|14|MALE03| +|15|FATMALE01| +|16|FATMALE02| +|17|FEMALE01| +|18|FEMALE02| +|19|FEMALE03| +|20|FATFEMALE01| +|21|FATFEMALE02| +|22|PROSTITUTE| +|23|PROSTITUTE2| +|24|P_MAN1| +|25|P_MAN2| +|26|P_WOM1| +|27|P_WOM2| +|28|CT_MAN1| +|29|CT_MAN2| +|30|CT_WOM1| +|31|CT_WOM2| +|32|LI_MAN1| +|33|LI_MAN2| +|34|LI_WOM1| +|35|LI_WOM2| +|36|DOCKER1| +|37|DOCKER2| +|38|SCUM_MAN| +|39|SCUM_WOM| +|40|WORKER1| +|41|WORKER2| +|42|B_MAN1| +|43|B_MAN2| +|44|B_MAN3| +|45|B_WOM1| +|46|B_WOM2| +|47|B_WOM3| +|48|MOD_MAN| +|49|MOD_WOM| +|50|ST_MAN| +|51|ST_WOM| +|52|FAN_MAN1| +|53|FAN_MAN2| +|54|FAN_WOM| +|55|HOS_MAN| +|56|HOS_WOM| +|57|CONST1| +|58|CONST2| +|59|SHOPPER1| +|60|SHOPPER2| +|61|SHOPPER3| +|62|STUD_MAN| +|63|STUD_WOM| +|64|CAS_MAN| +|65|CAS_WOM| +|68|HITMAN| +|79|GANG01 (LEONE_A)| +|80|GANG02 (LEONE_B)| +|81|GANG03 (TRIAD_A)| +|82|GANG04 (TRIAD_B)| +|83|GANG05 (DIABLO_A)| +|84|GANG06 (DIABLO_B)| +|85|GANG07 (YAKUZA_A)| +|86|GANG08 (YAKUZA_B)| +|87|GANG09 (YARDIE_A)| +|88|GANG10 (YARDIE_B)| +|89|GANG11 (COLOMBIAN_A)| +|90|GANG12 (COLOMBIAN_B)| +|91|GANG13 (HOOD_A)| +|92|GANG14 (HOOD_B)| +|93|GANG15 (FORELLI_A)| +|94|GANG16 (FORELLI_B)| +|95|GANG17 (SINDACCO_A)| +|96|GANG18 (SINDACCO_B)| \ No newline at end of file diff --git a/en/scm-documentation/lcs/special-actors.html b/en/scm-documentation/lcs/special-actors.html index 803a5ac..1badde8 100644 --- a/en/scm-documentation/lcs/special-actors.html +++ b/en/scm-documentation/lcs/special-actors.html @@ -8,240 +8,66 @@ - ```sb3 0241: load_special_actor 1 <ID> ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDDescription
AVERYAvery Carrington
BABYGiovanni Casa (baby)
BIKER1Biker Dude 1
BIKER2Biker Dude 2
BODYBAGBODYBAG
CAMP_MANCampaign Worker
CAMP_WOMCampaign Worker 2
CASAGiovanni Casa
CHAUFFChauffeur
DELIASSDeli Assistant
DONOVANO'Donovan
EIGHT8Ball
FKENNYFather Kenny (not used)
FRANFORFranco Forelli
GRDANG1Avenging Angel
GRDANG2Avenging Angel 2
GREASEGrease Zuko
GUN_ASSGun assistant
HOBO_01Donald Love 2
HOLEJOGMayor RC Hole (Jogging outfit)
HOPPERJane Hopper
JD_SHOTDead JD
JDMADEJD O'Toole - Made Man
KAS_01Toshiko Kasen (kimono)
KAZUKIKazuki Kasen
LOVE_01Donald Love
M_HOLEMayor RC Hole
MAR_01Maria
MASTORMassimo Torrini (Assassin)
MCAFFRYDet. Leon McAffrey
MICKEYHMickey H
MIGUELMiguel
NED_01Ned Burner (Reporter)
PAULIEPaulie Sindacco
PHILCPhil Cassidy
PLR10player (skin: boxer Shorts)
PLR11player (skin: bad super hero)
PLR12player (skin: dragon)
PLR2player (skin: lawyer)
PLR3player (skin: travel clothes)
PLR4player (skin: chauffeur)
PLR5player (skin: hockey mask)
PLR6player (skin: tuxedo)
PLR7player (skin: avenging angel)
PLR8player (skin: the King of Rock'n Roll)
PLR9player (skin: cock's mascot)
RAY_01Ray (Bad Cop)
SAL_01Salvatore (Mob Don)
SAL_CONSal CONVICT
THUG_01Sicilian Thug 1
THUG_02Sicilian Thug 2
TOOL_01JD O'Toole
VINC_01Vincenzo Cilli
WAYNEWayne (Biker Dude)
WKAS_01Toshiko Kasen (western)
+|ID|Description| +|-| +|AVERY|Avery Carrington| +|BABY|Giovanni Casa (baby)| +|BIKER1|Biker Dude 1| +|BIKER2|Biker Dude 2| +|BODYBAG|BODYBAG| +|CAMP_MAN|Campaign Worker| +|CAMP_WOM|Campaign Worker 2| +|CASA|Giovanni Casa| +|CHAUFF|Chauffeur| +|DELIASS|Deli Assistant| +|DONOVAN|O'Donovan| +|EIGHT|8Ball| +|FKENNY|Father Kenny (not used)| +|FRANFOR|Franco Forelli| +|GRDANG1|Avenging Angel| +|GRDANG2|Avenging Angel 2| +|GREASE|Grease Zuko| +|GUN_ASS|Gun assistant| +|HOBO_01|Donald Love 2| +|HOLEJOG|Mayor RC Hole (Jogging outfit)| +|HOPPER|Jane Hopper| +|JD_SHOT|Dead JD| +|JDMADE|JD O'Toole - Made Man| +|KAS_01|Toshiko Kasen (kimono)| +|KAZUKI|Kazuki Kasen| +|LOVE_01|Donald Love| +|M_HOLE|Mayor RC Hole| +|MAR_01|Maria| +|MASTOR|Massimo Torrini (Assassin)| +|MCAFFRY|Det. Leon McAffrey| +|MICKEYH|Mickey H| +|MIGUEL|Miguel| +|NED_01|Ned Burner (Reporter)| +|PAULIE|Paulie Sindacco| +|PHILC|Phil Cassidy| +|PLR10|player (skin: boxer Shorts)| +|PLR11|player (skin: bad super hero)| +|PLR12|player (skin: dragon)| +|PLR2|player (skin: lawyer)| +|PLR3|player (skin: travel clothes)| +|PLR4|player (skin: chauffeur)| +|PLR5|player (skin: hockey mask)| +|PLR6|player (skin: tuxedo)| +|PLR7|player (skin: avenging angel)| +|PLR8|player (skin: the King of Rock'n Roll)| +|PLR9|player (skin: cock's mascot)| +|RAY_01|Ray (Bad Cop)| +|SAL_01|Salvatore (Mob Don)| +|SAL_CON|Sal CONVICT| +|THUG_01|Sicilian Thug 1| +|THUG_02|Sicilian Thug 2| +|TOOL_01|JD O'Toole| +|VINC_01|Vincenzo Cilli| +|WAYNE|Wayne (Biker Dude)| +|WKAS_01|Toshiko Kasen (western)| \ No newline at end of file diff --git a/en/scm-documentation/lcs/weapons.html b/en/scm-documentation/lcs/weapons.html index 8d3fe79..31443b3 100644 --- a/en/scm-documentation/lcs/weapons.html +++ b/en/scm-documentation/lcs/weapons.html @@ -8,206 +8,48 @@ - ```sb3 01B6: give_player $PLAYER_CHAR weapon <ID> ammo 1 ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Weapon IDModel IDName
0-Unarmed
1259
2260
3261
4262
5263
6264
7265
8266
9267
10268
11269
12270Grenades
13291
14271
15272
16273
17274Pistol
18275.357
19277Shotgun
20278
21279
22281
23282Micro-SMG
24283
25284SMG
26280M4
27276AK-47
28285Sniper Rifle
29286
30287Rocket Launcher
31288Flame-Thrower
32289
33290Minigun
34?
35?
36292
+|Weapon ID|Model ID|Name| +|-| +|0|\s|Unarmed| +|1|259|\s| +|2|260|\s| +|3|261|\s| +|4|262|\s| +|5|263|\s| +|6|264|\s| +|7|265|\s| +|8|266|\s| +|9|267|\s| +|10|268|\s| +|11|269|\s| +|12|270|Grenades| +|13|291|\s| +|14|271|\s| +|15|272|\s| +|16|273|\s| +|17|274|Pistol| +|18|275|.357| +|19|277|Shotgun| +|20|278|\s| +|21|279|\s| +|22|281|\s| +|23|282|Micro-SMG| +|24|283|\s| +|25|284|SMG| +|26|280|M4| +|27|276|AK-47| +|28|285|Sniper Rifle| +|29|286|\s| +|30|287|Rocket Launcher| +|31|288|Flame-Thrower| +|32|289|\s| +|33|290|Minigun| +|34|?|\s| +|35|?|\s| +|36|292|\s| \ No newline at end of file diff --git a/en/scm-documentation/lcs/weather.html b/en/scm-documentation/lcs/weather.html index 2968648..f96d79d 100644 --- a/en/scm-documentation/lcs/weather.html +++ b/en/scm-documentation/lcs/weather.html @@ -8,47 +8,15 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDDescription
0Sunny
1Cloudy
2Rainy
3Foggy
4Extra sunny
5Hurricane
6Extra colors
7Snow
+|ID|Description| +|-| +|0|Sunny| +|1|Cloudy| +|2|Rainy| +|3|Foggy| +|4|Extra sunny| +|5|Hurricane| +|6|Extra colors| +|7|Snow| \ No newline at end of file diff --git a/en/scm-documentation/sa/buttons.html b/en/scm-documentation/sa/buttons.html index fdb83de..fff38b8 100644 --- a/en/scm-documentation/sa/buttons.html +++ b/en/scm-documentation/sa/buttons.html @@ -8,143 +8,32 @@ - ```sb3 00E1: key_pressed 0 <button> ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ButtonEnumOn footIn a vehicle
0LEFTSTICKXLeft / RightSteer Left / Right
1LEFTSTICKYForward / BackwardsSteer Forward / Backward
2RIGHTSTICKXSpecial Ctrl Left / RightTurret Left / Right
3RIGHTSTICKYSpecial Ctrl Up / DownTurret Up / Down, Lean Up / Down
4LEFTSHOULDER1ActionSecondary Fire
5LEFTSHOULDER2Previous WeaponLook Left
6RIGHTSHOULDER1AimHandbrake
7RIGHTSHOULDER2Next WeaponLook Right
8DPADUPGroup Ctrl BackNext Radio Station
9DPADDOWNGroup Ctrl ForwardPrevious Radio Station
10DPADLEFTConversation - NoNo
11DPADRIGHTConversation - YesYes, Trip Skip
12START
13SELECTChange CameraChange Camera
14SQUAREJump / Zoom InBrake / Reverse
15TRIANGLEEnter vehicleExit vehicle
16CROSSSprint / Zoom OutAccelerate
17CIRCLEAttackShoot
18LEFTSHOCKCrouchHorn
19RIGHTSHOCKLook BehindSub-mission
+|Button|Enum|On foot|In a vehicle| +|-| +|0|LEFTSTICKX|Left / Right|Steer Left / Right| +|1|LEFTSTICKY|Forward / Backwards|Steer Forward / Backward| +|2|RIGHTSTICKX|Special Ctrl Left / Right|Turret Left / Right| +|3|RIGHTSTICKY|Special Ctrl Up / Down|Turret Up / Down, Lean Up / Down| +|4|LEFTSHOULDER1|Action|Secondary Fire| +|5|LEFTSHOULDER2|Previous Weapon|Look Left| +|6|RIGHTSHOULDER1|Aim|Handbrake| +|7|RIGHTSHOULDER2|Next Weapon|Look Right| +|8|DPADUP|Group Ctrl Back|Next Radio Station| +|9|DPADDOWN|Group Ctrl Forward|Previous Radio Station| +|10|DPADLEFT|Conversation - No|No| +|11|DPADRIGHT|Conversation - Yes|Yes, Trip Skip| +|12|START|\s|\s| +|13|SELECT|Change Camera|Change Camera| +|14|SQUARE|Jump / Zoom In|Brake / Reverse| +|15|TRIANGLE|Enter vehicle|Exit vehicle| +|16|CROSS|Sprint / Zoom Out|Accelerate| +|17|CIRCLE|Attack|Shoot| +|18|LEFTSHOCK|Crouch|Horn| +|19|RIGHTSHOCK|Look Behind|Sub-mission| [https://gtamods.com/wiki/00E1](https://gtamods.com/wiki/00E1) diff --git a/en/scm-documentation/sa/clothes.html b/en/scm-documentation/sa/clothes.html index ab66082..48352ad 100644 --- a/en/scm-documentation/sa/clothes.html +++ b/en/scm-documentation/sa/clothes.html @@ -8,1677 +8,306 @@ - ```sb3 Player.SetClothes($PLAYER_CHAR, <texture>, <model>, <body part>) ``` ## Torso - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TextureModel[Body part](player-body-parts.html)Description
player_torsotorso0Torso (default)
vestblackvest0Black Tank
vestvest0White Tank
tshirt2horiztshirt20Striped T-Shirt
tshirtwhitetshirt0White T-Shirt
tshirtilovelstshirt0L.S. T-Shirt
tshirtbluntstshirt0Sharps T-Shirt
shirtbplaidshirtb0Plaid Shirt
shirtbcheckshirtb0Checkered Shirt
fieldfield0Combat Jacket
tshirterisyelltshirt0Eris T-Shirt
tshirterisorntshirt0Eris T-Shirt2
trackytop2eristrackytop10Track Top
bbjackrimbbjack0Rimmers Jacket
bballjackrstarbbjack0R-Star Jacket
baskballdribbaskball0Dribblers Vest
baskballrimbaskball0Saint's Shirt
sixtyninerstshirt069ers T-Shirt
banditsbaseball0Bandits Top
tshirtproredtshirt0ProLaps T-Shirt
tshirtproblktshirt0ProLaps Black T
trackytop1protrackytop10Track Top
hockeytopsweat0Slappers Top
bbjerseysleevt0Baseball T
shellsuittrackytop10Leisure Top
tshirtheatwhttshirt0White Heat T
tshirtbobomonktshirt0Bobo Ape T
tshirtboboredtshirt0Red Bobo T
tshirtbase5tshirt0Base 5 T
tshirtsuburbtshirt0Suburban T
hoodyamerchoodya0Mercury Hood
hoodyabase5hoodya0Base 5 Hood
hoodyarockstarhoodya0Rockstar Hood
wcoatbluewcoat0Vest & T-Shirt
coachcoach0Grn Windbreaker
coachsemicoach0Blk Windbreaker
sweatrstarsweat0Rockstar Sweat
hoodyAbluehoodyA0Blue Hoody
hoodyAblackhoodyA0Black Hoody
hoodyAgreenhoodyA0Green Hoody
sleevtbrownsleevt0Brown Shirt
shirtablueshirta0Sky Blue Shirt
shirtayellowshirta0Yellow Shirt
shirtagreyshirta0Gray Shirt
shirtbgangshirtb0Green Shirt
tshirtzipcrmtshirt0Cream Logo T
tshirtzipgrytshirt0Gray Logo T
denimfadedenim0Jean Jacket
bowlinghawaii0Bowling shirt
hoodjackbeigehoodjack0Hooded Jacket
baskballlocbaskball0Loc-Down Vest
tshirtlocgreytshirt0Loc-Down T
tshirtmaddgreytshirt0Madd Tagg T
tshirtmaddgrntshirt0Green Tagg T
suit1greysuit10Gray Jacket
suit1blksuit10Black Jacket
leatherleather0Biker Jacket
painterpainter0Chore Coat
hawaiiwhthawaii0Hawaiian Shirt
hawaiiredhawaii0Blue Hawaiian
sportjacktrackytop10Sports Jacket
suit1redsuit10Red Jacket
suit1bluesuit10Blue Jacket
suit1yellowsuit10Yellow Jacket
suit2grnsuit20Tweed Jacket
tuxedosuit20Tuxedo Pants
suit1gangsuit10Green Jacket
lettersleevt0Letterman Top
+|Texture|Model|[Body part](player-body-parts.html)|Description| +|-| +|player_torso|torso|0|Torso (default)| +|vestblack|vest|0|Black Tank| +|vest|vest|0|White Tank| +|tshirt2horiz|tshirt2|0|Striped T-Shirt| +|tshirtwhite|tshirt|0|White T-Shirt| +|tshirtilovels|tshirt|0|L.S. T-Shirt| +|tshirtblunts|tshirt|0|Sharps T-Shirt| +|shirtbplaid|shirtb|0|Plaid Shirt| +|shirtbcheck|shirtb|0|Checkered Shirt| +|field|field|0|Combat Jacket| +|tshirterisyell|tshirt|0|Eris T-Shirt| +|tshirterisorn|tshirt|0|Eris T-Shirt2| +|trackytop2eris|trackytop1|0|Track Top| +|bbjackrim|bbjack|0|Rimmers Jacket| +|bballjackrstar|bbjack|0|R-Star Jacket| +|baskballdrib|baskball|0|Dribblers Vest| +|baskballrim|baskball|0|Saint's Shirt| +|sixtyniners|tshirt|0|69ers T-Shirt| +|bandits|baseball|0|Bandits Top| +|tshirtprored|tshirt|0|ProLaps T-Shirt| +|tshirtproblk|tshirt|0|ProLaps Black T| +|trackytop1pro|trackytop1|0|Track Top| +|hockeytop|sweat|0|Slappers Top| +|bbjersey|sleevt|0|Baseball T| +|shellsuit|trackytop1|0|Leisure Top| +|tshirtheatwht|tshirt|0|White Heat T| +|tshirtbobomonk|tshirt|0|Bobo Ape T| +|tshirtbobored|tshirt|0|Red Bobo T| +|tshirtbase5|tshirt|0|Base 5 T| +|tshirtsuburb|tshirt|0|Suburban T| +|hoodyamerc|hoodya|0|Mercury Hood| +|hoodyabase5|hoodya|0|Base 5 Hood| +|hoodyarockstar|hoodya|0|Rockstar Hood| +|wcoatblue|wcoat|0|Vest & T-Shirt| +|coach|coach|0|Grn Windbreaker| +|coachsemi|coach|0|Blk Windbreaker| +|sweatrstar|sweat|0|Rockstar Sweat| +|hoodyAblue|hoodyA|0|Blue Hoody| +|hoodyAblack|hoodyA|0|Black Hoody| +|hoodyAgreen|hoodyA|0|Green Hoody| +|sleevtbrown|sleevt|0|Brown Shirt| +|shirtablue|shirta|0|Sky Blue Shirt| +|shirtayellow|shirta|0|Yellow Shirt| +|shirtagrey|shirta|0|Gray Shirt| +|shirtbgang|shirtb|0|Green Shirt| +|tshirtzipcrm|tshirt|0|Cream Logo T| +|tshirtzipgry|tshirt|0|Gray Logo T| +|denimfade|denim|0|Jean Jacket| +|bowling|hawaii|0|Bowling shirt| +|hoodjackbeige|hoodjack|0|Hooded Jacket| +|baskballloc|baskball|0|Loc-Down Vest| +|tshirtlocgrey|tshirt|0|Loc-Down T| +|tshirtmaddgrey|tshirt|0|Madd Tagg T| +|tshirtmaddgrn|tshirt|0|Green Tagg T| +|suit1grey|suit1|0|Gray Jacket| +|suit1blk|suit1|0|Black Jacket| +|leather|leather|0|Biker Jacket| +|painter|painter|0|Chore Coat| +|hawaiiwht|hawaii|0|Hawaiian Shirt| +|hawaiired|hawaii|0|Blue Hawaiian| +|sportjack|trackytop1|0|Sports Jacket| +|suit1red|suit1|0|Red Jacket| +|suit1blue|suit1|0|Blue Jacket| +|suit1yellow|suit1|0|Yellow Jacket| +|suit2grn|suit2|0|Tweed Jacket| +|tuxedo|suit2|0|Tuxedo Pants| +|suit1gang|suit1|0|Green Jacket| +|letter|sleevt|0|Letterman Top| ## Legs - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TextureModelBody partDescription
player_legslegs2Legs (default)
worktrcamogrnworktr2Woodland Camo
worktrcamogryworktr2Urban Camo
worktrgreyworktr2Gray Pants
worktrkhakiworktr2Olive Pants
tracktrtracktr2Sweat Pants
tracktreristracktr2Track Pants
jeansdenimjeans2Blue Jeans
legsblacklegs2Black Boxers
legsheartlegs2Heart Boxers
biegetrchinosb2Beige Pants
tracktrprotracktr2Track Pants
tracktrwhstrtracktr2Black Track Pants
racktrbluetracktr2Blue Track Pants
tracktrgangtracktr2Green Track Pants
bbshortwhtboxingshort2Ball Shorts
boxshortboxingshort2Boxing Shorts
bbshortredboxingshort2Dribbler Shorts
shellsuittrtracktr2Leisure Pants
shortsgreyshorts2Gray Shorts
shortskhakishorts2Olive Shorts
chongergreychonger2Gray Chonglers
chongergangchonger2Green Chonglers
chongerredchonger2Red Chonglers
chongerbluechonger2Blue Chonglers
shortsgangshorts2Green Shorts
denimsgangjeans2Green Jeans
denimsredjeans2Red Jeans
chinosbiegechinosb2Beige Khakis
chinoskhakichinosb2Olive Khakis
cutoffchinosshorts2Beige Shorts
cutoffchinosblueshorts2Blue Shorts
chinosblackchinosb2Black Khakis
chinosbluechinosb2Blue Khakis
leathertrleathertr2Leather Pants
leathertrchapsleathertr2Leather Chaps
suit1trgreysuit1tr2Gray Pants
suit1trblksuit1tr2Black Pants
cutoffdenimsshorts2Jean Shorts
suit1trredsuit1tr2Red Pants
suit1trbluesuit1tr2Blue Pants
suit1tryellowsuit1tr2Yellow Pants
suit1trgreensuit1tr2Tweed Pants
suit1trblk2suit1tr2Tuxedo Pants
suit1trgangsuit1tr2Green Pants
+|Texture|Model|Body part|Description| +|-| +|player_legs|legs|2|Legs (default)| +|worktrcamogrn|worktr|2|Woodland Camo| +|worktrcamogry|worktr|2|Urban Camo| +|worktrgrey|worktr|2|Gray Pants| +|worktrkhaki|worktr|2|Olive Pants| +|tracktr|tracktr|2|Sweat Pants| +|tracktreris|tracktr|2|Track Pants| +|jeansdenim|jeans|2|Blue Jeans| +|legsblack|legs|2|Black Boxers| +|legsheart|legs|2|Heart Boxers| +|biegetr|chinosb|2|Beige Pants| +|tracktrpro|tracktr|2|Track Pants| +|tracktrwhstr|tracktr|2|Black Track Pants| +|racktrblue|tracktr|2|Blue Track Pants| +|tracktrgang|tracktr|2|Green Track Pants| +|bbshortwht|boxingshort|2|Ball Shorts| +|boxshort|boxingshort|2|Boxing Shorts| +|bbshortred|boxingshort|2|Dribbler Shorts| +|shellsuittr|tracktr|2|Leisure Pants| +|shortsgrey|shorts|2|Gray Shorts| +|shortskhaki|shorts|2|Olive Shorts| +|chongergrey|chonger|2|Gray Chonglers| +|chongergang|chonger|2|Green Chonglers| +|chongerred|chonger|2|Red Chonglers| +|chongerblue|chonger|2|Blue Chonglers| +|shortsgang|shorts|2|Green Shorts| +|denimsgang|jeans|2|Green Jeans| +|denimsred|jeans|2|Red Jeans| +|chinosbiege|chinosb|2|Beige Khakis| +|chinoskhaki|chinosb|2|Olive Khakis| +|cutoffchinos|shorts|2|Beige Shorts| +|cutoffchinosblue|shorts|2|Blue Shorts| +|chinosblack|chinosb|2|Black Khakis| +|chinosblue|chinosb|2|Blue Khakis| +|leathertr|leathertr|2|Leather Pants| +|leathertrchaps|leathertr|2|Leather Chaps| +|suit1trgrey|suit1tr|2|Gray Pants| +|suit1trblk|suit1tr|2|Black Pants| +|cutoffdenims|shorts|2|Jean Shorts| +|suit1trred|suit1tr|2|Red Pants| +|suit1trblue|suit1tr|2|Blue Pants| +|suit1tryellow|suit1tr|2|Yellow Pants| +|suit1trgreen|suit1tr|2|Tweed Pants| +|suit1trblk2|suit1tr|2|Tuxedo Pants| +|suit1trgang|suit1tr|2|Green Pants| ## Shoes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TextureModelBody partDescription
footfeet3Shoes ; (default)
cowboyboot2biker3Cowboy Boots
bask2semibask13Hi-Top Kicks
bask1erisbask13Hi-Top Sneaks
sneakerbincgangsneaker3Green Low-Tops
sneakerbincblusneaker3Blue Low-Tops
sneakerbincblksneaker3Black Low-Tops
sandalflipflop3Sandals
sandalsockflipflop3Sandal & Socks
flipflopflipflop3Flip-Flops
hitopbask13Mid-Top Sneaker
convproblkconv3Black Hi-Tops
convprobluconv3Blue Hi-Tops
convprogrnconv3Green Hi-Tops
sneakerproredsneaker3Red Sneakers
sneakerproblusneaker3Blue Sneakers
sneakerprowhtsneaker3White Sneakers
bask1prowhtbask13White Mid-Tops
bask1problkbask13Black Mid-Tops
boxingshoebiker3Boxing Shoes
convheatblkconv3Black Hi-Tops
convheatredconv3Red Hi-Tops
convheatornconv3Orange Hi-Tops
sneakerheatwhtsneaker3White Low-Tops
sneakerheatgrysneaker3Gray Low-Tops
sneakerheatblksneaker3Black Low-Tops
bask2heatwhtbask13White Hi-Tops
bask2heatbandbask13Strap Sneakers
timbergreybask13Gray Boots
timberredbask13Red Boots
timberfawnbask13Brown Boots
timberhikebask13Hiking Boots
cowboybootbiker3Cowboy Boots
bikerbiker3Biker Boots
snakeskinbiker3Snake Skin
shoedressblkshoe3Black Shoes
shoedressbrnshoe3Brown Shoes
shoespatzshoe3Spats
+|Texture|Model|Body part|Description| +|-| +|foot|feet|3|Shoes ; (default)| +|cowboyboot2|biker|3|Cowboy Boots| +|bask2semi|bask1|3|Hi-Top Kicks| +|bask1eris|bask1|3|Hi-Top Sneaks| +|sneakerbincgang|sneaker|3|Green Low-Tops| +|sneakerbincblu|sneaker|3|Blue Low-Tops| +|sneakerbincblk|sneaker|3|Black Low-Tops| +|sandal|flipflop|3|Sandals| +|sandalsock|flipflop|3|Sandal & Socks| +|flipflop|flipflop|3|Flip-Flops| +|hitop|bask1|3|Mid-Top Sneaker| +|convproblk|conv|3|Black Hi-Tops| +|convproblu|conv|3|Blue Hi-Tops| +|convprogrn|conv|3|Green Hi-Tops| +|sneakerprored|sneaker|3|Red Sneakers| +|sneakerproblu|sneaker|3|Blue Sneakers| +|sneakerprowht|sneaker|3|White Sneakers| +|bask1prowht|bask1|3|White Mid-Tops| +|bask1problk|bask1|3|Black Mid-Tops| +|boxingshoe|biker|3|Boxing Shoes| +|convheatblk|conv|3|Black Hi-Tops| +|convheatred|conv|3|Red Hi-Tops| +|convheatorn|conv|3|Orange Hi-Tops| +|sneakerheatwht|sneaker|3|White Low-Tops| +|sneakerheatgry|sneaker|3|Gray Low-Tops| +|sneakerheatblk|sneaker|3|Black Low-Tops| +|bask2heatwht|bask1|3|White Hi-Tops| +|bask2heatband|bask1|3|Strap Sneakers| +|timbergrey|bask1|3|Gray Boots| +|timberred|bask1|3|Red Boots| +|timberfawn|bask1|3|Brown Boots| +|timberhike|bask1|3|Hiking Boots| +|cowboyboot|biker|3|Cowboy Boots| +|biker|biker|3|Biker Boots| +|snakeskin|biker|3|Snake Skin| +|shoedressblk|shoe|3|Black Shoes| +|shoedressbrn|shoe|3|Brown Shoes| +|shoespatz|shoe|3|Spats| ## Necklaces - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TextureModelBody partDescription
dogtagneck13Dogtags
neckafricaneck13Africa Pendant
stopwatchneck13Stop Watch
necksaintsneck13Saints Chain
neckhashneck13Leaf Chain
necksilverneck213Silver Cuban
neckgoldneck213Gold Cuban
neckropesneck213Silver Chain
neckropegneck213Gold Chain
necklsneck13L.S. Chain
neckdollarneck13Dollar Chain
neckcrossneck13Cross Chain
+|Texture|Model|Body part|Description| +|-| +|dogtag|neck|13|Dogtags| +|neckafrica|neck|13|Africa Pendant| +|stopwatch|neck|13|Stop Watch| +|necksaints|neck|13|Saints Chain| +|neckhash|neck|13|Leaf Chain| +|necksilver|neck2|13|Silver Cuban| +|neckgold|neck2|13|Gold Cuban| +|neckropes|neck2|13|Silver Chain| +|neckropeg|neck2|13|Gold Chain| +|neckls|neck|13|L.S. Chain| +|neckdollar|neck|13|Dollar Chain| +|neckcross|neck|13|Cross Chain| ## Watches - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TextureModelBody partDescription
watchpinkwatch14Pink Watch
watchyellowwatch14Yellow Watch
watchprowatch14Pro-Laps White
watchpro2watch14Pro-Laps Black
watchsub1watch14Face Watch
watchsub2watch14Face Black
watchzip1watch14Zip Blue
watchzip2watch14Zip Gold
watchgnowatch14Gold Gnocchi
watchgno2watch14Silver Gnocchi
watchcrowatch14Gold Crowex
watchcro2watch14Silver Crowex
+|Texture|Model|Body part|Description| +|-| +|watchpink|watch|14|Pink Watch| +|watchyellow|watch|14|Yellow Watch| +|watchpro|watch|14|Pro-Laps White| +|watchpro2|watch|14|Pro-Laps Black| +|watchsub1|watch|14|Face Watch| +|watchsub2|watch|14|Face Black| +|watchzip1|watch|14|Zip Blue| +|watchzip2|watch|14|Zip Gold| +|watchgno|watch|14|Gold Gnocchi| +|watchgno2|watch|14|Silver Gnocchi| +|watchcro|watch|14|Gold Crowex| +|watchcro2|watch|14|Silver Crowex| ## Glasses - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TextureModelBody partDescription
grouchogrouchos15Joke Glasses
zorrozorromask15Joke Mask
eyepatcheyepatch15Eyepatch
glasses01glasses0115Black Shades
glasses04glasses0415Brown Shades
bandred3bandmask15Red Rag
bandblue3bandmask15Blue Rag
bandgang3bandmask15Green Rag
bandblack3bandmask15Black Rag
glasses01darkglasses0115Aviators
glasses04darkglasses0415Sun Glasses
glasses03glasses0315Green Tint
glasses03redglasses0315Red Tint
glasses03blueglasses0315Blue Tint
glasses03darkglasses0315Black Shades
glasses05darkglasses0315Black Shades
glasses05glasses0315Black Rim
+|Texture|Model|Body part|Description| +|-| +|groucho|grouchos|15|Joke Glasses| +|zorro|zorromask|15|Joke Mask| +|eyepatch|eyepatch|15|Eyepatch| +|glasses01|glasses01|15|Black Shades| +|glasses04|glasses04|15|Brown Shades| +|bandred3|bandmask|15|Red Rag| +|bandblue3|bandmask|15|Blue Rag| +|bandgang3|bandmask|15|Green Rag| +|bandblack3|bandmask|15|Black Rag| +|glasses01dark|glasses01|15|Aviators| +|glasses04dark|glasses04|15|Sun Glasses| +|glasses03|glasses03|15|Green Tint| +|glasses03red|glasses03|15|Red Tint| +|glasses03blue|glasses03|15|Blue Tint| +|glasses03dark|glasses03|15|Black Shades| +|glasses05dark|glasses03|15|Black Shades| +|glasses05|glasses03|15|Black Rim| ## Hats - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TextureModelBody partDescription
bandredbandana16Red Rag Back
bandbluebandana16Blue Rag Back
bandgangbandana16Green Rag Back
bandblackbandana16Black Rag Back
bandred2bandknots16Red Rag Front
bandblue2bandknots16Blue Rag Front
bandblack2bandknots16Black Rag Front
bandgang2bandknots16Green Rag Front
capknitgrncapknit16Watch Cap
captruckcaptruck16Trucker Hat
cowboycowboy16Cowboy Hat
hattigercowboy16Leopard Cowboy
helmethelmet16Fullface Helmet
motomoto16MotoX Helmet
boxingcapboxingcap16Boxing Helmet
hockeyhockeymask16Hockey Mask
capgangcap16Green Cap
capgangbackcapback16Green Cap (Back)
capgangsidecapside16Green Cap (Side)
capgangovercapovereye16Grn Cap (Tilt)
capgangupcaprimup16Grn Cap (Up)
bikerhelmetbikerhelmet16Helmut
capredcap16Red Cap
capredbackcapback16Red Cap (Back)
capredsidecapside16Red Cap (Side)
capredovercapovereye16Red Cap (Tilt)
capredupcaprimup16Red Cap (Up)
capbluecap16Blue Cap
capbluebackcapback16Blue Cap (Back)
capbluesidecapside16Blue Cap (Side)
capblueovercapovereye16Blue Cap (Tilt)
capblueupcaprimup16Blue Cap (Up)
skullyblkskullycap16Black Skully
skullygrnskullycap16Green Skully
hatmancblkhatmanc16Black Sun Hat
hatmancplaidhatmanc16Plaid Sun Hat
capzipcap16Cap
capzipbackcapback16Cap (Back)
capzipsidecapside16Cap (Side)
capzipovercapovereye16Cap Tilted
capzipupcaprimup16Cap Rim Up
beretredberet16Red Beret
beretblkberet16Black Beret
capblkcap16Black Cap
capblkbackcapback16Black Cap (Back)
capblksidecapside16Black Cap (Side)
capblkovercapovereye16Black Cap (Tilt)
capblkupcaprimup16Black Cap (Up)
trilbydrktrilby16Dark Trilby
trilbylghttrilby16Light Trilby
bowlerbowler16Black Derby
bowlerredbowler16Red Derby
bowlerbluebowler16Blue Derby
bowleryellowbowler16Yellow Derby
boaterboater16Gray Boater
bowlergangbowler16Green Derby
boaterblkboater16Black Boater
+|Texture|Model|Body part|Description| +|-| +|bandred|bandana|16|Red Rag Back| +|bandblue|bandana|16|Blue Rag Back| +|bandgang|bandana|16|Green Rag Back| +|bandblack|bandana|16|Black Rag Back| +|bandred2|bandknots|16|Red Rag Front| +|bandblue2|bandknots|16|Blue Rag Front| +|bandblack2|bandknots|16|Black Rag Front| +|bandgang2|bandknots|16|Green Rag Front| +|capknitgrn|capknit|16|Watch Cap| +|captruck|captruck|16|Trucker Hat| +|cowboy|cowboy|16|Cowboy Hat| +|hattiger|cowboy|16|Leopard Cowboy| +|helmet|helmet|16|Fullface Helmet| +|moto|moto|16|MotoX Helmet| +|boxingcap|boxingcap|16|Boxing Helmet| +|hockey|hockeymask|16|Hockey Mask| +|capgang|cap|16|Green Cap| +|capgangback|capback|16|Green Cap (Back)| +|capgangside|capside|16|Green Cap (Side)| +|capgangover|capovereye|16|Grn Cap (Tilt)| +|capgangup|caprimup|16|Grn Cap (Up)| +|bikerhelmet|bikerhelmet|16|Helmut| +|capred|cap|16|Red Cap| +|capredback|capback|16|Red Cap (Back)| +|capredside|capside|16|Red Cap (Side)| +|capredover|capovereye|16|Red Cap (Tilt)| +|capredup|caprimup|16|Red Cap (Up)| +|capblue|cap|16|Blue Cap| +|capblueback|capback|16|Blue Cap (Back)| +|capblueside|capside|16|Blue Cap (Side)| +|capblueover|capovereye|16|Blue Cap (Tilt)| +|capblueup|caprimup|16|Blue Cap (Up)| +|skullyblk|skullycap|16|Black Skully| +|skullygrn|skullycap|16|Green Skully| +|hatmancblk|hatmanc|16|Black Sun Hat| +|hatmancplaid|hatmanc|16|Plaid Sun Hat| +|capzip|cap|16|Cap| +|capzipback|capback|16|Cap (Back)| +|capzipside|capside|16|Cap (Side)| +|capzipover|capovereye|16|Cap Tilted| +|capzipup|caprimup|16|Cap Rim Up| +|beretred|beret|16|Red Beret| +|beretblk|beret|16|Black Beret| +|capblk|cap|16|Black Cap| +|capblkback|capback|16|Black Cap (Back)| +|capblkside|capside|16|Black Cap (Side)| +|capblkover|capovereye|16|Black Cap (Tilt)| +|capblkup|caprimup|16|Black Cap (Up)| +|trilbydrk|trilby|16|Dark Trilby| +|trilbylght|trilby|16|Light Trilby| +|bowler|bowler|16|Black Derby| +|bowlerred|bowler|16|Red Derby| +|bowlerblue|bowler|16|Blue Derby| +|bowleryellow|bowler|16|Yellow Derby| +|boater|boater|16|Gray Boater| +|bowlergang|bowler|16|Green Derby| +|boaterblk|boater|16|Black Boater| ## Special - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TextureModelBody partDescription
gimpleggimpleg17Gimp Suit
valetvalet17Valet Uniform
countrytrcountrytr17Rural Clothes
croupiervalet17Croupier
policetrpolicetr17Cop
balaclavabalaclava17Ski Mask
pimptrpimptr17Pimp Suit
garageleggaragetr17Racing Suit
medictrmedictr17Medic Uniform
+|Texture|Model|Body part|Description| +|-| +|gimpleg|gimpleg|17|Gimp Suit| +|valet|valet|17|Valet Uniform| +|countrytr|countrytr|17|Rural Clothes| +|croupier|valet|17|Croupier| +|policetr|policetr|17|Cop| +|balaclava|balaclava|17|Ski Mask| +|pimptr|pimptr|17|Pimp Suit| +|garageleg|garagetr|17|Racing Suit| +|medictr|medictr|17|Medic Uniform| \ No newline at end of file diff --git a/en/scm-documentation/sa/gangs.html b/en/scm-documentation/sa/gangs.html index 732fdb3..818e512 100644 --- a/en/scm-documentation/sa/gangs.html +++ b/en/scm-documentation/sa/gangs.html @@ -8,40 +8,21 @@ - ```sb3 0237: set_gang <id> weapons_to 24 29 4 ``` - - - - - - - -
NameIDGXT
+|Name|ID|GXT| +|-| +|Ballas|0|ST_GNG0| +|Grove Street Families|1|ST_GNG1| +|Los Santos Vagos|2|ST_GNG2| +|San Fierro Rifa|3|ST_GNG3| +|Da Nang Boys|4|ST_GNG4| +|Mafia|5|ST_GNG5| +|Mountain Cloud Triad|6|ST_GNG6| +|Varrio Los Aztecas|7|ST_GNG7| +|(unused)|8|ST_GNG8| +|(unused)|9|ST_GNG9| - - \ No newline at end of file + \ No newline at end of file diff --git a/en/scm-documentation/sa/garages.html b/en/scm-documentation/sa/garages.html index 01b6214..ad2fe82 100644 --- a/en/scm-documentation/sa/garages.html +++ b/en/scm-documentation/sa/garages.html @@ -8,357 +8,67 @@ - ```sb3 Garage.Activate('BODLAWN') ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NamePositionDescriptionNotes
**Los Santos**
CJSAFE(2502.31,-1699.36,12.4323)Ganton garage
CESAFE1(1352.58,-636.657,108.135)Muholland garage
MUL_LAN(1640.37,-1520.07,12.5118)Downtown garageused in
"Life's a Beach"
IMP_LA(1523.92,-1653.23,4.72837)impound lot
DUF_LAS(1873.97,-2096.55,12.487)El Corona garageused in
"Los Desperados"
LASBOMB(1843.91,-1858.8,12.3645)bomb shop
MODGLAS(1809.46,-2150.67,12.4283)Cesar's garage
CARLAS1(1694.8,-2088.7,12.3636)El Corona garage
BURG_LK(2738.4,-2012.55,12.5759)burglary garage
MODLAST(2640.78,-2049.99,12.543)Loco Low Co
SPLAW2(491.103,-1747.55,9.45516)Verona Beach Pay n Spray
BEACSV(319.326,-1768.93,3.35686)Santa Maria Beach garage
BODLAWN(1038.24,-1025.67,31.1027)Transfender
SPRLAE(2056.6,-1835.9,12.5443)Idlewood Pay n Spray
SPRLAE(1021.81 -1018.71 30.9081)Temple Pay n Spray
**San Fierro**
FDORSFE(-2171.43,649.416,49.8742)Wu Zi's garage
MICHDR(-1790.97,1209.71,23.763)Michelle's garage
SAV1SFE(-2108.92,886.553,75.566)Windy road garage
IMP_SF(-1652.78,647.502,-6.04924)impound lot
MDS1SFS(-2728.53,212.295,3.45112)"Wheels Arch Angel" garage
TBON(-2735.46,60.7331,3.07005)garage a block south of "Wheels Arch Angel"
SVGSFS1(-2454.02,-131.556,25.0886)Hashbury garage
MDSSFSE(-1941.04,251.714,33.4274)Transfender
SPRSFSE(-1908.93,292.353,40.0413)Downtown Pay n Spray
BRGSFSE(-2112.48,-21.214,34.303)burglary garage
HBGDSFS(-2057.35,150.803,27.8286)Doherty garage #1 left
LCKSFSE(-2043.1,118.609,27.821)Doherty garage #2 right
SPRSFW(-2430.13,1013.71,49.3413)Juniper Hollow Pay n Spray
SAV1SFW(2699.12,821.489,49.0042)Paradiso garage
(-1694.78 1033.15 44.1937)Esplanade North garageused in
"Yay Ka-Boom-Boom"
(-1794.15 1429.69 4.37321)Downtown garage"Ran Fa Li"
**Las Venturas**
VGELOCK(2602.6,1438.84,9.8337)burglary garage
VECMOD(2382.28,1044,9.8337)Transfender
VESVGRG(2449.5,695.018,10.4742)Rockshore West garage
IMP_LV(2218.06,2448.06,-8.43807)impound lot
VGSHNGR(1550.98,1155.36,8.97329)AT 400 hangar
BLOB2(2002.96,2303.72,9.61706)Welding and Wedding bomb shop
BLOB1(1968.23,2157.88,9.59696)Redsands East Pay n Spray
BLOB6(1408.65,1899.52,10.115)Redsands West garage
BLOB69(1269.2,2525.14,9.80013)Prickle Pine garage
BLOB7(929.554,2008.59,10.115)Whitewood Estates garage
TIMY1(2389.6,1483.26,9.81843)unused Pay n Spray(the door doesn't work)
**Countryside**
CN2SPRY(-103.636,1112.42,18.7017)Fort Carson Pay n Spray
CN2GAR1(-364.439,1194.37,18.597)Fort Carson garage
CN2GAR2(430.059,2542.31,15.166)Verdant Meadows garage
GHOSTDR(-397.297,2223.17,41.3824)garage used in
"Interdiction"
DHANGAR(383.843,2433.28,15.166)Verdant Meadows Hangar
CESPRAY(715.806,-462.403,14.9635)Dillimore Pay n Spray
BURBDOO(2227.6,168.649,26.4635)Palomino Creek garage
BURBDO2(783.155,-492.75,16.3361)Dillimore garage
CNSPRAY(-1424.11,2576.61,54.8156)El Quebrados Pay n Spray
AMUMIS(-2114.42,-2462.27,29.4809)Angel Pine Ammunation garage
+|Name|Position|Description|Notes| +|-| +|**Los Santos**|\s|\s|\s| +|CJSAFE|(2502.31,-1699.36,12.4323)|Ganton garage|\s| +|CESAFE1|(1352.58,-636.657,108.135)|Muholland garage|\s| +|MUL_LAN|(1640.37,-1520.07,12.5118)|Downtown garage|used in \n'Life's a Beach&| +|IMP_LA|(1523.92,-1653.23,4.72837)|impound lot|\s| +|DUF_LAS|(1873.97,-2096.55,12.487)|El Corona garage|used in \n'Los Desperados"| +|LASBOMB|(1843.91,-1858.8,12.3645)|bomb shop|\s| +|MODGLAS|(1809.46,-2150.67,12.4283)|Cesar's garage|\s| +|CARLAS1|(1694.8,-2088.7,12.3636)|El Corona garage|\s| +|BURG_LK|(2738.4,-2012.55,12.5759)|burglary garage|\s| +|MODLAST|(2640.78,-2049.99,12.543)|Loco Low Co|\s| +|SPLAW2|(491.103,-1747.55,9.45516)|Verona Beach Pay n Spray|\s| +|BEACSV|(319.326,-1768.93,3.35686)|Santa Maria Beach garage|\s| +|BODLAWN|(1038.24,-1025.67,31.1027)|Transfender|\s| +|SPRLAE|(2056.6,-1835.9,12.5443)|Idlewood Pay n Spray|\s| +|SPRLAE|(1021.81 -1018.71 30.9081)|Temple Pay n Spray|\s| +|**San Fierro**|\s|\s|\s| +|FDORSFE|(-2171.43,649.416,49.8742)|Wu Zi's garage|\s| +|MICHDR|(-1790.97,1209.71,23.763)|Michelle's garage|\s| +|SAV1SFE|(-2108.92,886.553,75.566)|Windy road garage|\s| +|IMP_SF|(-1652.78,647.502,-6.04924)|impound lot|\s| +|MDS1SFS|(-2728.53,212.295,3.45112)|'Wheels Arch Angel' garage|\s| +|TBON|(-2735.46,60.7331,3.07005)|garage a block south of 'Wheels Arch Angel'|\s| +|SVGSFS1|(-2454.02,-131.556,25.0886)|Hashbury garage|\s| +|MDSSFSE|(-1941.04,251.714,33.4274)|Transfender|\s| +|SPRSFSE|(-1908.93,292.353,40.0413)|Downtown Pay n Spray|\s| +|BRGSFSE|(-2112.48,-21.214,34.303)|burglary garage|\s| +|HBGDSFS|(-2057.35,150.803,27.8286)|Doherty garage #1 left|\s| +|LCKSFSE|(-2043.1,118.609,27.821)|Doherty garage #2 right|\s| +|SPRSFW|(-2430.13,1013.71,49.3413)|Juniper Hollow Pay n Spray|\s| +|SAV1SFW|(2699.12,821.489,49.0042)|Paradiso garage|\s| +|\s|(-1694.78 1033.15 44.1937)|Esplanade North garage|used in \n'Yay Ka-Boom-Boom&| +|\s|(-1794.15 1429.69 4.37321)|Downtown garage|'Ran Fa Li'| +|**Las Venturas**|\s|\s|\s| +|VGELOCK|(2602.6,1438.84,9.8337)|burglary garage|\s| +|VECMOD|(2382.28,1044,9.8337)|Transfender|\s| +|VESVGRG|(2449.5,695.018,10.4742)|Rockshore West garage|\s| +|IMP_LV|(2218.06,2448.06,-8.43807)|impound lot|\s| +|VGSHNGR|(1550.98,1155.36,8.97329)|AT 400 hangar|\s| +|BLOB2|(2002.96,2303.72,9.61706)|Welding and Wedding bomb shop|\s| +|BLOB1|(1968.23,2157.88,9.59696)|Redsands East Pay n Spray|\s| +|BLOB6|(1408.65,1899.52,10.115)|Redsands West garage|\s| +|BLOB69|(1269.2,2525.14,9.80013)|Prickle Pine garage|\s| +|BLOB7|(929.554,2008.59,10.115)|Whitewood Estates garage|\s| +|TIMY1|(2389.6,1483.26,9.81843)|unused Pay n Spray|(the door doesn't work)| +|**Countryside**|\s|\s|\s| +|CN2SPRY|(-103.636,1112.42,18.7017)|Fort Carson Pay n Spray|\s| +|CN2GAR1|(-364.439,1194.37,18.597)|Fort Carson garage|\s| +|CN2GAR2|(430.059,2542.31,15.166)|Verdant Meadows garage|\s| +|GHOSTDR|(-397.297,2223.17,41.3824)|garage| used in\n'Interdiction'| +|DHANGAR|(383.843,2433.28,15.166)|Verdant Meadows Hangar|\s| +|CESPRAY|(715.806,-462.403,14.9635)|Dillimore Pay n Spray|\s| +|BURBDOO|(2227.6,168.649,26.4635)|Palomino Creek garage|\s| +|BURBDO2|(783.155,-492.75,16.3361)|Dillimore garage|\s| +|CNSPRAY|(-1424.11,2576.61,54.8156)|El Quebrados Pay n Spray|\s| +|AMUMIS|(-2114.42,-2462.27,29.4809)|Angel Pine Ammunation garage| \ No newline at end of file diff --git a/en/scm-documentation/sa/haircuts.html b/en/scm-documentation/sa/haircuts.html index 611aca6..2257cda 100644 --- a/en/scm-documentation/sa/haircuts.html +++ b/en/scm-documentation/sa/haircuts.html @@ -8,220 +8,44 @@ - ```sb3 Player.SetClothes($PLAYER_CHAR, <texture>, <model>, <body part>) ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TextureModel[Body part](player-body-parts.html)Description
afroafro1Afro
afrobeardafro1Afro & Beard
afroblondafro1Blonde Afro
afrogoateeafro1Afro & Goatee
afrotashafro1Afro & Stash
baldhead1Bald Head
baldbeardhead1Bald & Beard
baldgoateehead1Bald & Goatee
baldtashhead1Bald & Stash
beardhead1Cesar & Beard
cornrowscornrows1Cornrow
cornrowsbcornrows1Blonde Cornrow
elvishairelvishair1Elvis Hair
flattopflattop1FlatTop
goateehead1Cesar & Goatee
groovecutgroovecut1Groove Cut
hairblondhead1Blonde Hair
hairbluehead1Blue Hair
hairgreenhead1Green Hair
hairpinkhead1Pink Hair
hairredHead1Red Hair
highafrohighafro1High Afro
highfadehead1High Fade
jhericurljheri1Jheri Curl
mohawkmohawk1Mowhawk
mohawkbeardmohawk1Mohawk & Beard
mohawkblondmohawk1Blonde Mowhawk
mohawkpinkmohawk1Pink Mowhawk
player_facehead1Cesar
slopeslope1Slope
tashhead1Cesar & Stash
tramlinetramline1Detail Cut
wedgewedge1Wedge
+|Texture|Model|[Body part](player-body-parts.html)|Description| +|-| +|afro|afro|1|Afro| +|afrobeard|afro|1|Afro & Beard| +|afroblond|afro|1|Blonde Afro| +|afrogoatee|afro|1|Afro & Goatee| +|afrotash|afro|1|Afro & Stash| +|bald|head|1|Bald Head| +|baldbeard|head|1|Bald & Beard| +|baldgoatee|head|1|Bald & Goatee| +|baldtash|head|1|Bald & Stash| +|beard|head|1|Cesar & Beard| +|cornrows|cornrows|1|Cornrow| +|cornrowsb|cornrows|1|Blonde Cornrow| +|elvishair|elvishair|1|Elvis Hair| +|flattop|flattop|1|FlatTop| +|goatee|head|1|Cesar & Goatee| +|groovecut|groovecut|1|Groove Cut| +|hairblond|head|1|Blonde Hair| +|hairblue|head|1|Blue Hair| +|hairgreen|head|1|Green Hair| +|hairpink|head|1|Pink Hair| +|hairred|Head|1|Red Hair| +|highafro|highafro|1|High Afro| +|highfade|head|1|High Fade| +|jhericurl|jheri|1|Jheri Curl| +|mohawk|mohawk|1|Mowhawk| +|mohawkbeard|mohawk|1|Mohawk & Beard| +|mohawkblond|mohawk|1|Blonde Mowhawk| +|mohawkpink|mohawk|1|Pink Mowhawk| +|player_face|head|1|Cesar| +|slope|slope|1|Slope| +|tash|head|1|Cesar & Stash| +|tramline|tramline|1|Detail Cut| +|wedge|wedge|1|Wedge| \ No newline at end of file diff --git a/en/scm-documentation/sa/interiors.html b/en/scm-documentation/sa/interiors.html index 29e9d1f..9929d58 100644 --- a/en/scm-documentation/sa/interiors.html +++ b/en/scm-documentation/sa/interiors.html @@ -8,711 +8,146 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NumberNameDescription
1ABATOIRSindacco Abattoir
1AMMUN1Ammu-Nation
1CARMOD1TransFender
1FDREST1World of Coq
1GF1Denise's
1JETINTShamal interior
1LACS1Sub Urban
1LAHS1BHouse
1MAFCASCaligulas Casino
1MAFCAS2Penthouse Suites
1-Saint Mark's
1SMASHTVWarehouse
1-Stadium with wooden sandbox
1SVVGHO1Hotel Suite
1SWEETSSweet's House
1-Trailer
1TSDINERTruck Stop
1WUZIBETWu Zi Mu's
2BARBERSBarber
2BDUPS1B Dup's Crack Palace
2CARMOD2Loco Low Co.
2CARTERSmokes Crack Palace
2GF2Katie's
2LAHS1AHouse
2LASTRIPStrip Club
2RYDERSRyder's Place
2SVVGHO2Hotel Suite
2VGHSB1House
2VGHSB3House
3BARBER2Barber
3BDUPSB Dup's apartment
3BIKESCHBike School
3BROTHL1Whore House
3CARLSThe Johnson House
3CARMOD3Wheel Arch Angels
3CHANGERWardrobe
3CSSPRTPro-Laps
3DRIVESDriving School
3DRIVES2Driving School
3GENOTBInside Track Betting
3GF3Helena's
3LAHSB4House
3OGLOCSOG Loc's
3PAPERPlanning Department
3PDOMESThe Pleasure Domes
3PDOMES2The Pleasure Domes
3POLICE3LVPD HQ
3SEXSHOPSex Shop
3S1TESTMiddle of nowhere
3STRIP2Strip Club
3STUDIOBlastin' Fools Records studio
3TATTO3Tattoo Parlor
4AMMUN2Ammu-Nation
4DINER1Diner
4DIRBIKEDirt Stadium
4GF4Michelle's
4LAHS2AHouse
4LAHSS6House
4SFHSM2House
4X711S224-7
5CSDESGNVictim
5DINER2Diner
5FDPIZAPizza Stack
5GANGVagos Gang House
5GF5Barbara's
5GYM1Ganton Gym
5LACRAKCrack Den
5LAHSB3House
5MADDOGSMadd Dogg's Crib
5MDDOGSMadd Dogg's Crib
5SFHSB1House
5SVHOT1Hotel Suite
5VGHSM2House
6AMMUN3Ammu-Nation
6AMMUN5Ammu-Nation
6BROTHELWhore House
6GF6Millie's
6GYM2Cobra Marital Arts
6LAHSB1House
6POLICE1LSPD HQ
6RCPLAYZero's RC Shop
6REST2Secret Valley
6SFHSB2House
6SFHSS2House
6SVCUNTSafe House
6SVSFSMSafe House
6X7_11S24-7
78TRACK8-Track Stadium
7AMMUN4Ammu-Nation
7GYM3Below the Belt Gym
7LAHSB2House
7OFTESTMiddle of nowhere
8BURHOUSColonel Fuhrberger's
8SFHSS1House
8SVLAMDSafe House
9FDCHICKCluckin' Bell
9LAHS2BHouse
9SFHSB3House
9SVGNMT2Motel room
9SVVGMDSafe House
10DESHOUSAbandoned AC tower
10FDBURGBurger Shot
10POLICE2SFPD HQ
10SVGNMT1Motel room
10TRICASThe Four Dragon's
10-The Four Dragon's Casino's maintenance room
10SVSFMDSafe House
10VGHSM3House
10X711S324-7
10-Zero's No Man's Land
11BAR2Bar
11SVLASMSafe House
12BARBER3Barber
12MOROOMMotel room
12SVLABIGSafe House
14CSEXLDidier Sachs
14AIRPOR2Los Santos International Airport
14AIRPORTFrancis Intl. Airport
15CSCHPBinco
15MOTEL1Jefferson Motel
15SFHSM1House
15VGHSS1House
15VGSHM2House
15VGSHM3House
15VGSHS2House
16-Stadium with giant round circular raised platform in middle
16TATTOOTattoo Parlor
16X7_11C24-7
17BAR1Bar
17DAMINGenerator Hall
17FDDONUTRusty Brown's
17TATTO2Tattoo Parlor
17X7_11D24-7
18ATRIUMEAtrium
18ATRIUMXAttrium
18CLOTHGPZip
18GENWRHSWarehouse
18UFOBARLil' Probe Inn
18X7_11B24-7
+|Description|ID|GXT| +|-| +|Sindacco Abattoir|1|ABATOIR| +|Ammu-Nation|1|AMMUN1| +|TransFender|1|CARMOD1| +|World of Coq|1|FDREST1| +|Denise's|1|GF1| +|Shamal interior|1|JETINT| +|Sub Urban|1|LACS1| +|House|1|LAHS1B| +|Caligulas Casino|1|MAFCAS| +|Penthouse Suites|1|MAFCAS2| +|Saint Mark's|1|\s| +|Warehouse|1|SMASHTV| +|Stadium with wooden sandbox|1|\s| +|Hotel Suite|1|SVVGHO1| +|Sweet's House|1|SWEETS| +|Trailer|1|\s| +|Truck Stop|1|TSDINER| +|Wu Zi Mu's|1|WUZIBET| +|Barber|2|BARBERS| +|B Dup's Crack Palace|2|BDUPS1| +|Loco Low Co.|2|CARMOD2| +|Smokes Crack Palace|2|CARTER| +|Katie's|2|GF2| +|House|2|LAHS1A| +|Strip Club|2|LASTRIP| +|Ryder's Place|2|RYDERS| +|Hotel Suite|2|SVVGHO2| +|House|2|VGHSB1| +|House|2|VGHSB3| +|Barber|3|BARBER2| +|B Dup's apartment|3|BDUPS| +|Bike School|3|BIKESCH| +|Whore House|3|BROTHL1| +|The Johnson House|3|CARLS| +|Wheel Arch Angels|3|CARMOD3| +|Wardrobe|3|CHANGER| +|Pro-Laps|3|CSSPRT| +|Driving School|3|DRIVES| +|Driving School|3|DRIVES2| +|Inside Track Betting|3|GENOTB| +|Helena's|3|GF3| +|House|3|LAHSB4| +|OG Loc's|3|OGLOCS| +|Planning Department|3|PAPER| +|The Pleasure Domes|3|PDOMES| +|The Pleasure Domes|3|PDOMES2| +|LVPD HQ|3|POLICE3| +|Sex Shop|3|SEXSHOP| +|Middle of nowhere|3|S1TEST| +|Strip Club|3|STRIP2| +|Blastin' Fools Records studio|3|STUDIO| +|Tattoo Parlor|3|TATTO3| +|Ammu-Nation|4|AMMUN2| +|Diner|4|DINER1| +|Dirt Stadium|4|DIRBIKE| +|Michelle's|4|GF4| +|House|4|LAHS2A| +|House|4|LAHSS6| +|House|4|SFHSM2| +|24-7|4|X711S2| +|Victim|5|CSDESGN| +|Diner|5|DINER2| +|Pizza Stack|5|FDPIZA| +|Vagos Gang House|5|GANG| +|Barbara's|5|GF5| +|Ganton Gym|5|GYM1| +|Crack Den|5|LACRAK| +|House|5|LAHSB3| +|Madd Dogg's Crib|5|MADDOGS| +|Madd Dogg's Crib|5|MDDOGS| +|House|5|SFHSB1| +|Hotel Suite|5|SVHOT1| +|House|5|VGHSM2| +|Ammu-Nation|6|AMMUN3| +|Ammu-Nation|6|AMMUN5| +|Whore House|6|BROTHEL| +|Millie's|6|GF6| +|Cobra Marital Arts|6|GYM2| +|House|6|LAHSB1| +|LSPD HQ|6|POLICE1| +|Zero's RC Shop|6|RCPLAY| +|Secret Valley|6|REST2| +|House|6|SFHSB2| +|House|6|SFHSS2| +|Safe House|6|SVCUNT| +|Safe House|6|SVSFSM| +|24-7|6|X7_11S| +|8-Track Stadium|7|8TRACK| +|Ammu-Nation|7|AMMUN4| +|Below the Belt Gym|7|GYM3| +|House|7|LAHSB2| +|Middle of nowhere|7|OFTEST| +|Colonel Fuhrberger's|8|BURHOUS| +|House|8|SFHSS1| +|Safe House|8|SVLAMD| +|Cluckin' Bell|9|FDCHICK| +|House|9|LAHS2B| +|House|9|SFHSB3| +|Motel room|9|SVGNMT2| +|Safe House|9|SVVGMD| +|Abandoned AC tower|10|DESHOUS| +|Burger Shot|10|FDBURG| +|SFPD HQ|10|POLICE2| +|Motel room|10|SVGNMT1| +|The Four Dragon's|10|TRICAS| +|The Four Dragon's Casino's maintenance room|10|\s| +|Safe House|10|SVSFMD| +|House|10|VGHSM3| +|24-7|10|X711S3| +|Zero's No Man's Land|10|\s| +|Bar|11|BAR2| +|Safe House|11|SVLASM| +|Barber|12|BARBER3| +|Motel room|12|MOROOM| +|Safe House|12|SVLABIG| +|Didier Sachs|14|CSEXL| +|Los Santos International Airport|14|AIRPOR2| +|Francis Intl. Airport|14|AIRPORT| +|Binco|15|CSCHP| +|Jefferson Motel|15|MOTEL1| +|House|15|SFHSM1| +|House|15|VGHSS1| +|House|15|VGSHM2| +|House|15|VGSHM3| +|House|15|VGSHS2| +|Stadium with giant round circular raised platform in middle|16|\s| +|Tattoo Parlor|16|TATTOO| +|24-7|16|X7_11C| +|Bar|17|BAR1| +|Generator Hall|17|DAMIN| +|Rusty Brown's|17|FDDONUT| +|Tattoo Parlor|17|TATTO2| +|24-7|17|X7_11D| +|Atrium|18|ATRIUME| +|Attrium|18|ATRIUMX| +|Zip|18|CLOTHGP| +|Warehouse|18|GENWRHS| +|Lil' Probe Inn|18|UFOBAR| +|24-7|18|X7_11B| \ No newline at end of file diff --git a/en/scm-documentation/sa/particles.html b/en/scm-documentation/sa/particles.html index 878724e..9eb167a 100644 --- a/en/scm-documentation/sa/particles.html +++ b/en/scm-documentation/sa/particles.html @@ -11,106 +11,88 @@ ```sb3 064B: 0@ = create_particle <id> at X Y Z type 1 ``` - - - - - - - - - -
DescriptionID
- - \ No newline at end of file +|Description|ID| +|-| +|bloody explosion|blood_heli| +|a surf|boat_prop| +|small flare|camflash| +|steam, as on a carwash|carwashspray| +|cement|cement| +|fast clouds|cloudfast| +|puff of a coke|coke_puff| +|a pouring water|coke_trail| +|a smoke from a cigarette|cigarette_smoke| +|explosion and splinters of a box|explosion_barrel| +|explosion and splinters of the large box|explosion_crate| +|a smoke with sparks|explosion_door| +|a small smoke|exhale| +|explosion, as from the machine|explosion_fuel_car| +|the large explosion|explosion_large| +|average explosion|explosion_medium| +|explosion, as from a movotov cocktail|explosion_molotov| +|small explosion|explosion_small| +|very small explosion|explosion_tiny| +|foam of the fire extinguisher|extinguisher| +|small fire|flame| +|fire|fire| +|average fire|fire_med| +|large fire|fire_large| +|fire of the flamethrower|flamethrower| +|fire, as from a burning motorcycle|fire_bike| +|fire, as from the burning machine|fire_car| +|as the bullet from a trunk takes off|gunflash| +|a smoke from a gun|gunsmoke| +|insects|insects| +|a dust, as from the helicopter|heli_dust| +|a jetpack's fire|jetpack| +|fire from the muffler of the machine, as during use of nitrogen|jetthrust| +|nitro|nitro| +|fire from a Molotov Cocktail|molotov_flame| +|smoke from damaged car|overheat_car| +|wrecked electro-machine|overheat_car_electric| +|foam|prt_boatsplash| +|splinters from a box|prt_cardebris| +|a dense white smoke|prt_collisionsmoke| +|a crashing glass|prt_glass| +|shells|prt_gunshell| +|sand, which was scattered|prt_sand| +|there is less sand, than in previous animation|prt_sand2| +|- a grey smoke|prt_smokeII_3_expand| +|there is a lot of grey smoke|prt_smoke_huge| +|of a spark|prt_spark| +|the large sparks|prt_spark_2| +|burst|prt_splash| +|a wave|prt_wake| +|sparks|prt_watersplash| +|sparks from wheels of the car|prt_wheeldirt| +|a jet|petrolcan| +|belch|puke| +|there is a lot of smoke|riot_smoke| +|spray|spraycan| +|a smoke|smoke30lit| +|a rich smoke|smoke30m| +|more richer smoke|smoke50lit| +|fireworks|shootlight| +|fireworks|smoke_flare| +|a shot from the tank|tank_fire| +|gas, as from gas grenade|teargas| +|gas, as from small gas grenade|teargasAD| +|leaf falling|tree_hit_fir| +|falling of pair large leafs|tree_hit_palm| +|slowly dissipating a smoke|vent| +|practically too most|vent2| +|the large flow of water|water_hydrant| +|circles on water|water_ripples| +|the large sparks from water|water_speed| +|small sparks from water|water_splash| +|average sparks|water_splash_big| +|sparks, only them it is not visible almost|water_splsh_sml| +|small sparks at navigation|water_swim| +|there is a lot of pair|waterfall_end| +|the large flow of water|water_fnt_tme| +|water of a fountain|water_fountain| +|a disappearing heap pair|wallbust| +|smoke|WS_factorysmoke| + + \ No newline at end of file diff --git a/en/scm-documentation/sa/pedtypes.html b/en/scm-documentation/sa/pedtypes.html index d66c43b..a17a3a9 100644 --- a/en/scm-documentation/sa/pedtypes.html +++ b/en/scm-documentation/sa/pedtypes.html @@ -8,148 +8,43 @@ - ```sb3 009A: $Actor = create_actor <type> #MODEL at X Y Z ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TypeDescription
0PLAYER1
1PLAYER2
2PLAYER_NETWORK
3PLAYER_UNUSED
4CIVMALE
5CIVFEMALE
6COP
7GANG1 (Ballas)
8GANG2 (Grove Street Families)
9GANG3 (Los Santos Vagos)
10GANG4 (San Fierro Rifa)
11GANG5 (Da Nang Boys)
12GANG6 (Mafia)
13GANG7 (Mountain Cloud Triad)
14GANG8 (Varrio Los Aztecas)
15GANG9 (unused)
16GANG10 (unused)
17DEALER
18MEDIC
19FIREMAN
20CRIMINAL
21BUM*
22PROSTITUTE
23SPECIAL
24MISSION1
25MISSION2
26MISSION3
27MISSION4
28MISSION5
29MISSION6
30MISSION7
31MISSION8
+|Type|Description| +|-| +|0|PLAYER1| +|1|PLAYER2| +|2|PLAYER_NETWORK| +|3|PLAYER_UNUSED| +|4|CIVMALE| +|5|CIVFEMALE| +|6|COP| +|7|GANG1 (Ballas)| +|8|GANG2 (Grove Street Families)| +|9|GANG3 (Los Santos Vagos)| +|10|GANG4 (San Fierro Rifa)| +|11|GANG5 (Da Nang Boys)| +|12|GANG6 (Mafia)| +|13|GANG7 (Mountain Cloud Triad)| +|14|GANG8 (Varrio Los Aztecas)| +|15|GANG9 (unused)| +|16|GANG10 (unused)| +|17|DEALER| +|18|MEDIC| +|19|FIREMAN| +|20|CRIMINAL| +|21|BUM*| +|22|PROSTITUTE| +|23|SPECIAL| +|24|MISSION1| +|25|MISSION2| +|26|MISSION3| +|27|MISSION4| +|28|MISSION5| +|29|MISSION6| +|30|MISSION7| +|31|MISSION8| \ No newline at end of file diff --git a/en/scm-documentation/sa/player-body-parts.html b/en/scm-documentation/sa/player-body-parts.html index 1e81d9c..95358ce 100644 --- a/en/scm-documentation/sa/player-body-parts.html +++ b/en/scm-documentation/sa/player-body-parts.html @@ -8,92 +8,29 @@ - ```sb3 087B: set_player $PLAYER_CHAR texture "VEST" model "VEST" body_part <id> ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDDescription
0[Torso](clothes.md#torso)
1[Head](haircuts.md)
2[Legs](clothes.md#legs)
3[Shoes](clothes.md#legs)
4[Lower left arm](tattoos.md#lower-left-arm)
5[Upper left arm](tattoos.md#upper-left-arm)
6[Upper right arm](tattoos.md#upper-right-arm)
7[Lower right arm](tattoos.md#lower-right-arm)
8[Back top](tattoos.md#back-top)
9[Left chest](tattoos.md#left-chest)
10[Right chest](tattoos.md#right-chest)
11[Stomach](tattoos.md#stomach)
12[Lower back](tattoos.md#lower-back)
13[Necklace](clothes.md#necklaces)
14[Bracelet/Watch](clothes.md#watches)
15[Glasses](clothes.md#glasses)
16[Hats](clothes.md#hats)
17[Special clothes as Valet, Gimp suit](clothes.md#special)
+|ID|Description| +|-| +|0|[Torso](clothes.md#torso)| +|1|[Head](haircuts.md)| +|2|[Legs](clothes.md#legs)| +|3|[Shoes](clothes.md#legs)| +|4|[Lower left arm](tattoos.md#lower-left-arm)| +|5|[Upper left arm](tattoos.md#upper-left-arm)| +|6|[Upper right arm](tattoos.md#upper-right-arm)| +|7|[Lower right arm](tattoos.md#lower-right-arm)| +|8|[Back top](tattoos.md#back-top)| +|9|[Left chest](tattoos.md#left-chest)| +|10|[Right chest](tattoos.md#right-chest)| +|11|[Stomach](tattoos.md#stomach)| +|12|[Lower back](tattoos.md#lower-back)| +|13|[Necklace](clothes.md#necklaces)| +|14|[Bracelet/Watch](clothes.md#watches)| +|15|[Glasses](clothes.md#glasses)| +|16|[Hats](clothes.md#hats)| +|17|[Special clothes as Valet, Gimp suit](clothes.md#special)| \ No newline at end of file diff --git a/en/scm-documentation/sa/radar-icons.html b/en/scm-documentation/sa/radar-icons.html index 211ce49..523be56 100644 --- a/en/scm-documentation/sa/radar-icons.html +++ b/en/scm-documentation/sa/radar-icons.html @@ -11,94 +11,71 @@ ```sb3 02A7: 0@ = create_icon_marker_and_sphere <ID> at 892.75 -425.75 13.875 ``` - - - - - - - - - - -
DescriptionIDGUIGXT
+|Description|ID|GUI|GXT| +|-| +|small yellow square|0|![](%sa-r/icon0.gif)|LG_50| +|Friend|1|![](%sa-r/icon1.gif)|LG_54| +|Player position|2|![](%sa-r/icon2.gif)|LG_01| +|Arrow (Menu-card)|3|![](%sa-r/icon3.gif)|LG_64| +|North|4|![](%sa-r/icon4.gif)|\s| +|Airport|5|![](%sa-r/icon5.gif)|LG_02| +|Ammu Nation|6|![](%sa-r/icon6.gif)|LG_03| +|Barber|7|![](%sa-r/icon7.gif)|LG_04| +|Big Smoke|8|![](%sa-r/icon8.gif)|LG_05| +|Docks|9|![](%sa-r/icon9.gif)|LG_06| +|Burger Shot|10|![](%sa-r/icon10.gif)|LG_07| +|Bulldozer|11|![](%sa-r/icon11.gif)|LG_66| +|Catalina|12|![](%sa-r/icon12.gif)|LG_08| +|Cesar Viapando|13|![](%sa-r/icon13.gif)|LG_10| +|Chicken|14|![](%sa-r/icon14.gif)|LG_11| +|Carl Johnson|15|![](%sa-r/icon15.gif)|LG_12| +|Crash|16|![](%sa-r/icon16.gif)|LG_13| +|Dinner|17|![](%sa-r/icon17.gif)|LG_67| +|Emmet|18|![](%sa-r/icon18.gif)|LG_15| +|Enemy attack|19|![](%sa-r/icon19.gif)|LG_16| +|Fire|20|![](%sa-r/icon20.gif)|LG_17| +|Girl Friend|21|![](%sa-r/icon21.gif)|LG_18| +|Hospital|22|![](%sa-r/icon22.gif)|LG_19| +|Loco Syndicate|23|![](%sa-r/icon23.gif)|LG_20| +|Maddog|24|![](%sa-r/icon24.gif)|LG_21| +|Mafia|25|![](%sa-r/icon25.gif)|LG_22| +|MC Strap|26|![](%sa-r/icon26.gif)|LG_23| +|Tuning Shop|27|![](%sa-r/icon27.gif)|LG_24| +|OG Loc|28|![](%sa-r/icon28.gif)|LG_25| +|Pizza|29|![](%sa-r/icon29.gif)|LG_26| +|Police|30|![](%sa-r/icon30.gif)|LG_27| +|Asset green|31|![](%sa-r/icon31.gif)|LG_28| +|Asset red|32|![](%sa-r/icon32.gif)|LG_29| +|Race|33|![](%sa-r/icon33.gif)|LG_30| +|Ryder|34|![](%sa-r/icon34.gif)|LG_31| +|Savepoint|35|![](%sa-r/icon35.gif)|LG_32| +|School|36|![](%sa-r/icon36.gif)|LG_33| +|Unknown|37|![](%sa-r/icon37.gif)|LG_63| +|Sweet|38|![](%sa-r/icon38.gif)|LG_35| +|Tattoo|39|![](%sa-r/icon39.gif)|LG_36| +|The Truth|40|![](%sa-r/icon40.gif)|LG_37| +|Player target|41|![](%sa-r/icon41.gif)|LG_38| +|Toreno Ranch|42|![](%sa-r/icon42.gif)|LG_39| +|Triads|43|![](%sa-r/icon43.gif)|LG_40| +|Triads Casino|44|![](%sa-r/icon44.gif)|LG_41| +|Clothes|45|![](%sa-r/icon45.gif)|LG_42| +|Woozie|46|![](%sa-r/icon46.gif)|LG_43| +|Zero|47|![](%sa-r/icon47.gif)|LG_44| +|Disco|48|![](%sa-r/icon48.gif)|LG_45| +|Bar|49|![](%sa-r/icon49.gif)|LG_46| +|Restaurant|50|![](%sa-r/icon50.gif)|LG_47| +|Truck|51|![](%sa-r/icon51.gif)|LG_48| +|Robbery|52|![](%sa-r/icon52.gif)|LG_51| +|Race|53|![](%sa-r/icon53.gif)|LG_52| +|Gym|54|![](%sa-r/icon54.gif)|LG_53| +|Car|55|![](%sa-r/icon55.gif)|LG_57| +|Light|56|![](%sa-r/icon56.gif)|\s| +|Nearest air strip|57|![](%sa-r/icon57.gif)|LG_65| +|Varrios Los Aztecas Gang|58|![](%sa-r/icon58.gif)|LG_58| +|Ballas Gang|59|![](%sa-r/icon59.gif)|LG_59| +|Los Santos Vagos Gang|60|![](%sa-r/icon60.gif)|LG_60| +|San Fierro Rifa Gang|61|![](%sa-r/icon61.gif)|LG_61| +|Grove Gang|62|![](%sa-r/icon62.gif)|LG_62| +|Pay'n Spray|63|![](%sa-r/icon63.gif)|LG_34| - - - \ No newline at end of file + \ No newline at end of file diff --git a/en/scm-documentation/sa/special-actors.html b/en/scm-documentation/sa/special-actors.html index 67ee563..4cda938 100644 --- a/en/scm-documentation/sa/special-actors.html +++ b/en/scm-documentation/sa/special-actors.html @@ -8,203 +8,54 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDDescription
ANDREAndre
BBTHINBig Bear (thin)
BBBig Bear (fat)
CATCatalina
CESARCesar
COPGRL1The naked girl 1
COPGRL2Girl 1
CLAUDEClaude from GTA3
CROGRL1The naked girl 2
CROGRL2Girl 2
DWAYNEDwayne
EMMETEmmet
FORELLIForelli
JANITORmechanic
JETHROJethro
JIZZYJizzy
HERNHernandes
GANGRL1The naked girl 3
GANGRL2Girl 3
GUNGRL1The naked girl 4
GUNGRL2Girl 4
KENDLKendel
MACCERMaccer
MADDOGGMad Dog
MECGRL1The naked girl 5
MECGRL2Girl 5
NURGRL1The naked nurse
NURGRL2nurse
NURGRL2nurse
OGLOCOG Loc
PAULKent Paul
PULASKIPulaski
ROSEKen Rosenberg
RYDER1Ryder (1)
RYDER2Ryder (2)
RYDER3Ryder (3)
SINDACOSindaco
SMOKEBig Smoke
SMOKEVwith body armour
SUZIESuzie
SWEETSweet
TBONET Bone
TENPENTenpeni
TORINOTorino
TRUTHrighteous man
WUZIMUWu Zi
ZEROZero
+|ID|Description| +|-| +|ANDRE|Andre| +|BBTHIN|Big Bear (thin)| +|BB|Big Bear (fat)| +|CAT|Catalina| +|CESAR|Cesar| +|COPGRL1|The naked girl 1| +|COPGRL2|Girl 1| +|CLAUDE|Claude from GTA3| +|CROGRL1|The naked girl 2| +|CROGRL2|Girl 2| +|DWAYNE|Dwayne| +|EMMET|Emmet| +|FORELLI|Forelli| +|JANITOR|mechanic| +|JETHRO|Jethro| +|JIZZY|Jizzy| +|HERN|Hernandes| +|GANGRL1|The naked girl 3| +|GANGRL2|Girl 3| +|GUNGRL1|The naked girl 4| +|GUNGRL2|Girl 4| +|KENDL|Kendel| +|MACCER|Maccer| +|MADDOGG|Mad Dog| +|MECGRL1|The naked girl 5| +|MECGRL2|Girl 5| +|NURGRL1|The naked nurse| +|NURGRL2|nurse| +|NURGRL2|nurse| +|OGLOC|OG Loc| +|PAUL|Kent Paul| +|PULASKI|Pulaski| +|ROSE|Ken Rosenberg| +|RYDER1|Ryder (1)| +|RYDER2|Ryder (2)| +|RYDER3|Ryder (3)| +|SINDACO|Sindaco| +|SMOKE|Big Smoke| +|SMOKEV|with body armour| +|SUZIE|Suzie| +|SWEET|Sweet| +|TBONE|T Bone| +|TENPEN|Tenpeni| +|TORINO|Torino| +|TRUTH|righteous man| +|WUZIMU|Wu Zi| +|ZERO|Zero| \ No newline at end of file diff --git a/en/scm-documentation/sa/stats.html b/en/scm-documentation/sa/stats.html index 7b0653e..693b662 100644 --- a/en/scm-documentation/sa/stats.html +++ b/en/scm-documentation/sa/stats.html @@ -8,1242 +8,315 @@ - `0` to `81` - floating-point values; `82+` - integer values. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDDescription
0Progress made
1Total progress
2Furthest Hoop
3Distance travelled on foot
4Distance travelled by car
5Distance travelled by motorbike
6Distance travelled by boat
7Distance travelled by golf cart
8Distance travelled by helicopter
9Distance travelled by plane
10Longest Wheelie distance
11Longest Stoppie distance
12Longest 2 wheels distance
13Weapon Budget
14Fashion Budget
15Property Budget
16Auto Repair and Painting Budget
17Longest Wheelie time
18Longest Stoppie time
19Longest 2 wheels time
20Food Budget
21Fat
22Stamina
23Muscle
24Max Health
25Sex appeal
26Distance travelled by swimming
27Distance travelled by bicycle
28Distance travelled on treadmill
29Distance travelled on exercise bike
30Tattoo budget
31Hairdressing budget
32Girlfriend budget
33Prostitute budget
34Furniture budget
35Money spent gambling
36Money made from pimping
37Money won gambling
38Biggest gambling win
39Biggest gambling loss
40Largest burglary swag
41Money made from burglary
42Money spent building property
43unused
44Longest treadmill time
45Longest exercise bike time
46Heaviest weight on bench press
47Heaviest weight on dumbbells
48Best time in 8-Track
49BMX best time
50Lightest weight
51Longest chase time with 5 or more stars
52Last chase time with 5 or more stars
53Wage bill
54Strip club budget
55Car modification budget
56Time spent shopping
57Time spent gambling
58Time spent on longest mission
59Time spent on quickest mission
60Average mission time
61Drugs budget
62Total shopping budget
63Time spent underwater
64Total respect
65Girlfriend respect
66Clothes respect
67Fitness respect
68Respect
69Pistol Skill
70Silenced Pistol Skill
71Desert Eagle Skill
72Shotgun Skill
73Sawn-Off Shotgun Skill
74Combat Shotgun Skill
75Machine Pistol Skill
76SMG Skill
77AK-47 Skill
78M4 Skill
79Rifle Skill
80Appearance
81Gambling
82119 unused
120People wasted by others
121People you've wasted
122Road Vehicles destroyed
123Boats destroyed
124Planes & Helicopters destroyed
125Cost of property damaged
126Bullets fired
127Kgs of explosives used
128Bullets that hit
129Tires popped with gunfire
130Number of headshots
131Total number of wanted stars attained
132Total number of wanted stars evaded
133Times busted
134Days passed in game
135Number of hospital visits
136Safehouse visits
137Times cheated
138Vehicle Resprays
139Maximum INSANE Jump distance
140Maximum INSANE Jump height
141Maximum INSANE Jump flips
142Maximum INSANE Jump rotation
143Best INSANE stunt awarded
144Unique Jumps found
145Unique Jumps done
146Mission attempts
147Missions passed
148Total number of missions in game
149Cash made in a Taxi
150Passengers dropped off
151People saved in an Ambulance
152Criminals killed on Vigilante Mission
153Total fires extinguished
154Packages Delivered
155Assassinations
156Last dance score
157Highest Vigilante Mission level
158Highest Paramedic Mission level
159Highest Firefighter Mission level
160Driving skill
161Number of Truck missions passed
162Money made in Truck
163Recruited gang members killed
164Armor
165Energy
166Photographs Taken
167Rampages attempted
168Rampages passed
169Flight time
170Times drowned
171Number of girls pimped
172Best position in 8-Track
173Time on jetpack
174Shooting range levels passed
175Most cars parked on 'Valet Parking'
176Kills since last checkpoint
177Total legitimate kills
178Number of 'Bloodring' kills
179Total time in bloodring
180No more hurricanes Flag
181City unlocked
182Number of Police bribes
183Number of cars stolen
184Current number of girlfriends
185Number of disastrous dates
186Number of girls dated
187Number of times scored with a girl
188Number of successful dates
189Number of girls dumped
190Number of prostitutes visited
191Number of houses burgled
192Number of safes cracked
193Burgular status
194Number of stolen items sold
195Number of eight balls in pool
196Total number of wins playing pool
197Total number of losses playing pool
198Times visited the gym
199Body type
200Number of meals eaten
201Money made in Quarry
202Time taken to Complete Quarry
203Number of furniture purchased
204Favorite console game
205Highest civilian peds killed on Rampage
206Highest police peds killed on Rampage
207Highest civilian vehicles destroyed on Rampage
208Highest police vehicles destroyed on Rampage
209Highest number of tanks destroyed on Rampage
210Pimping level
211Kickstart best score
212Best lap time in 8-Track
213Number of vehicles exported
214Number of vehicles imported
215Highest basketball score
216Fires started
217Amount of drugs sold
218Amount of drugs bought
219Best lap time in dirt track
220Best time in dirt track
221Best position in dirt track
222NRG-500 best time
223Flying skill
224Respect Mission
225Lung capacity
226Game gore rating
227Game sex rating
228Respect Mission Total
229Bike skill
230Cycling skill
231Snapshots taken
232Total snapshots
233Luck
234Territories taken over
235Territories lost
236Territories held
237Highest number of territories held
238Gang members recruited
239Enemy gang members killed
240Friendly gang members killed
241Horseshoes collected
242Total horseshoes
243Oysters collected
244Total oysters
245Calories
2462 Player Rampage best time
2472 Player Car Rampage best time
2482 Player On Foot Rampage best time
2492 Player Chopper Rampage best time
2502 Player Bike Rampage best time
251'Keepie Uppy' best time
252Progress with Denise
253Progress with Michelle
254Progress with Helena
255Progress with Barbara
256Progress with Katie
257Progress with Millie
258Best position in Lowrider Race
259Best time in Lowrider Race
260Best position in Little Loop
261Best time in Little Loop
262Best position in Backroad Wanderer
263Best time in Backroad Wanderer
264Best position in City Circuit
265Best time in City Circuit
266Best position in Vinewood
267Best time in Vinewood
268Best position in Freeway
269Best time in Freeway
270Best position in Into the Country
271Best time in Into the Country
272Best position in Badlands A
273Best time in Badlands A
274Best position in Badlands B
275Best time in Badlands B
276Best position in Dirtbike Danger
277Best time in Dirtbike Danger
278Best position in Bandito County
279Best time in Bandito County
280Best position in Go-Go-Kart
281Best time in Go-Go-Kart
282Best position in San Fierro Fastlane
283Best time in San Fierro Fastlane
284Best position in San Fierro Hills
285Best time in San Fierro Hills
286Best position in Country Endurance
287Best time in Country Endurance
288Best position in SF to LV
289Best time in SF to LV
290Best position in Dam Rider
291Best time in Dam Rider
292Best position in Desert Tricks
293Best time in Desert Tricks
294Best position in LV Ringroad
295Best time in LV Ringroad
296Best time in World War Aces
297Best time in Barnstorming
298Best time in Military Service
299Best time in Chopper Checkpoint
300Best time in Whirly Bird Waypoint
301Best time in Heli Hell
302Drive-thru mission accomplished
303Management Issues mission accomplished
304555 WE TIP mission accomplished
305Yay Ka-Boom-Boom mission accomplished
306Fish in a Barrel mission accomplished
307Breaking the Bank at Caligula's mission accomplished
308A Home In The Hills mission accomplished
309maybe set riot mode
310Ryder's mission Robbing Uncle Sam accomplished
311Mike Toreno mission accomplished
312Architectural Espionage mission accomplished
313Jizzy mission accomplished
314Reuniting the Families mission accomplished
315Small Town Bank mission accomplished
316Photo Opportunity mission accomplished
317Don Peyote mission accomplished
318Local Liquor Store mission accomplished
319Badlands mission accomplished
320Playing time
321Hidden Packages found
322Tags sprayed
323Least favorite gang
324Gang members wasted
325Criminals wasted
326Most Favorite Radio Station
327Least Favorite Radio Station
328Current weapon skill
329Weapon skill levels
330Pilot ranking
331Strongest Gang
3322nd strongest gang
3333rd strongest gang
334Money lost gambling
335Riot Mission accomplished
336Gang strength
337Territory under control
338Are you going to San Fierro? mission accomplished
339High Noon mission accomplished
340The Green Sabre mission accomplished
341maybe Catalina meeting
342maybe Wu Zi meeting
+|ID|Description| +|-| +|0|Progress made| +|1|Total progress| +|2|Furthest Hoop| +|3|Distance travelled on foot| +|4|Distance travelled by car| +|5|Distance travelled by motorbike| +|6|Distance travelled by boat| +|7|Distance travelled by golf cart| +|8|Distance travelled by helicopter| +|9|Distance travelled by plane| +|10|Longest Wheelie distance| +|11|Longest Stoppie distance| +|12|Longest 2 wheels distance| +|13|Weapon Budget| +|14|Fashion Budget| +|15|Property Budget| +|16|Auto Repair and Painting Budget| +|17|Longest Wheelie time| +|18|Longest Stoppie time| +|19|Longest 2 wheels time| +|20|Food Budget| +|21|Fat| +|22|Stamina| +|23|Muscle| +|24|Max Health| +|25|Sex appeal| +|26|Distance travelled by swimming| +|27|Distance travelled by bicycle| +|28|Distance travelled on treadmill| +|29|Distance travelled on exercise bike| +|30|Tattoo budget| +|31|Hairdressing budget| +|32|Girlfriend budget| +|33|Prostitute budget| +|34|Furniture budget| +|35|Money spent gambling| +|36|Money made from pimping| +|37|Money won gambling| +|38|Biggest gambling win| +|39|Biggest gambling loss| +|40|Largest burglary swag| +|41|Money made from burglary| +|42|Money spent building property| +|43|unused| +|44|Longest treadmill time| +|45|Longest exercise bike time| +|46|Heaviest weight on bench press| +|47|Heaviest weight on dumbbells| +|48|Best time in 8-Track| +|49|BMX best time| +|50|Lightest weight| +|51|Longest chase time with 5 or more stars| +|52|Last chase time with 5 or more stars| +|53|Wage bill| +|54|Strip club budget| +|55|Car modification budget| +|56|Time spent shopping| +|57|Time spent gambling| +|58|Time spent on longest mission| +|59|Time spent on quickest mission| +|60|Average mission time| +|61|Drugs budget| +|62|Total shopping budget| +|63|Time spent underwater| +|64|Total respect| +|65|Girlfriend respect| +|66|Clothes respect| +|67|Fitness respect| +|68|Respect| +|69|Pistol Skill| +|70|Silenced Pistol Skill| +|71|Desert Eagle Skill| +|72|Shotgun Skill| +|73|Sawn-Off Shotgun Skill| +|74|Combat Shotgun Skill| +|75|Machine Pistol Skill| +|76|SMG Skill| +|77|AK-47 Skill| +|78|M4 Skill| +|79|Rifle Skill| +|80|Appearance| +|81|Gambling| +|82|119 unused| +|120|People wasted by others| +|121|People you've wasted| +|122|Road Vehicles destroyed| +|123|Boats destroyed| +|124|Planes & Helicopters destroyed| +|125|Cost of property damaged| +|126|Bullets fired| +|127|Kgs of explosives used| +|128|Bullets that hit| +|129|Tires popped with gunfire| +|130|Number of headshots| +|131|Total number of wanted stars attained| +|132|Total number of wanted stars evaded| +|133|Times busted| +|134|Days passed in game| +|135|Number of hospital visits| +|136|Safehouse visits| +|137|Times cheated| +|138|Vehicle Resprays| +|139|Maximum INSANE Jump distance| +|140|Maximum INSANE Jump height| +|141|Maximum INSANE Jump flips| +|142|Maximum INSANE Jump rotation| +|143|Best INSANE stunt awarded| +|144|Unique Jumps found| +|145|Unique Jumps done| +|146|Mission attempts| +|147|Missions passed| +|148|Total number of missions in game| +|149|Cash made in a Taxi| +|150|Passengers dropped off| +|151|People saved in an Ambulance| +|152|Criminals killed on Vigilante Mission| +|153|Total fires extinguished| +|154|Packages Delivered| +|155|Assassinations| +|156|Last dance score| +|157|Highest Vigilante Mission level| +|158|Highest Paramedic Mission level| +|159|Highest Firefighter Mission level| +|160|Driving skill| +|161|Number of Truck missions passed| +|162|Money made in Truck| +|163|Recruited gang members killed| +|164|Armor| +|165|Energy| +|166|Photographs Taken| +|167|Rampages attempted| +|168|Rampages passed| +|169|Flight time| +|170|Times drowned| +|171|Number of girls pimped| +|172|Best position in 8-Track| +|173|Time on jetpack| +|174|Shooting range levels passed| +|175|Most cars parked on 'Valet Parking'| +|176|Kills since last checkpoint| +|177|Total legitimate kills| +|178|Number of 'Bloodring' kills| +|179|Total time in bloodring| +|180|No more hurricanes Flag| +|181|City unlocked| +|182|Number of Police bribes| +|183|Number of cars stolen| +|184|Current number of girlfriends| +|185|Number of disastrous dates| +|186|Number of girls dated| +|187|Number of times scored with a girl| +|188|Number of successful dates| +|189|Number of girls dumped| +|190|Number of prostitutes visited| +|191|Number of houses burgled| +|192|Number of safes cracked| +|193|Burgular status| +|194|Number of stolen items sold| +|195|Number of eight balls in pool| +|196|Total number of wins playing pool| +|197|Total number of losses playing pool| +|198|Times visited the gym| +|199|Body type| +|200|Number of meals eaten| +|201|Money made in Quarry| +|202|Time taken to Complete Quarry| +|203|Number of furniture purchased| +|204|Favorite console game| +|205|Highest civilian peds killed on Rampage| +|206|Highest police peds killed on Rampage| +|207|Highest civilian vehicles destroyed on Rampage| +|208|Highest police vehicles destroyed on Rampage| +|209|Highest number of tanks destroyed on Rampage| +|210|Pimping level| +|211|Kickstart best score| +|212|Best lap time in 8-Track| +|213|Number of vehicles exported| +|214|Number of vehicles imported| +|215|Highest basketball score| +|216|Fires started| +|217|Amount of drugs sold| +|218|Amount of drugs bought| +|219|Best lap time in dirt track| +|220|Best time in dirt track| +|221|Best position in dirt track| +|222|NRG-500 best time| +|223|Flying skill| +|224|Respect Mission| +|225|Lung capacity| +|226|Game gore rating| +|227|Game sex rating| +|228|Respect Mission Total| +|229|Bike skill| +|230|Cycling skill| +|231|Snapshots taken| +|232|Total snapshots| +|233|Luck| +|234|Territories taken over| +|235|Territories lost| +|236|Territories held| +|237|Highest number of territories held| +|238|Gang members recruited| +|239|Enemy gang members killed| +|240|Friendly gang members killed| +|241|Horseshoes collected| +|242|Total horseshoes| +|243|Oysters collected| +|244|Total oysters| +|245|Calories| +|246|2 Player Rampage best time| +|247|2 Player Car Rampage best time| +|248|2 Player On Foot Rampage best time| +|249|2 Player Chopper Rampage best time| +|250|2 Player Bike Rampage best time| +|251|'Keepie Uppy' best time| +|252|Progress with Denise| +|253|Progress with Michelle| +|254|Progress with Helena| +|255|Progress with Barbara| +|256|Progress with Katie| +|257|Progress with Millie| +|258|Best position in Lowrider Race| +|259|Best time in Lowrider Race| +|260|Best position in Little Loop| +|261|Best time in Little Loop| +|262|Best position in Backroad Wanderer| +|263|Best time in Backroad Wanderer| +|264|Best position in City Circuit| +|265|Best time in City Circuit| +|266|Best position in Vinewood| +|267|Best time in Vinewood| +|268|Best position in Freeway| +|269|Best time in Freeway| +|270|Best position in Into the Country| +|271|Best time in Into the Country| +|272|Best position in Badlands A| +|273|Best time in Badlands A| +|274|Best position in Badlands B| +|275|Best time in Badlands B| +|276|Best position in Dirtbike Danger| +|277|Best time in Dirtbike Danger| +|278|Best position in Bandito County| +|279|Best time in Bandito County| +|280|Best position in Go-Go-Kart| +|281|Best time in Go-Go-Kart| +|282|Best position in San Fierro Fastlane| +|283|Best time in San Fierro Fastlane| +|284|Best position in San Fierro Hills| +|285|Best time in San Fierro Hills| +|286|Best position in Country Endurance| +|287|Best time in Country Endurance| +|288|Best position in SF to LV| +|289|Best time in SF to LV| +|290|Best position in Dam Rider| +|291|Best time in Dam Rider| +|292|Best position in Desert Tricks| +|293|Best time in Desert Tricks| +|294|Best position in LV Ringroad| +|295|Best time in LV Ringroad| +|296|Best time in World War Aces| +|297|Best time in Barnstorming| +|298|Best time in Military Service| +|299|Best time in Chopper Checkpoint| +|300|Best time in Whirly Bird Waypoint| +|301|Best time in Heli Hell| +|302|Drive-thru mission accomplished| +|303|Management Issues mission accomplished| +|304|555 WE TIP mission accomplished| +|305|Yay Ka-Boom-Boom mission accomplished| +|306|Fish in a Barrel mission accomplished| +|307|Breaking the Bank at Caligula's mission accomplished| +|308|A Home In The Hills mission accomplished| +|309|maybe set riot mode| +|310|Ryder's mission Robbing Uncle Sam accomplished| +|311|Mike Toreno mission accomplished| +|312|Architectural Espionage mission accomplished| +|313|Jizzy mission accomplished| +|314|Reuniting the Families mission accomplished| +|315|Small Town Bank mission accomplished| +|316|Photo Opportunity mission accomplished| +|317|Don Peyote mission accomplished| +|318|Local Liquor Store mission accomplished| +|319|Badlands mission accomplished| +|320|Playing time| +|321|Hidden Packages found| +|322|Tags sprayed| +|323|Least favorite gang| +|324|Gang members wasted| +|325|Criminals wasted| +|326|Most Favorite Radio Station| +|327|Least Favorite Radio Station| +|328|Current weapon skill| +|329|Weapon skill levels| +|330|Pilot ranking| +|331|Strongest Gang| +|332|2nd strongest gang| +|333|3rd strongest gang| +|334|Money lost gambling| +|335|Riot Mission accomplished| +|336|Gang strength| +|337|Territory under control| +|338|Are you going to San Fierro? mission accomplished| +|339|High Noon mission accomplished| +|340|The Green Sabre mission accomplished| +|341|maybe Catalina meeting| +|342|maybe Wu Zi meeting| \ No newline at end of file diff --git a/en/scm-documentation/sa/tattoos.html b/en/scm-documentation/sa/tattoos.html index d7a1462..6590703 100644 --- a/en/scm-documentation/sa/tattoos.html +++ b/en/scm-documentation/sa/tattoos.html @@ -8,473 +8,101 @@ - ```sb3 Player.SetClothes($PLAYER_CHAR, <texture>, <model>, <body part>) ``` ## Lower left arm - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TextureModelBody PartTattoo NameImage
4weed4WEED4Weed![](../../../img/sa/tatoo/4weed.png)
4rip4RIP4Grave![](../../../img/sa/tatoo/4rip.png)
4spider4SPIDER4Spider![](../../../img/sa/tatoo/4spider.png)
-

Upper left arm

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TextureModelBody PartTattoo NameImage
5gun5GUN5Gun![](../../../img/sa/tatoo/5gun.png)
5cross5CROSS5Cross![](../../../img/sa/tatoo/5cross.png)
5cross25CROSS25Rose![](../../../img/sa/tatoo/5cross2.png)
5cross35CROSS35Clown![](../../../img/sa/tatoo/5cross3.png)
-

Upper right arm

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TextureModelBody PartTattoo NameImage
6aztec6AZTEC6Aztec![](../../../img/sa/tatoo/6aztec.png)
6crown6CROWN6Web![](../../../img/sa/tatoo/6crown.png)
6clown6CLOWN6Clown![](../../../img/sa/tatoo/6clown.png)
6africa6AFRICA6Africa![](../../../img/sa/tatoo/6africa.png)
-

Lower right arm

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TextureModelBody PartTattoo NameImage
7cross7CROSS7Cross![](../../../img/sa/tatoo/7cross.png)
7cross27CROSS27Cross![](../../../img/sa/tatoo/7cross2.png)
7cross37CROSS37Cross![](../../../img/sa/tatoo/7cross3.png)
7mary7MARY7Mary![](../../../img/sa/tatoo/7mary.png)
-

Back top

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TextureModelBody PartTattoo NameImage
8sa8SA8Grove St .![](../../../img/sa/tatoo/8sa.png)
8sa28SA28San Andreas![](../../../img/sa/tatoo/8sa2.png)
8sa38SA38San Fierro![](../../../img/sa/tatoo/8sa3.png)
8westside8WESTSD8Westside![](../../../img/sa/tatoo/8westsd.png)
8santos8SANTOS8Los Santos![](../../../img/sa/tatoo/8santos.png)
8poker8POKER8Card![](../../../img/sa/tatoo/8poker.png)
8gun8GUN8Gun![](../../../img/sa/tatoo/8gun.png)
-

Left chest

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TextureModelBody PartTattoo NameImage
9crown9CROWN9Crown![](../../../img/sa/tatoo/9crown.png)
9gun9GUN9Gun![](../../../img/sa/tatoo/9gun.png)
9gun29GUN29Gun![](../../../img/sa/tatoo/9gun2.png)
9homeboy9HOMBY9Homeboy![](../../../img/sa/tatoo/9homby.png)
9bullet9BULLT9Bullet![](../../../img/sa/tatoo/9bullt.png)
9rasta9RASTA9Rasta![](../../../img/sa/tatoo/9rasta.png)
-

Right chest

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TextureModelBody PartTattoo NameImage
10ls10LS10Los Santos![](../../../img/sa/tatoo/10ls.png)
10ls210LS210Los Santos![](../../../img/sa/tatoo/10ls2.png)
10ls310LS310Los Santos![](../../../img/sa/tatoo/10ls3.png)
10ls410LS410Los Santos![](../../../img/sa/tatoo/10ls4.png)
10ls510LS510Los Santos![](../../../img/sa/tatoo/10ls5.png)
10og10OG10O.G.![](../../../img/sa/tatoo/10og.png)
10weed10WEED10Grove![](../../../img/sa/tatoo/10weed.png)
-

Stomach

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TextureModelBody PartTattoo NameImage
11grove11GROVE11Grove![](../../../img/sa/tatoo/11grove.png)
11grove211GROV211Grove![](../../../img/sa/tatoo/11grov2.png)
11grove311GROV311Grove![](../../../img/sa/tatoo/11grov3.png)
11dice11DICE11Dice![](../../../img/sa/tatoo/11dice.png)
11dice211DICE211Dice![](../../../img/sa/tatoo/11dice2.png)
11jail11JAIL11Jail![](../../../img/sa/tatoo/11jail.png)
11godsgift11GGIFT11God's Gift![](../../../img/sa/tatoo/11ggift.png)
-

Lower back

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TextureModelBody PartTattoo NameImage
12angels12ANGEL12Angel![](../../../img/sa/tatoo/12angel.png)
12mayabird12MAYBR12Mayan Bird![](../../../img/sa/tatoo/12maybr.png)
12dagger12DAGER12Dagger![](../../../img/sa/tatoo/12dager.png)
12bandit12BNDIT12Masks![](../../../img/sa/tatoo/12bndit.png)
12cross712CROSS12Cross![](../../../img/sa/tatoo/12cross.png)
12mayaface12MYFAC12Mayan Face![](../../../img/sa/tatoo/12myfac.png)
+|Textura|Modelo|[Parte del Cuerpo](player-body-parts.md)|Nombre|Imagen| +|-| +|4weed|4WEED|4|Weed|![](%sa-t/4weed.png)| +|4rip|4RIP|4|Grave|![](%sa-t/4rip.png)| +|4spider|4SPIDER|4|Spider|![](%sa-t/4spider.png)| + +## Upper left arm + +|Textura|Modelo|[Parte del Cuerpo](player-body-parts.md)|Nombre|Imagen| +|-| +|5gun|5GUN|5|Gun|![](%sa-t/5gun.png)| +|5cross|5CROSS|5|Cross|![](%sa-t/5cross.png)| +|5cross2|5CROSS2|5|Rose|![](%sa-t/5cross2.png)| +|5cross3|5CROSS3|5|Clown|![](%sa-t/5cross3.png)| + +## Upper right arm + +|Textura|Modelo|[Parte del Cuerpo](player-body-parts.md)|Nombre|Imagen| +|-| +|6aztec|6AZTEC|6|Aztec|![](%sa-t/6aztec.png)| +|6crown|6CROWN|6|Web|![](%sa-t/6crown.png)| +|6clown|6CLOWN|6|Clown|![](%sa-t/6clown.png)| +|6africa|6AFRICA|6|Africa|![](%sa-t/6africa.png)| + +## Lower right arm + +|Textura|Modelo|[Parte del Cuerpo](player-body-parts.md)|Nombre|Imagen| +|-| +|7cross|7CROSS|7|Cross|![](%sa-t/7cross.png)| +|7cross2|7CROSS2|7|Cross|![](%sa-t/7cross2.png)| +|7cross3|7CROSS3|7|Cross|![](%sa-t/7cross3.png)| +|7mary|7MARY|7|Mary|![](%sa-t/7mary.png)| + +## Back top + +|Textura|Modelo|[Parte del Cuerpo](player-body-parts.md)|Nombre|Imagen| +|-| +|8sa|8SA|8|Grove St .|![](%sa-t/8sa.png)| +|8sa2|8SA2|8|San Andreas|![](%sa-t/8sa2.png)| +|8sa3|8SA3|8|San Fierro|![](%sa-t/8sa3.png)| +|8westside|8WESTSD|8|Westside|![](%sa-t/8westsd.png)| +|8santos|8SANTOS|8|Los Santos|![](%sa-t/8santos.png)| +|8poker|8POKER|8|Card|![](%sa-t/8poker.png)| +|8gun|8GUN|8|Gun|![](%sa-t/8gun.png)| + +## Left chest + +|Textura|Modelo|[Parte del Cuerpo](player-body-parts.md)|Nombre|Imagen| +|-| +|9crown|9CROWN|9|Crown|![](%sa-t/9crown.png)| +|9gun|9GUN|9|Gun|![](%sa-t/9gun.png)| +|9gun2|9GUN2|9|Gun|![](%sa-t/9gun2.png)| +|9homeboy|9HOMBY|9|Homeboy|![](%sa-t/9homby.png)| +|9bullet|9BULLT|9|Bullet|![](%sa-t/9bullt.png)| +|9rasta|9RASTA|9|Rasta|![](%sa-t/9rasta.png)| + +## Right chest + +|Textura|Modelo|[Parte del Cuerpo](player-body-parts.md)|Nombre|Imagen| +|-| +|10ls|10LS|10|Los Santos|![](%sa-t/10ls.png)| +|10ls2|10LS2|10|Los Santos|![](%sa-t/10ls2.png)| +|10ls3|10LS3|10|Los Santos|![](%sa-t/10ls3.png)| +|10ls4|10LS4|10|Los Santos|![](%sa-t/10ls4.png)| +|10ls5|10LS5|10|Los Santos|![](%sa-t/10ls5.png)| +|10og|10OG|10|O.G.|![](%sa-t/10og.png)| +|10weed|10WEED|10|Grove|![](%sa-t/10weed.png)| + +## Stomach + +|Textura|Modelo|[Parte del Cuerpo](player-body-parts.md)|Nombre|Imagen| +|-| +|11grove|11GROVE|11|Grove|![](%sa-t/11grove.png)| +|11grove2|11GROV2|11|Grove|![](%sa-t/11grov2.png)| +|11grove3|11GROV3|11|Grove|![](%sa-t/11grov3.png)| +|11dice|11DICE|11|Dice|![](%sa-t/11dice.png)| +|11dice2|11DICE2|11|Dice|![](%sa-t/11dice2.png)| +|11jail|11JAIL|11|Jail|![](%sa-t/11jail.png)| +|11godsgift|11GGIFT|11|God's Gift|![](%sa-t/11ggift.png)| + +## Lower back + +|Textura|Modelo|[Parte del Cuerpo](player-body-parts.md)|Nombre|Imagen| +|-| +|12angels|12ANGEL|12|Angel|![](%sa-t/12angel.png)| +|12mayabird|12MAYBR|12|Mayan Bird|![](%sa-t/12maybr.png)| +|12dagger|12DAGER|12|Dagger|![](%sa-t/12dager.png)| +|12bandit|12BNDIT|12|Masks|![](%sa-t/12bndit.png)| +|12cross7|12CROSS|12|Cross|![](%sa-t/12cross.png)| +|12mayaface|12MYFAC|12|Mayan Face|![](%sa-t/12myfac.png)| \ No newline at end of file diff --git a/en/scm-documentation/sa/trains.html b/en/scm-documentation/sa/trains.html index 7c7d86d..467074a 100644 --- a/en/scm-documentation/sa/trains.html +++ b/en/scm-documentation/sa/trains.html @@ -8,123 +8,22 @@ - ```sb3 06D8: 1@ = create_train_at 2278.1771 -1144.8823 27.5108 type <type> direction 1 ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TypeEngineCarriage 1Carriage 2Carriage 3Carriage 4Carriage 5
0:#FREIGHT#FREIFLAT#FREIFLAT#FREIFLAT#FREIFLAT
1,2,4,7,11:#STREAK#STREAKC#STREAKC
3:#FREIGHT#FREIFLAT#FREIFLAT#FREIFLAT
5:#STREAK#STREAKC#STREAKC#STREAKC
6:#FREIGHT#FREIFLAT#FREIFLAT
8:#TRAM#TRAM
9,14:#TRAM
10:#FREIGHT#FREIFLAT
12:#FREIGHT#FREIFLAT#FREIFLAT#FREIFLAT#FREIGHT
13:#FREIGHT#FREIFLAT#FREIFLAT#FREIFLAT#FREIFLAT#FREIFLAT
15:#STREAK
+|Type|Engine|Carriage 1|Carriage 2|Carriage 3|Carriage 4|Carriage 5| +|-| +|0:|#FREIGHT|#FREIFLAT|#FREIFLAT|#FREIFLAT|#FREIFLAT|\s| +|1,2,4,7,11:|#STREAK|#STREAKC|#STREAKC|\s|\s|\s| +|3:|#FREIGHT|#FREIFLAT|#FREIFLAT|#FREIFLAT|\s|\s| +|5:|#STREAK|#STREAKC|#STREAKC|#STREAKC|\s|\s| +|6:|#FREIGHT|#FREIFLAT|#FREIFLAT|\s|\s|\s| +|8:|#TRAM|#TRAM|\s|\s|\s|\s| +|9,14:|#TRAM|\s|\s|\s|\s|\s| +|10:|#FREIGHT|#FREIFLAT|\s|\s|\s|\s| +|12:|#FREIGHT|#FREIFLAT|#FREIFLAT|#FREIFLAT|#FREIGHT|\s| +|13:|#FREIGHT|#FREIFLAT|#FREIFLAT|#FREIFLAT|#FREIFLAT|#FREIFLAT| +|15:|#STREAK|\s|\s|\s|\s| \ No newline at end of file diff --git a/en/scm-documentation/sa/vehicle-variations.html b/en/scm-documentation/sa/vehicle-variations.html index 695c51d..ec4034b 100644 --- a/en/scm-documentation/sa/vehicle-variations.html +++ b/en/scm-documentation/sa/vehicle-variations.html @@ -17,423 +17,61 @@ Variant `-1` is the default model with no extras. Variants `0` through `5` are possible extra variants which will fall back to the default if the model does not have that many extras, and variants greater than `5` will crash the game. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Model nameModel IDVariant
#ambulan416**Numbers:**\ -**0:** 64\ -**1: **16\ -**2:** 47
#artict1435**Side Ads:**\ -**0: **Cok-o-Pops\ -**1:** Munky Juice\ -**2:** Hinterland\ -**3:** Zip\ -**4:** RS Haul\ -**5:** Ranch
#artict2450**Contents:**\ -**0:** Filled with gravel /** **coal / stone
#bagboxb607**Contents:**\ -**0, 1, 2: **Various distributions of loose baggage
#baggage485**Rear Cargo Items:**\ -**0: **Earmuffs\ -**1:** Small Case\ -**2:** Large Case
#barracks433**Bed Covering:**\ -**0: **Opaque Fabric\ -**1:** Camo Netting
#benson499**Side Ads:**\ -**0: **Shady Industries\ -**1:** LSD\ -**2:** The Uphill Gardener\ -**3:** Discount Furniture
#bf400581**Exhausts:**\ -**0: **Single Type 1\ -**1:** Single Type 2\ -**Fairings (with windshields):**\ -**3: **Dual Type3\ -**4:** Half-size\ -**5:** Full-size
#bfinject424**Body: **\ -**0: **Side Panels
#bloodra504**Numbers/ Roof Color:**\ -**0: **328/ White\ -**1:** 464/ Check\ -**2:** 172/ Check\ -**3:** 100/ White\ -**4:** 284/ White\ -**5:** 505/ Check
#bobcat422**Bed Items:**\ -**0: **Spare Tire\ -**1:** Sprunk Cans
#burrito482**Roof Items:**\ -**0: **Roof Lights + Spoiler
#caddy457**Rear Cargo Items (Driver Side): **\ -**0:** Golfbag1\ -**1:** Satchel1\ -**2:** Golfbag2\ -**Rear Cargo Items (Pass Side):**\ -**3:** Satchel2\ -**4:** Golfbag3\ -**5:** Golfbag4
#camper483**0: **Open Curtains & Second Bench Seat\ -**1:** Open Roof & Vent Closed & Curtains Bed in Back Peace Sign
#cheetah415**Side Mirrors:**\ -**0:** Single, Placed High\ -**1:** Dual, Placed Normally
#coach437**Name on Side:**\ -**0: **Big O Tours\ -**1:** Bikini Line
#coastg472**Various Items:**\ -**0: **Items all Over\ -**1:** Items Grouped in Back\ -**3:** Items all Over +2 Oars in Front
#fcr900521**Exhausts: **\ -**0:** Single Type1\ -**1:** Dual Type1\ -**2:** Dual Type2\ -**Fairings (with Windshields):**\ -**3: **Half-size\ -**4:** Full-size
#firetruk407**Numbers:**\ -**0: **64\ -**1:** 16\ -**2:** 47
#flatbed455**Cargo:**\ -**0: **Crates in Front\ -**1:** Crates in center under Tarp\ -**2:** Two Sets of crates (Front and Back)
#hotknife434**0:** Partial Engine Cover
#hotrina502**Numbers:**\ -**0: **96\ -**1: **67\ -**2: **73\ -**3: **52\ -**4: **45\ -**5: **14
#hotrinb503**Numbers:**\ -**0: **82\ -**1: **26\ -**2: **65\ -**3: **07\ -**4: **36\ -**5: **60
#kart571**Body Panels:**\ -**0: **Both Sides\ -**1: **Steering Column
#launch595**Roofs:**\ -**0: **Over passenger section\ -**1: **Over driver section
#marquis484**0: **Windshield over cabin Entrance
#mesa500**0: **Roof Over Back\ -**1: **Roll Bar in Back
#monstera556**0: **Roof Spoiler\ -**1: **Roof Lights\ -**2: **Roll Bar with Lights
#monsterb557**1: **Roof Lights
#mrwhoop423**Rear Sign:**\ -**0: **Cherry Popping Good\ -**1: **Slow Children Ahead
#mule414**Side Ads:**\ -**0: **Toy Corner\ -**1: **Binco\ -**2: **Semi\ -**3: **Shafted Appliances
#nrg500522**Exhausts: **\ -**0: **Single Pair1\ -**1: **Single Pair2\ -**2: **Dual Pair2\ - \ -**Fairings (with Windshields):**\ -**3: **Smooth\ -**4: **With Side Cutouts
#patriot470**Cargo Area:**\ -**0: **Low Cover\ -**1: **Roof/High Cover\ -**2: **Roll Bar
#peren404**0: **Roof Rack
#picador600**Items in Bed:**\ -**0: **Planks\ -**1: **Sprunk Cans
#pony413**0: **Sound System in Back
#reefer453**Items in Back:**\ -**0: **Boxes of Fish\ -**1: **Bench
#romero442**Coffins:**\ -**0: **Brown Style1\ -**1: **Black Style2\ -**2: **Brown Style3
#rumpo440**Side Ads:**\ -**0: **Cok-o-Pops\ -**1: **Harry Plums\ -**2: **Dick Goblin's\ -**3: **Final Build\ -**4: **Transfender\ -**5:** Wheel Arch Angels
#sadler543**Items in Bed:**\ -**0: **Two Propane Tanks & Crate\ -**1: **Two Barrels\ -**2: **Sprunk Cans\ -**3: **Open Crates
#sadlshit605**Items in Bed:**\ -**0: **Two Propane Tanks & Crate\ -**1: **Two Barrels\ -**2: **Sprunk Cans\ -**3: **Open Crates
#securica428**Side Logo:**\ -**0: **Chuff\ -**1: **Lock&Load
#slamvan535**Steering Wheel:**\ -**0: **Normal\ -**1: **Chain
#stallion439**Roof:**\ -**0: **Hardtop\ -**1: **Softtop (up)\ -**2: **Softtop (folded)
#supergt506**0: **Full Roof
#swatvan601**Number:**\ -**0: **1\ -**1: **9\ -**2: **6\ -**3: **7
#topfun459**0: **Boxes of Toys in Back
#tram449?
#trash408**0: **Some bits of trash sticking out of the back
#utility552**0, 1: **Cones, Barrel in back, Cone lying on passenger | driver side rail
#walton478**Items in Bed:**\ -**0: **Two Propane Tanks\ -**1: **Open Crates\ -**2: **Propane Tank and Barrel
#windsor555**0: **Roof
#yankee456**Side Ads:**\ -**0: **Big Gas\ -**1: **RS Haul\ -**2: **Star Balls\ -**3: **Flower Power
#zr350477**0: **Rear Spoiler
+|Model name|Model ID|Variant| +|-| +|#ambulan|416|**Numbers:**\n**0:** 64\n**1: **16\n**2:** 47| +|#artict1|435|**Side Ads:**\n**0: **Cok-o-Pops\n**1:** Munky Juice\n**2:** Hinterland\n**3:** Zip\n**4:** RS Haul\n**5:** Ranch| +|#artict2|450|**Contents:**\n**0:** Filled with gravel /** **coal / stone| +|#bagboxb|607|**Contents:**\n**0, 1, 2: **Various distributions of loose baggage| +|#baggage|485|**Rear Cargo Items:**\n**0: **Earmuffs\n**1:** Small Case\n**2:** Large Case| +|#barracks|433|**Bed Covering:**\n**0: **Opaque Fabric\n**1:** Camo Netting| +|#benson|499|**Side Ads:**\n**0: **Shady Industries\n**1:** LSD\n**2:** The Uphill Gardener\n**3:** Discount Furniture| +|#bf400|581|**Exhausts:**\n**0: **Single Type 1\n**1:** Single Type 2\n**Fairings (with windshields):**\n**3: **Dual Type3\n**4:** Half-size\n**5:** Full-size| +|#bfinject|424|**Body: **\n**0: **Side Panels| +|#bloodra|504|**Numbers/ Roof Color:**\n**0: **328/ White\n**1:** 464/ Check\n**2:** 172/ Check\n**3:** 100/ White\n**4:** 284/ White\n**5:** 505/ Check| +|#bobcat|422|**Bed Items:**\n**0: **Spare Tire\n**1:** Sprunk Cans| +|#burrito|482|**Roof Items:**\n**0: **Roof Lights + Spoiler| +|#caddy|457|**Rear Cargo Items (Driver Side): **\n**0:** Golfbag1\n**1:** Satchel1\n**2:** Golfbag2\n**Rear Cargo Items (Pass Side):**\n**3:** Satchel2\n**4:** Golfbag3\n**5:** Golfbag4| +|#camper|483|**0: **Open Curtains & Second Bench Seat\n**1:** Open Roof & Vent Closed & Curtains Bed in Back Peace Sign| +|#cheetah|415|**Side Mirrors:**\n**0:** Single, Placed High\n**1:** Dual, Placed Normally| +|#coach|437|**Name on Side:**\n**0: **Big O Tours\n**1:** Bikini Line| +|#coastg|472|**Various Items:**\n**0: **Items all Over\n**1:** Items Grouped in Back\n**3:** Items all Over +2 Oars in Front| +|#fcr900|521|**Exhausts: **\n**0:** Single Type1\n**1:** Dual Type1\n**2:** Dual Type2\n**Fairings (with Windshields):**\n**3: **Half-size\n**4:** Full-size| +|#firetruk|407|**Numbers:**\n**0: **64\n**1:** 16\n**2:** 47| +|#flatbed|455|**Cargo:**\n**0: **Crates in Front\n**1:** Crates in center under Tarp\n**2:** Two Sets of crates (Front and Back)| +|#hotknife|434|**0:** Partial Engine Cover| +|#hotrina|502|**Numbers:**\n**0: **96\n**1: **67\n**2: **73\n**3: **52\n**4: **45\n**5: **14| +|#hotrinb|503|**Numbers:**\n**0: **82\n**1: **26\n**2: **65\n**3: **07\n**4: **36\n**5: **60| +|#kart|571|**Body Panels:**\n**0: **Both Sides\n**1: **Steering Column| +|#launch|595|**Roofs:**\n**0: **Over passenger section\n**1: **Over driver section| +|#marquis|484|**0: **Windshield over cabin Entrance| +|#mesa|500|**0: **Roof Over Back\n**1: **Roll Bar in Back| +|#monstera|556|**0: **Roof Spoiler\n**1: **Roof Lights\n**2: **Roll Bar with Lights| +|#monsterb|557|**1: **Roof Lights| +|#mrwhoop|423|**Rear Sign:**\n**0: **Cherry Popping Good\n**1: **Slow Children Ahead| +|#mule|414|**Side Ads:**\n**0: **Toy Corner\n**1: **Binco\n**2: **Semi\n**3: **Shafted Appliances| +|#nrg500|522|**Exhausts: **\n**0: **Single Pair1\n**1: **Single Pair2\n**2: **Dual Pair2\n \n**Fairings (with Windshields):**\n**3: **Smooth\n**4: **With Side Cutouts| +|#patriot|470|**Cargo Area:**\n**0: **Low Cover\n**1: **Roof/High Cover\n**2: **Roll Bar| +|#peren|404|**0: **Roof Rack| +|#picador|600|**Items in Bed:**\n**0: **Planks\n**1: **Sprunk Cans| +|#pony|413|**0: **Sound System in Back| +|#reefer|453|**Items in Back:**\n**0: **Boxes of Fish\n**1: **Bench| +|#romero|442|**Coffins:**\n**0: **Brown Style1\n**1: **Black Style2\n**2: **Brown Style3| +|#rumpo|440|**Side Ads:**\n**0: **Cok-o-Pops\n**1: **Harry Plums\n**2: **Dick Goblin's\n**3: **Final Build\n**4: **Transfender\n**5:** Wheel Arch Angels| +|#sadler|543|**Items in Bed:**\n**0: **Two Propane Tanks & Crate\n**1: **Two Barrels\n**2: **Sprunk Cans\n**3: **Open Crates| +|#sadlshit|605|**Items in Bed:**\n**0: **Two Propane Tanks & Crate\n**1: **Two Barrels\n**2: **Sprunk Cans\n**3: **Open Crates| +|#securica|428|**Side Logo:**\n**0: **Chuff\n**1: **Lock&Load| +|#slamvan|535|**Steering Wheel:**\n**0: **Normal\n**1: **Chain| +|#stallion|439|**Roof:**\n**0: **Hardtop\n**1: **Softtop (up)\n**2: **Softtop (folded)| +|#supergt|506|**0: **Full Roof| +|#swatvan|601|**Number:**\n**0: **1\n**1: **9\n**2: **6\n**3: **7| +|#topfun|459|**0: **Boxes of Toys in Back| +|#tram|449|?| +|#trash|408|**0: **Some bits of trash sticking out of the back| +|#utility|552|**0, 1: **Cones, Barrel in back, Cone lying on passenger \| driver side rail| +|#walton|478|**Items in Bed:**\n**0: **Two Propane Tanks\n**1: **Open Crates\n**2: **Propane Tank and Barrel| +|#windsor|555|**0: **Roof| +|#yankee|456|**Side Ads:**\n**0: **Big Gas\n**1: **RS Haul\n**2: **Star Balls\n**3: **Flower Power| +|#zr350|477|**0: **Rear Spoiler| \ No newline at end of file diff --git a/en/scm-documentation/sa/vehicles.html b/en/scm-documentation/sa/vehicles.html index 4bdc119..0691bc8 100644 --- a/en/scm-documentation/sa/vehicles.html +++ b/en/scm-documentation/sa/vehicles.html @@ -8,56 +8,251 @@ +### bikes -
- -
- - - \ No newline at end of file +|Name|Model|GXT| +|-| +|BF-400|581|BF400| +|Bike|509|BIKE| +|BMX|481|BMX| +|Faggio|462|FAGGIO| +|FCR-900|521|FCR900| +|Freeway|463|FREEWAY| +|Mountain Bike|510|MTBIKE| +|NRG-500|522|NRG500| +|PCJ-600|461|PCJ600| +|Pizzaboy|448|PIZZABO| +|Sanchez|468|SANCHEZ| +|Wayfarer|586|WAYFARE| + +### 2-Door + +|Name|Model|GXT| +|-| +|Alpha|602|ALPHA| +|Blista Compact|496|BLISTAC| +|Bravura|401|BRAVURA| +|Buccaneer|518|BUCCANE| +|Cadrona|527|CADRONA| +|Club|589|CLUB| +|Esperanto|419|ESPERAN| +|Euros|587|EUROS| +|Feltzer|533|FELTZER| +|Fortune|526|FORTUNE| +|Hermes|474|HERMES| +|Hustler|545|HUSTLER| +|Majestic|517|MAJESTC| +|Manana|410|MANANA| +|Picador|600|PICADOR| +|Previon|436|PREVION| +|Stallion|439|STALION| +|Tampa|549|TAMPA| +|Virgo|491|VIRGO| + +### 4-Door + +|Name|Model|GXT| +|-| +|Admiral|445|ADMIRAL| +|Damaged Glendale|604|GLENSHI| +|Elegant|507|ELEGANT| +|Emperor|585|EMPEROR| +|Glendale|466|GLENDAL| +|Greenwood|492|GREENWO| +|Intruder|546|INTRUDR| +|Merit|551|MERIT| +|Nebula|516|NEBULA| +|Oceanic|467|OCEANIC| +|Premier|426|PREMIER| +|Primo|547|PRIMO| +|Sentinel|405|SENTINL| +|Stafford|580|STAFFRD| +|Stretch|409|STRETCH| +|Sunrise|550|SUNRISE| +|Tahoma|566|TAHOMA| +|Vincent|540|VINCENT| +|Washington|421|WASHING| +|Willard|529|WILLARD| + +### Civil service + +|Name|Model|GXT| +|-| +|Baggage|485|BAGGAGE| +|Bus|431|BUS| +|Cabbie|438|CABBIE| +|Coach|437|COACH| +|Sweeper|574|SWEEPER| +|Taxi|420|TAXI| +|Towtruck|525|TOWTRUK| +|Trashmaster|408|TRASHM| +|Utility Van|552|UTILITY| + +### Government vehicles + +|Name|Model|GXT| +|-| +|Ambulance|416|AMBULAN| +|Barracks|433|BARRCKS| +|Enforcer|427|ENFORCR| +|FBI Rancher|490|FBIRANC| +|FBI Truck|528|FBITRUK| +|Fire Truck|407|FIRETRK| +|Fire Truck2|544|FIRELA| +|HPV1000|523|HPV1000| +|Patriot|470|PATRIOT| +|Police LS|596|POLICAR| +|Police LV|598|POLICAR| +|Police Ranger|599|RANGER| +|Police SF|597|POLICAR| +|Rhino|432|RHINO| +|S.W.A.T.|601|SWATVAN| +|Securicar|428|SECURI| + +### Heavy & Utility trucks + +|Name|Model|GXT| +|-| +|Benson|499|BENSON| +|Boxville Mission|609|BOXBURG| +|Boxville|498|BOXVILL| +|Cement Truck|524|CEMENT| +|Combine Harvester|532|COMBINE| +|DFT-30|578|DFT30| +|Dozer|486|DOZER| +|Dumper|406|DUMPER| +|Dune|573|DUNE| +|Flatbed|455|FLATBED| +|Hotdog|588|HOTDOG| +|Linerunner|403|LINERUN| +|Mr. Whoopee|423|WHOOPEE| +|Mule|414|MULE| +|Packer|443|PACKER| +|Roadtrain|515|RDTRAIN| +|Tanker|514|PETROL| +|Tractor|531|TRACTOR| +|Yankee|456|YANKEE| + +### Light trucks & Vans + +|Name|Model|GXT| +|-| +|Berkley's RC Van|459|TOPFUN| +|Bobcat|422|BOBCAT| +|Burrito|482|BURRITO| +|Damaged Sadler|605|SADLSHI| +|Forklift|530|FORKLFT| +|Moonbeam|418|MOONBM| +|Mower|572|MOWER| +|News Van|582|NEWSVAN| +|Pony|413|PONY| +|Rumpo|440|RUMPO| +|Sadler|543|SADLER| +|Tug|583|TUG| +|Walton|478|WALTON| +|Yosemite|554|YOSEMIT| + +### SUVs & Wagons + +|Name|Model|GXT| +|-| +|Huntley|579|HUNTLEY| +|Landstalker|400|LANDSTK| +|Perennial|404|PEREN| +|Rancher|489|RANCHER| +|Rancher Lure|505|RANCHER| +|Regina|479|REGINA| +|Romero|442|ROMERO| +|Solair|458|SOLAIR| + +### Lowriders + +|Name|Model|GXT| +|-| +|Blade|536|BLADE| +|Broadway|575|BROADWY| +|Remington|534|REMING| +|Savanna|567|SAVANNA| +|Slamvan|535|SLAMVAN| +|Tornado|576|TORNADO| +|Voodoo|412|VOODOO| + +### Muscle cars + +|Name|Model|GXT| +|-| +|Buffalo|402|BUFFALO| +|Clover|542|CLOVER| +|Phoenix|603|PHOENIX| +|Sabre|475|SABRE| + +### Street racers + +|Name|Model|GXT| +|-| +|Banshee|429|BANSHEE| +|Bullet|541|BULLET| +|Cheetah|415|CHEETAH| +|Comet|480|COMET| +|Elegy|562|ELEGY| +|Flash|565|FLASH| +|Hotknife|434|HOTKNIF| +|Hotring Racer|494|HOTRING| +|Hotring Racer 2|502|HOTRINA| +|Hotring Racer 3|503|HOTRINB| +|Infernus|411|INFERNU| +|Jester|559|JESTER| +|Stratum|561|STRATUM| +|Sultan|560|SULTAN| +|Super GT|506|SUPERGT| +|Turismo|451|TURISMO| +|Uranus|558|URANUS| +|Windsor|555|WINDSOR| +|ZR-350|477|ZR350| + +### Planes + +|Name|Model|GXT| +|-| +|Andromada|592|ANDROM| +|AT-400|577|AT400| +|Beagle|511|BEAGLE| +|Cropduster|512|CROPDST| +|Dodo|593|DODO| +|Hydra|520|HYDRA| +|Nevada|553|NEVADA| +|Rustler|476|RUSTLER| +|Shamal|519|SHAMAL| +|Skimmer|460|SKIMMER| +|Stuntplane|513|STUNT| + +### Helicopters + +|Name|Model|GXT| +|-| +|Cargobob|548|CARGOBB| +|Hunter|425|HUNTER| +|Leviathan|417|LEVIATH| +|Maverick|487|MAVERIC| +|News Chopper|488|SANMAV| +|Police Maverick|497|POLMAV| +|Raindance|563|RAINDNC| +|Seasparrow|447|SEASPAR| +|Sparrow|469|SPARROW| + +### Boats + +|Name|Model|GXT| +|-| +|Coastguard|472|COASTG| +|Dinghy|473|DINGHY| +|Jetmax|493|JETMAX| +|Launch|595|LAUNCH| +|Marquis|484|MARQUIS| +|Predator|430|PREDATR| +|Reefer|453|REEFER| +|Speeder|452|SPEEDER| +|Squalo|446|SQUALO| +|Tropic|454|TROPIC| + + \ No newline at end of file diff --git a/en/scm-documentation/sa/weapons.html b/en/scm-documentation/sa/weapons.html index c746e4f..beece6e 100644 --- a/en/scm-documentation/sa/weapons.html +++ b/en/scm-documentation/sa/weapons.html @@ -11,83 +11,53 @@ ```sb3 01B2: give_actor $PLAYER_ACTOR weapon <id> ammo 60 ``` - - - - - - - - - - - - - -
NameIDModelGroupGUIGXT
+|Name|ID|Model|Group|GUI|GXT| +|-| +|Unarmed|0|0
0|1|![](%sa-w/fist.png)|WEAP00| +|Brass Knuckles|1|brassknuckle
331|1|![](%sa-w/BRASSKNUCKLEicon.png)|WEAP01| +|Golf Club|2|golfclub
333|2|![](%sa-w/golfclubicon.png)|WEAP02| +|Night Stick|3|nitestick
334|2|![](%sa-w/nitestickicon.png)|WEAP03| +|Knife|4|knifecur
335|2|![](%sa-w/knifecuricon.png)|KNIFE| +|Baseball Bat|5|bat
336|2|![](%sa-w/baticon.png)|BASEBAT| +|Shovel|6|shovel
337|2|![](%sa-w/shovelicon.png)|WEAP04| +|Pool cue|7|poolcue
338|2|![](%sa-w/poolcueicon.png)|WEAP05| +|Katana|8|katana
339|2|![](%sa-w/katanaicon.png)|KATANA| +|Chainsaw|9|chnsaw
341|2|![](%sa-w/chnsawicon.png)|CHAINSA| +|Purple Dildo|10|gun_dildo1
321|11|![](%sa-w/gun_dildo1icon.png)|WEAP07| +|White Dildo|11|gun_dildo2
322|11|![](%sa-w/gun_dildo2icon.png)|WEAP06| +|Long White Dildo|12|gun_vibe1
323|11|![](%sa-w/gun_vibe1icon.png)|WEAP09| +|White Dildo 2|13|gun_vibe2
324|11|![](%sa-w/gun_vibe2icon.png)|\s| +|Flowers|14|flowera
325|11|![](%sa-w/floweraicon.png)|WEAP10| +|Cane|15|gun_cane
326|11|![](%sa-w/gun_caneicon.png)|\s| +|Grenades|16|grenade
342|9|![](%sa-w/grenadeicon.png)|GRENADE| +|Tear Gas|17|teargas
343|9|![](%sa-w/TearGasicon.png)|WEAP11| +|Molotovs|18|molotovs
334|9|![](%sa-w/molotovicon.png)|WEAP12| +|Pistol|22|colt45
346|3|![](%sa-w/colt45icon.png)|STWE001| +|Silenced Pistol|23|silenced
347|3|![](%sa-w/silencedicon.png)|STWE002| +|Desert Eagle|24|desert_eagle
348|3|![](%sa-w/desert_eagleicon.png)|STWE003| +|Shotgun|25|chromegun
349|4|![](%sa-w/chromegunicon.png)|STWE004| +|Sawn Off Shotgun|26|sawnoff
350|4|![](%sa-w/sawnofficon.png)|STWE005| +|Combat Shotgun|27|shotgspa
351|4|![](%sa-w/shotgspaicon.png)|STWE006| +|Micro UZI|28|micro_uzi
352|5|![](%sa-w/micro_uziicon.png)|UZI| +|MP5|29|mp5lng
353|5|![](%sa-w/mp5lngicon.png)|STWE008| +|AK47|30|ak47
355|6|![](%sa-w/ak47icon.png)|STWE009| +|M4|31|m4
356|6|![](%sa-w/M4icon.png)|STWE010| +|Tec9|32|tec9
372|5|![](%sa-w/tec9icon.png)|STWE011| +|Rifle|33|cuntgun
357|7|![](%sa-w/cuntgunicon.png)|RIFLE| +|Sniper Rifle|34|sniper
358|7|![](%sa-w/SNIPERicon.png)|SNIPER| +|Rocket Launcher|35|rocketla
359|8|![](%sa-w/rocketlaicon.png)|ROCKET| +|Heat Seeking Rocket Launcher|36|heatseek
360|8|![](%sa-w/heatseekicon.png)|ROCKHS| +|Flame Thrower|37|flame
361|8|![](%sa-w/flameicon.png)|FLAMET| +|Minigun|38|minigun
362|8|![](%sa-w/minigunicon.png)|MINIGU| +|Sachet Charges|39|satchel
363|9|![](%sa-w/satchelicon.png)|WEAP25| +|Detonator|40|remote
364|13|![](%sa-w/bombicona.png)|WEAP40| +|Spray Paint|41|spraycan
365|10|![](%sa-w/SPRAYCANicon.png)|WEAP13| +|Fire Extinguisher|42|fire_ex
366|10|![](%sa-w/fire_exicon.png)|WEAP14| +|Camera|43|camera
367|10|![](%sa-w/Cameraicon.png)|WEAP15| +|Nightvision Goggles|44|nvgoggles
368|12|![](%sa-w/irgogglesicon.png)|WEAP16| +|Thermal Goggles|45|irgoggles
369|12|![](%sa-w/irgogglesicon.png)|WEAP17| +|Parachute|46|gun_para
371|12|![](%sa-w/gun_paraIcon.png)|WEAP18| +|Jetpack|\s|jetpack
370|\s|![](%sa-w/jetpackicon.png)|\s| +|Cellphone|\s|cellphone
330|\s|![](%sa-w/cellphoneicon.png)|\s| - - - \ No newline at end of file + \ No newline at end of file diff --git a/en/scm-documentation/sa/weather.html b/en/scm-documentation/sa/weather.html index ebb23ef..757363a 100644 --- a/en/scm-documentation/sa/weather.html +++ b/en/scm-documentation/sa/weather.html @@ -11,51 +11,31 @@ ```sb3 01b6: set_weather <id> ``` - - - - - - - - - - -
DescriptionIDGXT
+|Description|ID|GXT| +|-| +|LA: Extra Sunny|0|WEATH0| +|LA: Sunny|1|WEATH1| +|LA: Extra Sunny Smog|2|WEATH2| +|LA: Sunny Smog|3|WEATH3| +|LA: Cloudy|4|WEATH4| +|SF: Sunny|5|WEATH5| +|SF: Extra Sunny|6|WEATH6| +|SF: Cloudy|7|WEATH7| +|SF: Rainy|8|WEATH8| +|SF: Foggy|9|WEATH9| +|LV: Sunny|10|WEATH10| +|LV: Extra Sunny|11|WEATH11| +|LV: Cloudy|12|WEATH12| +|C: Extra Sunny|13|WEATH13| +|C: Sunny|14|WEATH14| +|C: Cloudy|15|WEATH15| +|C: Rainy|16|WEATH16| +|D: Extra Sunny|17|WEATH17| +|D: Sunny|18|WEATH18| +|D: Sandstorm|19|WEATH19| +|S: Underwater|20|WEATH20| +|S: Extracolours 1|21|WEATH21| +|S: Extracolours 2|22|WEATH22| + > **L**os **S**antos, **S**an **F**ierro, **L**as **V**enturas, **C**ountryside, **D**esert, **S**pecial - - \ No newline at end of file + \ No newline at end of file diff --git a/en/scm-documentation/sa/zones.html b/en/scm-documentation/sa/zones.html index d833d53..f40a25b 100644 --- a/en/scm-documentation/sa/zones.html +++ b/en/scm-documentation/sa/zones.html @@ -11,2120 +11,455 @@ ```sb3 0767: set_zone 'CARSO' type <type> ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TypeDescription
0BUSINESS
1DESERT
2ENTERTAINMENT
3COUNTRYSIDE
4RESIDENTIAL_RICH
5RESIDENTIAL_AVERAGE
6RESIDENTIAL_POOR
7GANGLAND
8BEACH
9SHOPPING
10PARK
11INDUSTRY
12ENTERTAINMENT_BUSY
13SHOPPING_BUSY
14SHOPPING_POSH
15RESIDENTIAL_RICH_SECLUDED
16AIRPORT
17GOLF_CLUB
18OUT_OF_TOWN_FACTORY
19AIRPORT_RUNWAY
+ +|Type|Description| +|-| +|0|BUSINESS| +|1|DESERT| +|2|ENTERTAINMENT| +|3|COUNTRYSIDE| +|4|RESIDENTIAL_RICH| +|5|RESIDENTIAL_AVERAGE| +|6|RESIDENTIAL_POOR| +|7|GANGLAND| +|8|BEACH| +|9|SHOPPING| +|10|PARK| +|11|INDUSTRY| +|12|ENTERTAINMENT_BUSY| +|13|SHOPPING_BUSY| +|14|SHOPPING_POSH| +|15|RESIDENTIAL_RICH_SECLUDED| +|16|AIRPORT| +|17|GOLF_CLUB| +|18|OUT_OF_TOWN_FACTORY| +|19|AIRPORT_RUNWAY| ### Los Santos - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
LALos SantosLA
RIH1aRichmanRIH
RIH1bRichmanRIH
RIH2RichmanRIH
RIH3aRichmanRIH
RIH3bRichmanRIH
RIH4RichmanRIH
RIH5aRichmanRIH
RIH5bRichmanRIH
RIH6aRichmanRIH
RIH6bRichmanRIH
MUL1aMulhollandMUL
MUL1bMulhollandMUL
MUL1cMulhollandMUL
MUL2aMulhollandMUL
MUL2bMulhollandMUL
MUL3MulhollandMUL
MUL4MulhollandMUL
MUL5aMulhollandMUL
MUL5bMulhollandMUL
MUL5cMulhollandMUL
MUL6MulhollandMUL
MUL7aMulhollandMUL
MUL7bMulhollandMUL
MULINTMulholland IntersectionMULINT
SUN1TempleSUN
SUN2TempleSUN
SUN3aTempleSUN
SUN3bTempleSUN
SUN3cTempleSUN
SUN4TempleSUN
CHC1aLas ColinasCHC
CHC1bLas ColinasCHC
CHC2aLas ColinasCHC
CHC2bLas ColinasCHC
CHC3Las ColinasCHC
CHC4aLas ColinasCHC
CHC4bLas ColinasCHC
VIN1aVinewoodVIN
VIN1bVinewoodVIN
VIN2VinewoodVIN
VIN3VinewoodVIN
LDT1aDowntown Los SantosLDT
LDT1bDowntown Los SantosLDT
LDT1cDowntown Los SantosLDT
LDT3Downtown Los SantosLDT
LDT4Downtown Los SantosLDT
LDT5Downtown Los SantosLDT
LDT6Downtown Los SantosLDT
LDT7Downtown Los SantosLDT
LDT8Downtown Los SantosLDT
GLN1Glen ParkGLN
GLN1bGlen ParkGLN
GLN2aGlen ParkGLN
LFL1aLos FloresLFL
LFL1bLos FloresLFL
MKT1MarketMKT
MKT2MarketMKT
MKT3MarketMKT
MKT4MarketMKT
MARKSTMarket StationMARKST
JEF1aJeffersonJEF
JEF1bJeffersonJEF
JEF2effersonJEF
JEF3aJeffersonJEF
JEF3bJeffersonJEF
JEF3cJeffersonJEF
ROD1aRodeoROD
ROD1bRodeoROD
ROD1cRodeoROD
ROD2aRodeoROD
ROD2bRodeoROD
ROD3aRodeoROD
ROD3bRodeoROD
ROD4aRodeoROD
ROD4bRodeoROD
ROD4cRodeoROD
ROD5aRodeoROD
ROD5bRodeoROD
MAR1MarinaMAR
MAR2MarinaMAR
MAR3MarinaMAR
THALL1CommerceCOM
COM1aCommerceCOM
COM1bCommerceCOM
COM2CommerceCOM
COM3CommerceCOM
COM4CommerceCOM
ELS1aEast Los SantosELS
ELS1bEast Los SantosELS
ELS2East Los SantosELS
ELS3aEast Los SantosELS
ELS3bEast Los SantosELS
ELS3cEast Los SantosELS
ELS4East Los SantosELS
EBE1East BeachEBE
EBE2aEast BeachEBE
EBE2bEast BeachEBE
EBE3cEast BeachEBE
PER1Pershing SquarePER1
IWD1IdlewoodIWD
IWD2IdlewoodIWD
IWD3aIdlewoodIWD
IWD3bIdlewoodIWD
IWD4IdlewoodIWD
IWD5IdlewoodIWD
GAN1GantonGAN
GAN2GantonGAN
CONF1aConference CenterCONF
CONF1bConference CenterCONF
CITYSCity HallCITYS
LMEX1aLittle MexicoLMEX
LMEX1bLittle MexicoLMEX
UNITYUnity StationUNITY
SMB1Santa Maria BeachSMB
SMB2Santa Maria BeachSMB
VERO1Verona BeachVERO
VERO2Verona BeachVERO
VERO3Verona BeachVERO
VERO4aerona BeachVERO
VERO4bVerona BeachVERO
LIND1aWillowfieldLIND
LIND1bWillowfieldLIND
LIND2aWillowfieldLIND
LIND2bWillowfieldLIND
LIND3WillowfieldLIND
LIND4aWillowfieldLIND
LIND4cWillowfieldLIND
ELCO1El CoronaELCO
ELCO2El CoronaELCO
PLSPlaya del SevillePLS
BLUF1aVerdant BluffsBLUF
BLUF1bVerdant BluffsBLUF
BLUF2Verdant BluffsBLUF
LAIR1Los Santos InternationalLAIR
LAIR2aLos Santos InternationalLAIR
LAIR2bLos Santos InternationalLAIR
LBAG1Los Santos InternationalLAIR
LBAG2Los Santos InternationalLAIR
LBAG3Los Santos InternationalLAIR
LDOC1aOcean DocksLDOC
LDOC1bOcean DocksLDOC
LDOC2Ocean DocksLDOC
LDOC3aOcean DocksLDOC
LDOC3bOcean DocksLDOC
LDOC3cOcean DocksLDOC
LDOC4Ocean DocksLDOC
+|Zone ID|GXT Value|GXT Key| +|-| +|LA|Los Santos|LA| +|RIH1a|Richman|RIH| +|RIH1b|Richman|RIH| +|RIH2|Richman|RIH| +|RIH3a|Richman|RIH| +|RIH3b|Richman|RIH| +|RIH4|Richman|RIH| +|RIH5a|Richman|RIH| +|RIH5b|Richman|RIH| +|RIH6a|Richman|RIH| +|RIH6b|Richman|RIH| +|MUL1a|Mulholland|MUL| +|MUL1b|Mulholland|MUL| +|MUL1c|Mulholland|MUL| +|MUL2a|Mulholland|MUL| +|MUL2b|Mulholland|MUL| +|MUL3|Mulholland|MUL| +|MUL4|Mulholland|MUL| +|MUL5a|Mulholland|MUL| +|MUL5b|Mulholland|MUL| +|MUL5c|Mulholland|MUL| +|MUL6|Mulholland|MUL| +|MUL7a|Mulholland|MUL| +|MUL7b|Mulholland|MUL| +|MULINT|Mulholland Intersection|MULINT| +|SUN1|Temple|SUN| +|SUN2|Temple|SUN| +|SUN3a|Temple|SUN| +|SUN3b|Temple|SUN| +|SUN3c|Temple|SUN| +|SUN4|Temple|SUN| +|CHC1a|Las Colinas|CHC| +|CHC1b|Las Colinas|CHC| +|CHC2a|Las Colinas|CHC| +|CHC2b|Las Colinas|CHC| +|CHC3|Las Colinas|CHC| +|CHC4a|Las Colinas|CHC| +|CHC4b|Las Colinas|CHC| +|VIN1a|Vinewood|VIN| +|VIN1b|Vinewood|VIN| +|VIN2|Vinewood|VIN| +|VIN3|Vinewood|VIN| +|LDT1a|Downtown Los Santos|LDT| +|LDT1b|Downtown Los Santos|LDT| +|LDT1c|Downtown Los Santos|LDT| +|LDT3|Downtown Los Santos|LDT| +|LDT4|Downtown Los Santos|LDT| +|LDT5|Downtown Los Santos|LDT| +|LDT6|Downtown Los Santos|LDT| +|LDT7|Downtown Los Santos|LDT| +|LDT8|Downtown Los Santos|LDT| +|GLN1|Glen Park|GLN| +|GLN1b|Glen Park|GLN| +|GLN2a|Glen Park|GLN| +|LFL1a|Los Flores|LFL| +|LFL1b|Los Flores|LFL| +|MKT1|Market|MKT| +|MKT2|Market|MKT| +|MKT3|Market|MKT| +|MKT4|Market|MKT| +|MARKST|Market Station|MARKST| +|JEF1a|Jefferson|JEF| +|JEF1b|Jefferson|JEF| +|JEF2|efferson|JEF| +|JEF3a|Jefferson|JEF| +|JEF3b|Jefferson|JEF| +|JEF3c|Jefferson|JEF| +|ROD1a|Rodeo|ROD| +|ROD1b|Rodeo|ROD| +|ROD1c|Rodeo|ROD| +|ROD2a|Rodeo|ROD| +|ROD2b|Rodeo|ROD| +|ROD3a|Rodeo|ROD| +|ROD3b|Rodeo|ROD| +|ROD4a|Rodeo|ROD| +|ROD4b|Rodeo|ROD| +|ROD4c|Rodeo|ROD| +|ROD5a|Rodeo|ROD| +|ROD5b|Rodeo|ROD| +|MAR1|Marina|MAR| +|MAR2|Marina|MAR| +|MAR3|Marina|MAR| +|THALL1|Commerce|COM| +|COM1a|Commerce|COM| +|COM1b|Commerce|COM| +|COM2|Commerce|COM| +|COM3|Commerce|COM| +|COM4|Commerce|COM| +|ELS1a|East Los Santos|ELS| +|ELS1b|East Los Santos|ELS| +|ELS2|East Los Santos|ELS| +|ELS3a|East Los Santos|ELS| +|ELS3b|East Los Santos|ELS| +|ELS3c|East Los Santos|ELS| +|ELS4|East Los Santos|ELS| +|EBE1|East Beach|EBE| +|EBE2a|East Beach|EBE| +|EBE2b|East Beach|EBE| +|EBE3c|East Beach|EBE| +|PER1|Pershing Square|PER1| +|IWD1|Idlewood|IWD| +|IWD2|Idlewood|IWD| +|IWD3a|Idlewood|IWD| +|IWD3b|Idlewood|IWD| +|IWD4|Idlewood|IWD| +|IWD5|Idlewood|IWD| +|GAN1|Ganton|GAN| +|GAN2|Ganton|GAN| +|CONF1a|Conference Center|CONF| +|CONF1b|Conference Center|CONF| +|CITYS|City Hall|CITYS| +|LMEX1a|Little Mexico|LMEX| +|LMEX1b|Little Mexico|LMEX| +|UNITY|Unity Station|UNITY| +|SMB1|Santa Maria Beach|SMB| +|SMB2|Santa Maria Beach|SMB| +|VERO1|Verona Beach|VERO| +|VERO2|Verona Beach|VERO| +|VERO3|Verona Beach|VERO| +|VERO4a|erona Beach|VERO| +|VERO4b|Verona Beach|VERO| +|LIND1a|Willowfield|LIND| +|LIND1b|Willowfield|LIND| +|LIND2a|Willowfield|LIND| +|LIND2b|Willowfield|LIND| +|LIND3|Willowfield|LIND| +|LIND4a|Willowfield|LIND| +|LIND4c|Willowfield|LIND| +|ELCO1|El Corona|ELCO| +|ELCO2|El Corona|ELCO| +|PLS|Playa del Seville|PLS| +|BLUF1a|Verdant Bluffs|BLUF| +|BLUF1b|Verdant Bluffs|BLUF| +|BLUF2|Verdant Bluffs|BLUF| +|LAIR1|Los Santos International|LAIR| +|LAIR2a|Los Santos International|LAIR| +|LAIR2b|Los Santos International|LAIR| +|LBAG1|Los Santos International|LAIR| +|LBAG2|Los Santos International|LAIR| +|LBAG3|Los Santos International|LAIR| +|LDOC1a|Ocean Docks|LDOC| +|LDOC1b|Ocean Docks|LDOC| +|LDOC2|Ocean Docks|LDOC| +|LDOC3a|Ocean Docks|LDOC| +|LDOC3b|Ocean Docks|LDOC| +|LDOC3c|Ocean Docks|LDOC| +|LDOC4|Ocean Docks|LDOC| ### Red County - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
REDRed CountyRED
MONTMontgomeryMONT
MONT1MontgomeryMONT
MONINTMontgomery IntersectionMONINT
HBARNSHampton BarnsHBARNS
HANKYHankypanky PointHANKY
BLUACBlueberry AcresBLUAC
FERNFern RidgeFERN
PANOPThe PanopticonPANOP
PALOPalomino CreekPALO
BLUEBBlueberryBLUEB
BLUEB1BlueberryBLUEB
TOPFAHilltop FarmTOPFA
NROCKNorth RockNROCK
DILLIDillimoreDILLI
+|Zone ID|GXT Value|GXT Key| +|-| +|RED|Red County|RED| +|MONT|Montgomery|MONT| +|MONT1|Montgomery|MONT| +|MONINT|Montgomery Intersection|MONINT| +|HBARNS|Hampton Barns|HBARNS| +|HANKY|Hankypanky Point|HANKY| +|BLUAC|Blueberry Acres|BLUAC| +|FERN|Fern Ridge|FERN| +|PANOP|The Panopticon|PANOP| +|PALO|Palomino Creek|PALO| +|BLUEB|Blueberry|BLUEB| +|BLUEB1|Blueberry|BLUEB| +|TOPFA|Hilltop Farm|TOPFA| +|NROCK|North Rock|NROCK| +|DILLI|Dillimore|DILLI| ### San Fierro - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
SFSan FierroSF
BATTPBattery PointBATTP
ESPN1Esplanade NorthESPN
ESPN2Esplanade NorthESPN
ESPN3Esplanade NorthESPN
ESPE1Esplanade EastESPE
ESPE2Esplanade EastESPE
ESPE3Esplanade EastESPE
JUNIHOJuniper HollowJUNIHO
SFDWT1DowntownSFDWT
SFDWT2DowntownSFDWT
SFDWT3DowntownSFDWT
SFDWT4DowntownSFDWT
SFDWT5DowntownSFDWT
SFDWT6DowntownSFDWT
PARAParadisoPARA
CALTCalton HeightsCALT
FINAFinancialFINA
BAYVPalisadesBAYV
JUNIHIJuniper HillJUNIHI
CHINAChinatownCHINA
CIVISanta FloraCIVI
WESTP1QueensWESTP
WESTP2QueensWESTP
WESTP3QueensWESTP
CITYSCity HallCITYS
THEA1King'sTHEA
THEA2King'sTHEA
THEA3King'sTHEA
EASB1Easter BasinEASB
EASB2Easter BasinEASB
GARCGarciaGARC
SFGLF3GarciaGARC
CRANBCranberry StationCRANB
OCEAF1Ocean FlatsOCEAF
OCEAF2Ocean FlatsOCEAF
OCEAF3Ocean FlatsOCEAF
HASHHashburyHASH
DOH1DohertyDOH
DOH2DohertyDOH
SFBAG2Easter Bay Airport (English)SFAIR
SFBAG3Easter Bay Airport (English)SFAIR
SFBAG1Easter Bay Airport (English)SFAIR
SFAIR1Easter Bay Airport (English)SFAIR
SFAIR2Easter Bay Airport (English)SFAIR
SFAIR3Easter Bay Airport (English)SFAIR
SFAIR4Easter Bay Airport (English)SFAIR
SFAIR5Easter Bay Airport (English)SFAIR
+|Zone ID|GXT Value|GXT Key| +|-| +|SF|San Fierro|SF| +|BATTP|Battery Point|BATTP| +|ESPN1|Esplanade North|ESPN| +|ESPN2|Esplanade North|ESPN| +|ESPN3|Esplanade North|ESPN| +|ESPE1|Esplanade East|ESPE| +|ESPE2|Esplanade East|ESPE| +|ESPE3|Esplanade East|ESPE| +|JUNIHO|Juniper Hollow|JUNIHO| +|SFDWT1|Downtown|SFDWT| +|SFDWT2|Downtown|SFDWT| +|SFDWT3|Downtown|SFDWT| +|SFDWT4|Downtown|SFDWT| +|SFDWT5|Downtown|SFDWT| +|SFDWT6|Downtown|SFDWT| +|PARA|Paradiso|PARA| +|CALT|Calton Heights|CALT| +|FINA|Financial|FINA| +|BAYV|Palisades|BAYV| +|JUNIHI|Juniper Hill|JUNIHI| +|CHINA|Chinatown|CHINA| +|CIVI|Santa Flora|CIVI| +|WESTP1|Queens|WESTP| +|WESTP2|Queens|WESTP| +|WESTP3|Queens|WESTP| +|CITYS|City Hall|CITYS| +|THEA1|King's|THEA| +|THEA2|King's|THEA| +|THEA3|King's|THEA| +|EASB1|Easter Basin|EASB| +|EASB2|Easter Basin|EASB| +|GARC|Garcia|GARC| +|SFGLF3|Garcia|GARC| +|CRANB|Cranberry Station|CRANB| +|OCEAF1|Ocean Flats|OCEAF| +|OCEAF2|Ocean Flats|OCEAF| +|OCEAF3|Ocean Flats|OCEAF| +|HASH|Hashbury|HASH| +|DOH1|Doherty|DOH| +|DOH2|Doherty|DOH| +|SFBAG2|Easter Bay Airport (English)|SFAIR| +|SFBAG3|Easter Bay Airport (English)|SFAIR| +|SFBAG1|Easter Bay Airport (English)|SFAIR| +|SFAIR1|Easter Bay Airport (English)|SFAIR| +|SFAIR2|Easter Bay Airport (English)|SFAIR| +|SFAIR3|Easter Bay Airport (English)|SFAIR| +|SFAIR4|Easter Bay Airport (English)|SFAIR| +|SFAIR5|Easter Bay Airport (English)|SFAIR| ### Flint County - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
FLINTCFlint CountyFLINTC
CUNTC1Avispa Country ClubCUNTC
CUNTC2Avispa Country ClubCUNTC
CUNTC3Avispa Country ClubCUNTC
SFGLF1Avispa Country ClubCUNTC
SFGLF2Avispa Country ClubCUNTC
SFGLF4Avispa Country ClubCUNTC
HAULFallen TreeHAUL
HILLPMissionary HillHILLP
EBAYEaster Bay ChemicalEBAY
EBAY2Easter Bay ChemicalEBAY
ETUNNEaster TunnelETUNN
SILLY1Foster ValleySILLY
SILLY2Foster ValleySILLY
SILLY3Foster ValleySILLY
SILLY4Foster ValleySILLY
FARMThe FarmFARM
BEACOBeacon HillBEACO
FLINTIFlint IntersectionFLINTI
FLINTRFlint RangeFLINTR
LEAFYLeafy HollowLEAFY
BACKOBack o BeyondBACKO
+|Zone ID|GXT Value|GXT Key| +|-| +|FLINTC|Flint County|FLINTC| +|CUNTC1|Avispa Country Club|CUNTC| +|CUNTC2|Avispa Country Club|CUNTC| +|CUNTC3|Avispa Country Club|CUNTC| +|SFGLF1|Avispa Country Club|CUNTC| +|SFGLF2|Avispa Country Club|CUNTC| +|SFGLF4|Avispa Country Club|CUNTC| +|HAUL|Fallen Tree|HAUL| +|HILLP|Missionary Hill|HILLP| +|EBAY|Easter Bay Chemical|EBAY| +|EBAY2|Easter Bay Chemical|EBAY| +|ETUNN|Easter Tunnel|ETUNN| +|SILLY1|Foster Valley|SILLY| +|SILLY2|Foster Valley|SILLY| +|SILLY3|Foster Valley|SILLY| +|SILLY4|Foster Valley|SILLY| +|FARM|The Farm|FARM| +|BEACO|Beacon Hill|BEACO| +|FLINTI|Flint Intersection|FLINTI| +|FLINTR|Flint Range|FLINTR| +|LEAFY|Leafy Hollow|LEAFY| +|BACKO|Back o Beyond|BACKO| ### Whetstone - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
WHETWhetstoneWHET
MTCHI1Mount ChiliadMTCHI
MTCHI2Mount ChiliadMTCHI
MTCHI3Mount ChiliadMTCHI
MTCHI4Mount ChiliadMTCHI
CREEKShady CreeksCREEK
CREEK1Shady CreeksCREEK
SHACAShady CabinSHACA
ANGPIAngel PineANGPI
+|Zone ID|GXT Value|GXT Key| +|-| +|WHET|Whetstone|WHET| +|MTCHI1|Mount Chiliad|MTCHI| +|MTCHI2|Mount Chiliad|MTCHI| +|MTCHI3|Mount Chiliad|MTCHI| +|MTCHI4|Mount Chiliad|MTCHI| +|CREEK|Shady Creeks|CREEK| +|CREEK1|Shady Creeks|CREEK| +|SHACA|Shady Cabin|SHACA| +|ANGPI|Angel Pine|ANGPI| ### Las Venturas - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
VELas VenturasVE
YBELL1Yellow Bell Golf CourseYBELL
YBELL2Yellow Bell Golf CourseYBELL
SPINSpinybedSPIN
KACCK.A.C.C. Military FuelsKACC
PRP1Prickle PinePRP
PRP2Prickle PinePRP
PRP3Prickle PinePRP
PRP4Prickle PinePRP
YELLOWYellow Bell StationYELLOW
JTN1Julius Thruway NorthJTN
JTN2Julius Thruway NorthJTN
JTN3Julius Thruway NorthJTN
JTN4Julius Thruway NorthJTN
JTN5Julius Thruway NorthJTN
JTN6Julius Thruway NorthJTN
JTN7Julius Thruway NorthJTN
JTN8Julius Thruway NorthJTN
PINTPilson IntersectionPINT
ISLEThe Emerald IsleISLE
ROCE1Roca EscalanteROCE
ROCE2Roca EscalanteROCE
WWEWhitewood EstatesWWE
WWE1Whitewood EstatesWWE
OVSOld Venturas StripOVS
CREECreekCREE
REDE1Redsands EastREDE
REDE2Redsands EastREDE
REDE3Redsands EastREDE
REDW1Redsands WestREDW
REDW2Redsands WestREDW
REDW3Redsands WestREDW
REDW4Redsands WestREDW
HGPHarry Gold ParkwayHGP
STRIP1The StripSTRIP
STRIP2The StripSTRIP
JTW1Julius Thruway WestJTW
JTW2Julius Thruway WestJTW
VISA1The VisageVISA
VISA2The VisageVISA
STAR1Starfish CasinoSTAR
STAR2Starfish CasinoSTAR
CONST1Starfish CasinoSTAR
RINGThe Clown's PocketRING
SRYSobell Rail YardsSRY
JTE1Julius Thruway EastJTE
JTE2Julius Thruway EastJTE
JTE3Julius Thruway EastJTE
JTE4Julius Thruway EastJTE
BFLD1BlackfieldBFLD
BFLD2BlackfieldBFLD
CALI1Caligula's PalaceCALI
CALI2Caligula's PalaceCALI
VAIR1Las Venturas Airport (English)VAIR
VAIR2Las Venturas Airport (English)VAIR
VAIR3Las Venturas Airport (English)VAIR
LVBAGLas Venturas Airport (English)VAIR
PIRAPirates in Men's PantsPIRA
ROYRoyal CasinoROY
PILL1PilgrimPILL
PILL2PilgrimPILL
LSTLinden StationLST
LINDENLinden StationLINDEN
HIGHThe High RollerHIGH
STRIP3The StripSTRIP
STRIP4The StripSTRIP
PINKThe Pink SwanPINK
CAMThe Camel's ToeCAM
GGC1Greenglass CollegeGGC
GGC2Greenglass CollegeGGC
LDSLinden SideLDS
LVA1LVA Freight DepotLVA
LVA2LVA Freight DepotLVA
LVA3LVA Freight DepotLVA
LVA4LVA Freight DepotLVA
LVA5LVA Freight DepotLVA
DRAGThe Four Dragons CasinoDRAG
LOTCome-A-LotLOT
BINT1Blackfield IntersectionBINT
BINT2Blackfield IntersectionBINT
BINT3Blackfield IntersectionBINT
BINT4Blackfield IntersectionBINT
JTS1Julius Thruway SouthJTS
JTS2Julius Thruway SouthJTS
BFC1Blackfield ChapelBFC
BFC2Blackfield ChapelBFC
RIERandolph Industrial EstateRIE
LDMLast Dime MotelLDM
RSERockshore EastRSE
RSW1Rockshore WestRSW
+|Zone ID|GXT Value|GXT Key| +|-| +|VE|Las Venturas|VE| +|YBELL1|Yellow Bell Golf Course|YBELL| +|YBELL2|Yellow Bell Golf Course|YBELL| +|SPIN|Spinybed|SPIN| +|KACC|K.A.C.C. Military Fuels|KACC| +|PRP1|Prickle Pine|PRP| +|PRP2|Prickle Pine|PRP| +|PRP3|Prickle Pine|PRP| +|PRP4|Prickle Pine|PRP| +|YELLOW|Yellow Bell Station|YELLOW| +|JTN1|Julius Thruway North|JTN| +|JTN2|Julius Thruway North|JTN| +|JTN3|Julius Thruway North|JTN| +|JTN4|Julius Thruway North|JTN| +|JTN5|Julius Thruway North|JTN| +|JTN6|Julius Thruway North|JTN| +|JTN7|Julius Thruway North|JTN| +|JTN8|Julius Thruway North|JTN| +|PINT|Pilson Intersection|PINT| +|ISLE|The Emerald Isle|ISLE| +|ROCE1|Roca Escalante|ROCE| +|ROCE2|Roca Escalante|ROCE| +|WWE|Whitewood Estates|WWE| +|WWE1|Whitewood Estates|WWE| +|OVS|Old Venturas Strip|OVS| +|CREE|Creek|CREE| +|REDE1|Redsands East|REDE| +|REDE2|Redsands East|REDE| +|REDE3|Redsands East|REDE| +|REDW1|Redsands West|REDW| +|REDW2|Redsands West|REDW| +|REDW3|Redsands West|REDW| +|REDW4|Redsands West|REDW| +|HGP|Harry Gold Parkway|HGP| +|STRIP1|The Strip|STRIP| +|STRIP2|The Strip|STRIP| +|JTW1|Julius Thruway West|JTW| +|JTW2|Julius Thruway West|JTW| +|VISA1|The Visage|VISA| +|VISA2|The Visage|VISA| +|STAR1|Starfish Casino|STAR| +|STAR2|Starfish Casino|STAR| +|CONST1|Starfish Casino|STAR| +|RING|The Clown's Pocket|RING| +|SRY|Sobell Rail Yards|SRY| +|JTE1|Julius Thruway East|JTE| +|JTE2|Julius Thruway East|JTE| +|JTE3|Julius Thruway East|JTE| +|JTE4|Julius Thruway East|JTE| +|BFLD1|Blackfield|BFLD| +|BFLD2|Blackfield|BFLD| +|CALI1|Caligula's Palace|CALI| +|CALI2|Caligula's Palace|CALI| +|VAIR1|Las Venturas Airport (English)|VAIR| +|VAIR2|Las Venturas Airport (English)|VAIR| +|VAIR3|Las Venturas Airport (English)|VAIR| +|LVBAG|Las Venturas Airport (English)|VAIR| +|PIRA|Pirates in Men's Pants|PIRA| +|ROY|Royal Casino|ROY| +|PILL1|Pilgrim|PILL| +|PILL2|Pilgrim|PILL| +|LST|Linden Station|LST| +|LINDEN|Linden Station|LINDEN| +|HIGH|The High Roller|HIGH| +|STRIP3|The Strip|STRIP| +|STRIP4|The Strip|STRIP| +|PINK|The Pink Swan|PINK| +|CAM|The Camel's Toe|CAM| +|GGC1|Greenglass College|GGC| +|GGC2|Greenglass College|GGC| +|LDS|Linden Side|LDS| +|LVA1|LVA Freight Depot|LVA| +|LVA2|LVA Freight Depot|LVA| +|LVA3|LVA Freight Depot|LVA| +|LVA4|LVA Freight Depot|LVA| +|LVA5|LVA Freight Depot|LVA| +|DRAG|The Four Dragons Casino|DRAG| +|LOT|Come-A-Lot|LOT| +|BINT1|Blackfield Intersection|BINT| +|BINT2|Blackfield Intersection|BINT| +|BINT3|Blackfield Intersection|BINT| +|BINT4|Blackfield Intersection|BINT| +|JTS1|Julius Thruway South|JTS| +|JTS2|Julius Thruway South|JTS| +|BFC1|Blackfield Chapel|BFC| +|BFC2|Blackfield Chapel|BFC| +|RIE|Randolph Industrial Estate|RIE| +|LDM|Last Dime Motel|LDM| +|RSE|Rockshore East|RSE| +|RSW1|Rockshore West|RSW| ### Tierra Robada - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
ROBADTierra RobadaROBAD
ROBAD1Tierra RobadaROBAD
ELQUEEl QuebradosELQUE
SUNNNBaysideSUNNN
BYTUNBayside TunnelBYTUN
ALDEAAldea MalvadaALDEA
SUNMABayside MarinaSUNMA
BARRALas BarrancasBARRA
ROBINTRobada IntersectionROBINT
+|Zone ID|GXT Value|GXT Key| +|-| +|ROBAD|Tierra Robada|ROBAD| +|ROBAD1|Tierra Robada|ROBAD| +|ELQUE|El Quebrados|ELQUE| +|SUNNN|Bayside|SUNNN| +|BYTUN|Bayside Tunnel|BYTUN| +|ALDEA|Aldea Malvada|ALDEA| +|SUNMA|Bayside Marina|SUNMA| +|BARRA|Las Barrancas|BARRA| +|ROBINT|Robada Intersection|ROBINT| ### Bone County - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
BONEBone CountyBONE
PAYASLas PayasadasPAYAS
VALLEValle OcultadoVALLE
ELCAEl Castillo del DiabloELCA
ELCA1El Castillo del DiabloELCA
ELCA2El Castillo del DiabloELCA
ARCOArco del OesteARCO
MEADVerdant MeadowsMEAD
BRUJALas BrujasBRUJA
TOMRegular TomTOM
RESTRestricted AreaREST
BIGE'The Big Ear' (English)BIGE
PALMSGreen PalmsPALMS
OCTANOctane SpringsOCTAN
PROBELil' Probe InnPROBE
CARSOFort CarsonCARSO
QUARYHunter QuarryQUARY
+|Zone ID|GXT Value|GXT Key| +|-| +|BONE|Bone County|BONE| +|PAYAS|Las Payasadas|PAYAS| +|VALLE|Valle Ocultado|VALLE| +|ELCA|El Castillo del Diablo|ELCA| +|ELCA1|El Castillo del Diablo|ELCA| +|ELCA2|El Castillo del Diablo|ELCA| +|ARCO|Arco del Oeste|ARCO| +|MEAD|Verdant Meadows|MEAD| +|BRUJA|Las Brujas|BRUJA| +|TOM|Regular Tom|TOM| +|REST|Restricted Area|REST| +|BIGE|'The Big Ear' (English)|BIGE| +|PALMS|Green Palms|PALMS| +|OCTAN|Octane Springs|OCTAN| +|PROBE|Lil' Probe Inn|PROBE| +|CARSO|Fort Carson|CARSO| +|QUARY|Hunter Quarry|QUARY| ### Lakes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
LSINLLos Santos InletLSINL
FLINWFlint WaterFLINW
FISHFisher's LagoonFISH
SANB1San Fierro BaySANB
SANB2San Fierro BaySANB
SHERRSherman ReservoirSHERR
SASOSan Andreas SoundSASO
+|Zone ID|GXT Value|GXT Key| +|-| +|LSINL|Los Santos Inlet|LSINL| +|FLINW|Flint Water|FLINW| +|FISH|Fisher's Lagoon|FISH| +|SANB1|San Fierro Bay|SANB| +|SANB2|San Fierro Bay|SANB| +|SHERR|Sherman Reservoir|SHERR| +|SASO|San Andreas Sound|SASO| ### Bridges - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
GANTBGant BridgeGANTB
GANTB1Gant BridgeGANTB
*DAMThe Sherman DamDAM
GARVGarver BridgeGARV
GARV1Garver BridgeGARV
GARV2Garver BridgeGARV
KINCKincaid BridgeKINC
KINC1Kincaid BridgeKINC
KINC2Kincaid BridgeKINC
FALLOFallow BridgeFALLO
MARTMartin BridgeMART
MAKOThe Mako SpanMAKO
FREDFrederick BridgeFRED
+|Zone ID|GXT Value|GXT Key| +|-| +|GANTB|Gant Bridge|GANTB| +|GANTB1|Gant Bridge|GANTB| +|*DAM|The Sherman Dam|DAM| +|GARV|Garver Bridge|GARV| +|GARV1|Garver Bridge|GARV| +|GARV2|Garver Bridge|GARV| +|KINC|Kincaid Bridge|KINC| +|KINC1|Kincaid Bridge|KINC| +|KINC2|Kincaid Bridge|KINC| +|FALLO|Fallow Bridge|FALLO| +|MART|Martin Bridge|MART| +|MAKO|The Mako Span|MAKO| +|FRED|Frederick Bridge|FRED| \ No newline at end of file diff --git a/en/scm-documentation/vc/buttons.html b/en/scm-documentation/vc/buttons.html index ba91795..ff4e2d2 100644 --- a/en/scm-documentation/vc/buttons.html +++ b/en/scm-documentation/vc/buttons.html @@ -8,143 +8,32 @@ - ```sb3 00E1: key_pressed 0 <button> ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
ButtonEnumOn footIn a vehicle
0LEFTSTICKXLeft / RightSteer Left / Right
1LEFTSTICKYForward / BackwardsSteer Forward / Backward
2RIGHTSTICKXSpecial Ctrl Left / RightTurret Left / Right
3RIGHTSTICKYSpecial Ctrl Up / DownTurret Up / Down, Lean Up / Down
4LEFTSHOULDER1ActionRadio
5LEFTSHOULDER2Previous WeaponLook Left
6RIGHTSHOULDER1AimHandbrake
7RIGHTSHOULDER2Next WeaponLook Right
8DPADUPForward
9DPADDOWNBackward
10DPADLEFTStrafe LeftSteer Left
11DPADRIGHTStrafe RightSteer Right
12START
13SELECTChange CameraChange Camera
14SQUAREJump / Zoom InBrake / Reverse
15TRIANGLEEnter vehicleExit vehicle
16CROSSSprint / Zoom OutAccelerate
17CIRCLEAttackShoot
18LEFTSHOCKCrouchHorn
19RIGHTSHOCKLook BehindSub-mission
+|Button|Enum|On foot|In a vehicle| +|-| +|0|LEFTSTICKX|Left / Right|Steer Left / Right| +|1|LEFTSTICKY|Forward / Backwards|Steer Forward / Backward| +|2|RIGHTSTICKX|Special Ctrl Left / Right|Turret Left / Right| +|3|RIGHTSTICKY|Special Ctrl Up / Down|Turret Up / Down, Lean Up / Down| +|4|LEFTSHOULDER1|Action|Radio| +|5|LEFTSHOULDER2|Previous Weapon|Look Left| +|6|RIGHTSHOULDER1|Aim|Handbrake| +|7|RIGHTSHOULDER2|Next Weapon|Look Right| +|8|DPADUP|Forward|\s| +|9|DPADDOWN|Backward|\s| +|10|DPADLEFT|Strafe Left|Steer Left| +|11|DPADRIGHT|Strafe Right|Steer Right| +|12|START|\s|\s| +|13|SELECT|Change Camera|Change Camera| +|14|SQUARE|Jump / Zoom In|Brake / Reverse| +|15|TRIANGLE|Enter vehicle|Exit vehicle| +|16|CROSS|Sprint / Zoom Out|Accelerate| +|17|CIRCLE|Attack|Shoot| +|18|LEFTSHOCK|Crouch|Horn| +|19|RIGHTSHOCK|Look Behind|Sub-mission| [https://gtamods.com/wiki/00E1](https://gtamods.com/wiki/00E1) diff --git a/en/scm-documentation/vc/gangs.html b/en/scm-documentation/vc/gangs.html index 516fbfc..14a2abc 100644 --- a/en/scm-documentation/vc/gangs.html +++ b/en/scm-documentation/vc/gangs.html @@ -8,51 +8,16 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDName
0Cubans
1Haitians
2Street wannabees
3Columbians (Diaz's)
4Renta Cops (PIGs)
5Bikers
6Vercetti (yours)
7Golfers
8Army (special gang)
+|ID|Name| +|-| +|0|Cubans| +|1|Haitians| +|2|Street wannabees| +|3|Columbians (Diaz's)| +|4|Renta Cops (PIGs)| +|5|Bikers| +|6|Vercetti (yours)| +|7|Golfers| +|8|Army (special gang)| \ No newline at end of file diff --git a/en/scm-documentation/vc/garages.html b/en/scm-documentation/vc/garages.html index aa42205..5e1918f 100644 --- a/en/scm-documentation/vc/garages.html +++ b/en/scm-documentation/vc/garages.html @@ -8,177 +8,40 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDEnumDescription
1GARAGE_MISSIONPlaceholder garage (inactive garage)
2GARAGE_BOMBSHOP1Bomb shop with timed detonator
3GARAGE_BOMBSHOP2Bomb shop with engine ignition detonation
4GARAGE_BOMBSHOP3Bomb shop with remote-control detonator
5GARAGE_RESPRAY

Spray garage

It excludes Ambulance, Barracks, Bus, Coach, Enforcer, FBI Rancher, Firetruck, Police, Rhino

6GARAGE_COLLECTORSITEMSinvalid garage
7GARAGE_COLLECTSPECIFICCARSCar eater, functions similar to export garages but accepts any cars and gives no reward
8GARAGE_COLLECTCARS_1Sunshine Autos export garage 1
9GARAGE_COLLECTCARS_2Sunshine Autos export garage 2
10GARAGE_COLLECTCARS_3Sunshine Autos export garage 3
11GARAGE_FORCARTOCOMEOUTOFunused garage, normally closed but if opened it will stay opened if anything is in the garage and will close itself if there's nothing in the garage
12GARAGE_60SECONDSinvalid garage
13GARAGE_CRUSHERinvalid garage
14GARAGE_MISSION_KEEPCARunused garage, normally closed but if opened it will always close itself
15GARAGE_FOR_SCRIPT_TO_OPENunused garage, normally closed but if opened it can't close
16GARAGE_HIDEOUT_ONESave garage (El Swanko Casa)
17GARAGE_HIDEOUT_TWOSave garage (Hyman Condo 1)
18GARAGE_HIDEOUT_THREESave garage (Hyman Condo 2)
19GARAGE_FOR_SCRIPT_TO_OPEN_AND_CLOSEgarage used in "Copland", normally closed and can be controlled normally
20GARAGE_KEEPS_OPENING_FOR_SPECIFIC_CARunused garage, normally closed and can be controlled normally
21GARAGE_MISSION_KEEPCAR_REMAINCLOSEDunused garage, normally closed but if opened it will always close itself
22GARAGE_COLLECTCARS_4Sunshine Autos export garage 4
23GARAGE_FOR_SCRIPT_TO_OPEN_FOR_CARArmy garage used in "Sir, Yes Sir!", normally closed and can be controlled normally
24GARAGE_HIDEOUT_FOURSave garage (Hyman Condo 3)
25GARAGE_HIDEOUT_FIVESave garage (Ocean Heights Apartment)
26GARAGE_HIDEOUT_SIXSave garage (Links View Apartment)
27GARAGE_HIDEOUT_SEVENSave garage (Sunshine Autos 1)
28GARAGE_HIDEOUT_EIGHTSave garage (Sunshine Autos 2)
29GARAGE_HIDEOUT_NINESave garage (Sunshine Autos 3)
30GARAGE_HIDEOUT_TENSave garage (Sunshine Autos 4)
31GARAGE_HIDEOUT_ELEVENSave garage (Vercetti Estate)
32GARAGE_HIDEOUT_TWELVESave garage (unused)
+|ID|Enum|Description| +|-| +|1|GARAGE_MISSION|Placeholder garage (inactive garage)| +|2|GARAGE_BOMBSHOP1|Bomb shop with timed detonator| +|3|GARAGE_BOMBSHOP2|Bomb shop with engine ignition detonation| +|4|GARAGE_BOMBSHOP3|Bomb shop with remote-control detonator| +|5|GARAGE_RESPRAY|

Spray garage

It excludes Ambulance, Barracks, Bus, Coach, Enforcer, FBI Rancher, Firetruck, Police, Rhino

| +|6|GARAGE_COLLECTORSITEMS|invalid garage| +|7|GARAGE_COLLECTSPECIFICCARS|Car eater, functions similar to export garages but accepts any cars and gives no reward| +|8|GARAGE_COLLECTCARS_1|Sunshine Autos export garage 1| +|9|GARAGE_COLLECTCARS_2|Sunshine Autos export garage 2| +|10|GARAGE_COLLECTCARS_3|Sunshine Autos export garage 3| +|11|GARAGE_FORCARTOCOMEOUTOF|unused garage, normally closed but if opened it will stay opened if anything is in the garage and will close itself if there's nothing in the garage| +|12|GARAGE_60SECONDS|invalid garage| +|13|GARAGE_CRUSHER|invalid garage| +|14|GARAGE_MISSION_KEEPCAR|unused garage, normally closed but if opened it will always close itself| +|15|GARAGE_FOR_SCRIPT_TO_OPEN|unused garage, normally closed but if opened it can't close| +|16|GARAGE_HIDEOUT_ONE|Save garage (El Swanko Casa)| +|17|GARAGE_HIDEOUT_TWO|Save garage (Hyman Condo 1)| +|18|GARAGE_HIDEOUT_THREE|Save garage (Hyman Condo 2)| +|19|GARAGE_FOR_SCRIPT_TO_OPEN_AND_CLOSE|garage used in "Copland", normally closed and can be controlled normally| +|20|GARAGE_KEEPS_OPENING_FOR_SPECIFIC_CAR|unused garage, normally closed and can be controlled normally| +|21|GARAGE_MISSION_KEEPCAR_REMAINCLOSED|unused garage, normally closed but if opened it will always close itself| +|22|GARAGE_COLLECTCARS_4|Sunshine Autos export garage 4| +|23|GARAGE_FOR_SCRIPT_TO_OPEN_FOR_CAR|Army garage used in "Sir, Yes Sir!", normally closed and can be controlled normally| +|24|GARAGE_HIDEOUT_FOUR|Save garage (Hyman Condo 3)| +|25|GARAGE_HIDEOUT_FIVE|Save garage (Ocean Heights Apartment)| +|26|GARAGE_HIDEOUT_SIX|Save garage (Links View Apartment)| +|27|GARAGE_HIDEOUT_SEVEN|Save garage (Sunshine Autos 1)| +|28|GARAGE_HIDEOUT_EIGHT|Save garage (Sunshine Autos 2)| +|29|GARAGE_HIDEOUT_NINE|Save garage (Sunshine Autos 3)| +|30|GARAGE_HIDEOUT_TEN|Save garage (Sunshine Autos 4)| +|31|GARAGE_HIDEOUT_ELEVEN|Save garage (Vercetti Estate)| +|32|GARAGE_HIDEOUT_TWELVE|Save garage (unused)| [https://gtamods.com/wiki/Garage#Vice_City](https://gtamods.com/wiki/Garage#Vice_City) diff --git a/en/scm-documentation/vc/interiors.html b/en/scm-documentation/vc/interiors.html index 784f87e..1bc4b2e 100644 --- a/en/scm-documentation/vc/interiors.html +++ b/en/scm-documentation/vc/interiors.html @@ -8,87 +8,25 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDDescription
0outside
1hotel
2mansion
3bank
4mall
5stripclub
6lawyers
7cafe robina
8concert
9studio
10shooting range
11apartment/bikerbar
12policeHQ
14stadium1
15stadium2
16stadium3
17Malibu club
18Print Works
+|ID|Description| +|-| +|0|outside| +|1|hotel| +|2|mansion| +|3|bank| +|4|mall| +|5|stripclub| +|6|lawyers| +|7|cafe robina| +|8|concert| +|9|studio| +|10|shooting range| +|11|apartment/bikerbar| +|12|policeHQ| +|14|stadium1| +|15|stadium2| +|16|stadium3| +|17|Malibu club| +|18|Print Works| \ No newline at end of file diff --git a/en/scm-documentation/vc/pedtypes.html b/en/scm-documentation/vc/pedtypes.html index 45a5ca9..dfff587 100644 --- a/en/scm-documentation/vc/pedtypes.html +++ b/en/scm-documentation/vc/pedtypes.html @@ -8,108 +8,33 @@ - ```sb3 009A: 0@ = create_actor <id> 0 at 0 0 0 ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDType
0player1
1player2
2player3
3player4
4civmale
5civfemale
6cop
7gang1
8gang2
9gang3
10gang4
11gang5
12gang6
13gang7
14gang8
15gang9
16emergency
17fireman
18criminal
19unused
20prostitute
21special
+|ID|Type| +|-| +|0|player1| +|1|player2| +|2|player3| +|3|player4| +|4|civmale| +|5|civfemale| +|6|cop| +|7|gang1| +|8|gang2| +|9|gang3| +|10|gang4| +|11|gang5| +|12|gang6| +|13|gang7| +|14|gang8| +|15|gang9| +|16|emergency| +|17|fireman| +|18|criminal| +|19|*unused*| +|20|prostitute| +|21|special| \ No newline at end of file diff --git a/en/scm-documentation/vc/radar-icons.html b/en/scm-documentation/vc/radar-icons.html index a329221..096cc17 100644 --- a/en/scm-documentation/vc/radar-icons.html +++ b/en/scm-documentation/vc/radar-icons.html @@ -8,216 +8,47 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDIconDescription
0![](../../../img/vc/radar/dot.gif)Small pink square
1![](../../../img/vc/radar/radar_centre.gif)Player position
2![](../../../img/vc/radar/arrow.gif)Pink arrow
3![](../../../img/vc/radar/radar_north.gif)North
4![](../../../img/vc/radar/radar_avery.gif)Avery Carrington
5![](../../../img/vc/radar/radar_biker.gif)Big Mitch Baker
6![](../../../img/vc/radar/radar_cortez.gif)Colonel Cortez
7![](../../../img/vc/radar/radar_diaz.gif)Ricardo Diaz
8![](../../../img/vc/radar/radar_kent.gif)Kent Paul
9![](../../../img/vc/radar/radar_lawyer.gif)Lawyer (Ken Rosenberg)
10![](../../../img/vc/radar/radar_phil.gif)Phil Cassidy
11![](../../../img/vc/radar/bikers.gif)Biker's Bar
12![](../../../img/vc/radar/boatyard.gif)Boatyard
13![](../../../img/vc/radar/club.gif)Malibu Club
14![](../../../img/vc/radar/cubans.gif)Cubans
15![](../../../img/vc/radar/filmstudio.gif)Film Studio
16![](../../../img/vc/radar/gun.gif)Ammu-nation
17![](../../../img/vc/radar/haitians.gif)Haitians
18![](../../../img/vc/radar/hardware.gif)Toolshop
19![](../../../img/vc/radar/radar_save.gif)Safe House
20![](../../../img/vc/radar/radar_strip.gif)Pole Position Club
21![](../../../img/vc/radar/icecream.gif)Cherry Poppers Factory
22![](../../../img/vc/radar/kcabs.gif)Kaufman Cabs
23![](../../../img/vc/radar/lovefist.gif)Love Fist
24![](../../../img/vc/radar/printworks.gif)Print Works
25(no icon)
26![](../../../img/vc/radar/SunYard.gif)Sunshine Autos
27![](../../../img/vc/radar/spray.gif)Pay 'n' Spray
28![](../../../img/vc/radar/tshirt.gif)Clothes
29![](../../../img/vc/radar/tommy.gif)Vercetti's Mansion
30![](../../../img/vc/radar/phone.gif)Phone
31![](../../../img/vc/radar/RWildstyle.gif)Wildstyle Radio station
32![](../../../img/vc/radar/RFlash.gif)Flash Radio station
33![](../../../img/vc/radar/RKchat.gif)KChat Radio station
34![](../../../img/vc/radar/RFever.gif)Fever Radio station
35![](../../../img/vc/radar/RVRock.gif)VRock Radio station
36![](../../../img/vc/radar/rvcpr.gif)VCPR Radio station
37![](../../../img/vc/radar/REspantoso.gif)Espantoso Radio station
38![](../../../img/vc/radar/REmotion.gif)Emotion Radio station
39![](../../../img/vc/radar/RWave.gif)Wave Radio station
+|ID|Icon|Description| +|-| +|0|![](%vc-r/dot.gif)|Small pink square| +|1|![](%vc-r/radar_centre.gif)|Player position| +|2|![](%vc-r/arrow.gif)|Pink arrow| +|3|![](%vc-r/radar_north.gif)|North| +|4|![](%vc-r/radar_avery.gif)|Avery Carrington| +|5|![](%vc-r/radar_biker.gif)|Big Mitch Baker| +|6|![](%vc-r/radar_cortez.gif)|Colonel Cortez| +|7|![](%vc-r/radar_diaz.gif)|Ricardo Diaz| +|8|![](%vc-r/radar_kent.gif)|Kent Paul| +|9|![](%vc-r/radar_lawyer.gif)|Lawyer (Ken Rosenberg)| +|10|![](%vc-r/radar_phil.gif)|Phil Cassidy| +|11|![](%vc-r/bikers.gif)|Biker's Bar| +|12|![](%vc-r/boatyard.gif)|Boatyard| +|13|![](%vc-r/club.gif)|Malibu Club| +|14|![](%vc-r/cubans.gif)|Cubans| +|15|![](%vc-r/filmstudio.gif)|Film Studio| +|16|![](%vc-r/gun.gif)|Ammu-nation| +|17|![](%vc-r/haitians.gif)|Haitians| +|18|![](%vc-r/hardware.gif)|Toolshop| +|19|![](%vc-r/radar_save.gif)|Safe House| +|20|![](%vc-r/radar_strip.gif)|Pole Position Club| +|21|![](%vc-r/icecream.gif)|Cherry Poppers Factory| +|22|![](%vc-r/kcabs.gif)|Kaufman Cabs| +|23|![](%vc-r/lovefist.gif)|Love Fist| +|24|![](%vc-r/printworks.gif)|Print Works| +|25|\s|(no icon)| +|26|![](%vc-r/SunYard.gif)|Sunshine Autos| +|27|![](%vc-r/spray.gif)|Pay 'n' Spray| +|28|![](%vc-r/tshirt.gif)|Clothes| +|29|![](%vc-r/tommy.gif)|Vercetti's Mansion| +|30|![](%vc-r/phone.gif)|Phone| +|31|![](%vc-r/RWildstyle.gif)|Wildstyle Radio station| +|32|![](%vc-r/RFlash.gif)|Flash Radio station| +|33|![](%vc-r/RKchat.gif)|KChat Radio station| +|34|![](%vc-r/RFever.gif)|Fever Radio station| +|35|![](%vc-r/RVRock.gif)|VRock Radio station| +|36|![](%vc-r/rvcpr.gif)|VCPR Radio station| +|37|![](%vc-r/REspantoso.gif)|Espantoso Radio station| +|38|![](%vc-r/REmotion.gif)|Emotion Radio station| +|39|![](%vc-r/RWave.gif)|Wave Radio station| \ No newline at end of file diff --git a/en/scm-documentation/vc/weapons.html b/en/scm-documentation/vc/weapons.html index 1733ad8..dc0e9af 100644 --- a/en/scm-documentation/vc/weapons.html +++ b/en/scm-documentation/vc/weapons.html @@ -8,282 +8,48 @@ - ```sb3 04B8: get_char_weapon <char> in_slot_id <slot> type_to <type> ammo_to <ammo> model_to <model> ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TypeSlotNameModelIcon
01Unarmed![](../../../img/vc/weapon/fist.gif)
11Brass Knuckles#brassknuckle![](../../../img/vc/weapon/brassknuckle.gif)
22Screwdriver#screwdriver![](../../../img/vc/weapon/screwdriver.gif)
32Golf Club#golfclub![](../../../img/vc/weapon/golfclub.gif)
42Night Stick#nitestick![](../../../img/vc/weapon/nitestick.gif)
52Knife#knifecur![](../../../img/vc/weapon/knifecur.gif)
62Baseball Bat#bat![](../../../img/vc/weapon/bat.gif)
72Hammer#hammer![](../../../img/vc/weapon/hammer.gif)
82Cleaver#cleaver![](../../../img/vc/weapon/cleaver.gif)
92Machete#machete![](../../../img/vc/weapon/machete.gif)
102Katana#katana![](../../../img/vc/weapon/katana.gif)
112Chainsaw#chnsaw![](../../../img/vc/weapon/chnsaw.gif)
123Grenade#grenade![](../../../img/vc/weapon/grenade.gif)
133Remote Detonator#bomb![](../../../img/vc/weapon/bomb.gif)
143Tear gas#teargas![](../../../img/vc/weapon/teargas.gif)
153Molotov#molotov![](../../../img/vc/weapon/molotov.gif)
163Missile#missile
174Colt (.45)#colt45![](../../../img/vc/weapon/colt45.gif)
184Python (.357)#python![](../../../img/vc/weapon/python.gif)
195Chrome Shotgun#chromegun![](../../../img/vc/weapon/chromegun.gif)
205S.P.A.S 12 Shotgun#shotgspa![](../../../img/vc/weapon/shotgspa.gif)
215Stubby Shotgun#buddyshot![](../../../img/vc/weapon/buddyshot.gif)
226Tec-9#tec9![](../../../img/vc/weapon/tec9.gif)
236Uzi 9mm#uzi![](../../../img/vc/weapon/uzi.gif)
246Ingram Mac 10#ingramsl![](../../../img/vc/weapon/ingramsl.gif)
256MP5#mp5lng![](../../../img/vc/weapon/mp5lng.gif)
267M4#m4![](../../../img/vc/weapon/m4.gif)
277Ruger#ruger![](../../../img/vc/weapon/ruger.gif)
308Rocket Launcher#rocketla![](../../../img/vc/weapon/rocketla.gif)
318Flame Thrower#flame![](../../../img/vc/weapon/flame.gif)
328M60#M60![](../../../img/vc/weapon/m60.gif)
338Minigun#minigun![](../../../img/vc/weapon/minigun.gif)
358Helicopter Cannon
289Sniper Rifle#sniper![](../../../img/vc/weapon/sniper.gif)
299PSG-1 (.308 Sniper)#laser![](../../../img/vc/weapon/laser.gif)
3410Detonator
3610Camera#camera![](../../../img/vc/weapon/camera.gif)
+|Type|Slot|Name|Model|Icon| +|-| +|0|1|Unarmed|\s|![](%vc-w/fist.gif)| +|1|1|Brass Knuckles|#brassknuckle|![](%vc-w/brassknuckle.gif)| +|2|2|Screwdriver|#screwdriver|![](%vc-w/screwdriver.gif)| +|3|2|Golf Club|#golfclub|![](%vc-w/golfclub.gif)| +|4|2|Night Stick|#nitestick|![](%vc-w/nitestick.gif)| +|5|2|Knife|#knifecur|![](%vc-w/knifecur.gif)| +|6|2|Baseball Bat|#bat|![](%vc-w/bat.gif)| +|7|2|Hammer|#hammer|![](%vc-w/hammer.gif)| +|8|2|Cleaver|#cleaver|![](%vc-w/cleaver.gif)| +|9|2|Machete|#machete|![](%vc-w/machete.gif)| +|10|2|Katana|#katana|![](%vc-w/katana.gif)| +|11|2|Chainsaw|#chnsaw|![](%vc-w/chnsaw.gif)| +|12|3|Grenade|#grenade|![](%vc-w/grenade.gif)| +|13|3|Remote Detonator|#bomb|![](%vc-w/bomb.gif)| +|14|3|Tear gas|#teargas|![](%vc-w/teargas.gif)| +|15|3|Molotov|#molotov|![](%vc-w/molotov.gif)| +|16|3|Missile|#missile|\s| +|17|4|Colt (.45)|#colt45|![](%vc-w/colt45.gif)| +|18|4|Python (.357)|#python|![](%vc-w/python.gif)| +|19|5|Chrome Shotgun|#chromegun|![](%vc-w/chromegun.gif)| +|20|5|S.P.A.S 12 Shotgun|#shotgspa|![](%vc-w/shotgspa.gif)| +|21|5|Stubby Shotgun|#buddyshot|![](%vc-w/buddyshot.gif)| +|22|6|Tec-9|#tec9|![](%vc-w/tec9.gif)| +|23|6|Uzi 9mm|#uzi|![](%vc-w/uzi.gif)| +|24|6|Ingram Mac 10|#ingramsl|![](%vc-w/ingramsl.gif)| +|25|6|MP5|#mp5lng|![](%vc-w/mp5lng.gif)| +|26|7|M4|#m4|![](%vc-w/m4.gif)| +|27|7|Ruger|#ruger|![](%vc-w/ruger.gif)| +|30|8|Rocket Launcher|#rocketla|![](%vc-w/rocketla.gif)| +|31|8|Flame Thrower|#flame|![](%vc-w/flame.gif)| +|32|8|M60|#M60|![](%vc-w/m60.gif)| +|33|8|Minigun|#minigun|![](%vc-w/minigun.gif)| +|35|8|Helicopter Cannon|\s|\s| +|28|9|Sniper Rifle|#sniper|![](%vc-w/sniper.gif)| +|29|9|PSG-1 (.308 Sniper)|#laser|![](%vc-w/laser.gif)| +|34|10|Detonator|\s|\s| +|36|10|Camera|#camera|![](%vc-w/camera.gif)| \ No newline at end of file diff --git a/en/scm-documentation/vcs/clothes.html b/en/scm-documentation/vcs/clothes.html index ff37a21..b7477c4 100644 --- a/en/scm-documentation/vcs/clothes.html +++ b/en/scm-documentation/vcs/clothes.html @@ -8,71 +8,21 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDName
OUT_F1Army Fatigues
OUT_F2Casuals
OUT_F3Leisure
OUT_F4Trailer Trash
OUT_F5Cuban Style
OUT_F6Pastel Suit
OUT_F7Tracksuit
OUT_F8Hood
OUT_F9Hired Muscle
OUT_F10Repo-Man
OUT_F11Smuggler
OUT_F12Smart Suit
OUT_F13Winner
OUT_F14Wet Suit
+|ID|Name| +|-| +|OUT_F1|Army Fatigues| +|OUT_F2|Casuals| +|OUT_F3|Leisure| +|OUT_F4|Trailer Trash| +|OUT_F5|Cuban Style| +|OUT_F6|Pastel Suit| +|OUT_F7|Tracksuit| +|OUT_F8|Hood| +|OUT_F9|Hired Muscle| +|OUT_F10|Repo-Man| +|OUT_F11|Smuggler| +|OUT_F12|Smart Suit| +|OUT_F13|Winner| +|OUT_F14|Wet Suit| \ No newline at end of file diff --git a/en/scm-documentation/vcs/gangs.html b/en/scm-documentation/vcs/gangs.html index 1d0a7b8..f4d7188 100644 --- a/en/scm-documentation/vcs/gangs.html +++ b/en/scm-documentation/vcs/gangs.html @@ -8,51 +8,16 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDName
0Umberto's guys
1Cholos
2Sharks
3Army
4Security
5Bikers
6Vance gang
7Golfer
8Marty's
+|ID|Name| +|-| +|0|Umberto's guys| +|1|Cholos| +|2|Sharks| +|3|Army| +|4|Security| +|5|Bikers| +|6|Vance gang| +|7|Golfer| +|8|Marty's| \ No newline at end of file diff --git a/en/scm-documentation/vcs/weather.html b/en/scm-documentation/vcs/weather.html index 2c47e1f..a7c7ceb 100644 --- a/en/scm-documentation/vcs/weather.html +++ b/en/scm-documentation/vcs/weather.html @@ -8,47 +8,15 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDDescription
0Sunny
1Cloudy
2Rainy
3Foggy
4Extra sunny
5Hurricane
6Extra colors
7Ultra sunny
+|ID|Description| +|-| +|0|Sunny| +|1|Cloudy| +|2|Rainy| +|3|Foggy| +|4|Extra sunny| +|5|Hurricane| +|6|Extra colors| +|7|Ultra sunny| \ No newline at end of file diff --git a/en/scm-documentation/virtual-key-codes.html b/en/scm-documentation/virtual-key-codes.html index 6acd970..9075d6b 100644 --- a/en/scm-documentation/virtual-key-codes.html +++ b/en/scm-documentation/virtual-key-codes.html @@ -11,133 +11,115 @@ ``` 0AB0: key_pressed <id> ``` - - - - - - - - -
Keyid
- +|Key|id| +|-| +|Left mouse button|1| +|Right mouse button|2| +|Middle mouse button|4| +|Backspace|8| +|Tab|9| +|Enter|13| +|Shift (both)|16| +|Ctrl (both)|17| +|Pause|19| +|Caps Lock|20| +|Esc|27| +|Spacebar|32| +|Page Up|33| +|Page Down|34| +|End|35| +|Home|36| +|(left arrow)|37| +|(up arrow)|38| +|(right arrow)|39| +|(down arrow)|40| +|Insert|45| +|Delete|46| +|0|48| +|1|49| +|2|50| +|3|51| +|4|52| +|5|53| +|6|54| +|7|55| +|8|56| +|9|57| +|A or a|65| +|B or b|66| +|C or c|67| +|D or d|68| +|E or e|69| +|F or f|70| +|G or g|71| +|H or h|72| +|I or i|73| +|J or j|74| +|K or k|75| +|L or l|76| +|M or m|77| +|N or n|78| +|O or o|79| +|P or p|80| +|Q or q|81| +|R or r|82| +|S or s|83| +|T or t|84| +|U or u|85| +|V or v|86| +|W or w|87| +|X or x|88| +|Y or y|89| +|Z or z|90| +|(left Windows key)|91| +|(right Windows key)|92| +|(application key - located between\nthe right Windows and Ctrl keys\non most keyboards)|93| +|0 (numpad with Num Lock on)|96| +|1 (numpad with Num Lock on)|97| +|2 (numpad with Num Lock on)|98| +|3 (numpad with Num Lock on)|99| +|4 (numpad with Num Lock on)|100| +|5 (numpad with Num Lock on)|101| +|6 (numpad with Num Lock on)|102| +|7 (numpad with Num Lock on)|103| +|8 (numpad with Num Lock on)|104| +|9 (numpad with Num Lock on)|105| +|* (numpad)|106| +|+ (numpad)|107| +|- (numpad)|109| +|. (numpad)|110| +|/ (numpad)|111| +|F1|112| +|F2|113| +|F3|114| +|F4|115| +|F5|116| +|F6|117| +|F7|118| +|F8|119| +|F9|120| +|F10|121| +|F11|122| +|F12|123| +|Num Lock|144| +|Scroll Lock|145| +|Left Shift|160| +|Right Shift|161| +|Left Ctrl|162| +|Right Ctrl|163| +|Left Menu|164| +|Right Menu|165| +|;|186| +|=|187| +|,|188| +|\-|189| +|.|190| +|/|191| +|`|192| +|[|219| +|\\|220| +|]|221| +|'|222| - \ No newline at end of file + \ No newline at end of file diff --git a/es.proyect.hhp b/es.proyect.hhp index 97fcaab..2f374a9 100644 --- a/es.proyect.hhp +++ b/es.proyect.hhp @@ -16,10 +16,6 @@ MAIN=,"es\table.hhc","index.hhk","es\README.html","es\README.html",,,,,0x42120,, [FILES] -img\page.png -img\folder.png -img\topic.png -es\index.html es\README.html es\credits.html es\version-history.html diff --git a/es/cleo-3/code-library.html b/es/cleo-3/code-library.html index 224e9c1..a0197d7 100644 --- a/es/cleo-3/code-library.html +++ b/es/cleo-3/code-library.html @@ -71,4 +71,4 @@ También gracias a [Stanislav Golovin](http://www.gtaforums.com/index.php?showuser=236130 "(aka listener)") por su apoyo e información útil. - \ No newline at end of file + \ No newline at end of file diff --git a/es/cleo-3/opcodes.html b/es/cleo-3/opcodes.html index fbc34ee..6ba3dda 100644 --- a/es/cleo-3/opcodes.html +++ b/es/cleo-3/opcodes.html @@ -62,80 +62,6 @@ [Opcode 0AA5](#0AA5) [Opcode 0AB1](#0AB1) [Opcode 0AB2](#0AB2) -[Opcode 0AC0](#0AC0) -[Opcode 0AC1](#0AC1) -[Opcode 0AC2](#0AC2) -[Opcode 0AC3](#0AC3) -[Opcode 0AC4](#0AC4) -[Opcode 0AC5](#0AC5) -[Opcode 0AC6](#0AC6) -[Opcode 0AC7](#0AC7) -[Opcode 0AC8](#0AC8) -[Opcode 0AC9](#0AC9) -[Opcode 0ACA](#0ACA) -[Opcode 0ACB](#0ACB) -[Opcode 0ACC](#0ACC) -[Opcode 0ACD](#0ACD) -[Opcode 0ACE](#0ACE) -[Opcode 0ACF](#0ACF) -[Opcode 0AD0](#0AD0) -[Opcode 0AD1](#0AD1) -[Opcode 0AD2](#0AD2) -[Opcode 0AD3](#0AD3) -[Opcode 0AD4](#0AD4) -[Opcode 0AD5](#0AD5) -[Opcode 0AD6](#0AD6) -[Opcode 0AD7](#0AD7) -[Opcode 0AD8](#0AD8) -[Opcode 0AD9](#0AD9) -[Opcode 0ADA](#0ADA) -[Opcode 0ADB](#0ADB) -[Opcode 0ADC](#0ADC) -[Opcode 0ADD](#0ADD) -[Opcode 0ADE](#0ADE) -[Opcode 0ADF](#0ADF) -[Opcode 0AE0](#0AE0) -[Opcode 0AE1](#0AE1) -[Opcode 0AE2](#0AE2) -[Opcode 0AE3](#0AE3) -[Opcode 0AE4](#0AE4) -[Opcode 0AE5](#0AE5) -[Opcode 0AE6](#0AE6) -[Opcode 0AE7](#0AE7) -[Opcode 0AE8](#0AE8) -[Opcode 0AE9](#0AE9) -[Opcode 0AEA](#0AEA) -[Opcode 0AEB](#0AEB) -[Opcode 0AEC](#0AEC) -[Opcode 0AED](#0AED) -[Opcode 0AEE](#0AEE) -[Opcode 0AEF](#0AEF) -[Opcode 0AF9](#0AF9) -[Opcode 0AF1](#0AF1) -[Opcode 0AF2](#0AF2) -[Opcode 0AF3](#0AF3) -[Opcode 0AF4](#0AF4) -[Opcode 0AF5](#0AF5) -[Opcode 0B00](#0B00) -[Opcode 0B01](#0B01) -[Opcode 0B02](#0B02) -[Opcode 0B03](#0B03) -[Opcode 0B04](#0B04) -[Opcode 0B05](#0B05) -[Opcode 0B10](#0B10) -[Opcode 0B11](#0B11) -[Opcode 0B12](#0B12) -[Opcode 0B13](#0B13) -[Opcode 0B14](#0B14) -[Opcode 0B15](#0B15) -[Opcode 0B16](#0B16) -[Opcode 0B17](#0B17) -[Opcode 0B18](#0B18) -[Opcode 0B19](#0B19) -[Opcode 0B1A](#0B1A) -[Opcode 0B1B](#0B1B) -[Opcode 0B1C](#0B1C) -[Opcode 0B1D](#0B1D) ::: :::center h5 @@ -731,88 +657,4 @@ - `0`: off - `1`: on ---- - -:::center h5 -CLEO 4 Opcodes -::: - - -```sb3 -0AC0: audio_stream $hMP3 looped 1 -0AC1: $hMP3 = load_audio_stream_with_3d_support "sample.mp3" // IF and SET -0AC2: set_3d_audio_stream $hMP3 at_coords 0@ 1@ 2@ -0AC3: link_3d_audio_stream $hMP3 to_object $object -0AC4: link_3d_audio_stream $hMP3 to_actor $actor -0AC5: link_3d_audio_stream $hMP3 to_car $car -0AC6: 0@ = label @label pointer -0AC7: 0@ = var 0@ pointer -0AC8: 0@ = allocate_memory_size 260 -0AC9: free_allocated_memory 0@ -0ACA: show_text_box 0@v -0ACB: show_styled_text 0@v time 1000 style 1 -0ACC: show_text_lowpriority 0x969110 time 100 -0ACD: show_text_highpriority 0x969110 time 100 -0ACE: show_formatted_text_box "This is %.4X opcode" 0x0ACE -0ACF: show_formatted_styled_text "This is %.4X opcode" time 2000 style 1 0x0ACF -0AD0: show_formatted_text_lowpriority "This is %.4X opcode" time 2000 0x0AD0 -0AD1: show_formatted_text_highpriority "This is %.4X opcode" time 2000 0x0AD1 -0AD2: $actor = player $PLAYER_CHAR targeted_actor // IF and SET -0AD3: 0@v = string_format "%d + %d = %d" 2 2 4 -0AD4: 4@ = scan_string 0@v format "%d + %d = %d" 5@ 6@ 7@ // IF and SET -0AD5: file $hFile seek 0x10 from_origin 1 //IF and SET -0AD6: is_end_of_file_reached $hFile -0AD7: read_string_from_file $hFile to 0@v size 15 // IF and SET -0AD8: write_string_to_file $hFile from 0@v //IF and SET -0AD9: write_formatted_text "CLEO version: %d.%d.%d.%d" in_file $hFile 4 0 0 1 -0ADA: 0@ = scan_file $hFile format "CLEO version: %d.%d.%d.%d" 0@ 1@ 2@ 3@ //IF and SET -0ADB: 0@v = vehicle_model #LANDSTAL name -0ADC: test_cheat "BLOWUP" -0ADD: spawn_car_with_model #RHINO like_a_cheat -0ADE: 0@ = text_label_string 0@v -0ADF: add_text_label "_TEST" text "Test string" -0AE0: remove_text_label "_TEST" -0AE1: $actor = random_char_near_point 0@ 1@ 2@ in_radius 10.0 find_next 1 pass_deads 1 -0AE2: $car = random_vehicle_near_point 0@ 1@ 2@ in_radius 10.0 find_next 1 pass_wrecked 1 -0AE3: $object = random_object_near_point 0@ 1@ 2@ in_radius 10.0 find_next 1 //IF and SET -0AE4: does_directory_exist "CLEO/CLEO_INI" -0AE5: create_directory "CLEO/CLEO_INI" //IF and SET -0AE6: 0@ = find_first_file "CLEO/*.cs" get_filename_to 1@v // IF and SET -0AE7: 1@v = find_next_file 0@ // IF and SET -0AE8: find_close 0@ -0AE9: pop_float 0@ -0AEA: $actor = ped_struct $ped_struct handle -0AEB: $car = vehicle_struct $vehicle_struct handle -0AEC: $object = object_struct $object_struct handle -0AED: 0@v = float 0@ to_string_format "%.15g" -0AEE: 0@ = 2.0 pow 0.5 //all floats -0AEF: 0@ = log 10.0 base 2.718281828459045 //all floats -0AF0: 0@ = read_int_from_ini_file "cleo/config.ini" section "SectionName" key "intKey" -0AF1: write_int 16 to_ini_file "cleo/config.ini" section "SectionName" key "intKey" -0AF2: 0@ = read_float_from_ini_file "cleo/config.ini" section "SectionName" key "floatKey" -0AF3: write_float 0.0 to_ini_file "cleo/config.ini" section "SectionName" key "floatKey" -0AF4: 0@v = read_string_from_ini_file "cleo/config.ini" section "SectionName" key "stringKey" -0AF5: write_string "new string value" to_ini_file "cleo/config.ini" section "SectionName" key "stringKey" -0B00: delete_file "CLEO/log.txt" // IF and SET -0B01: delete_directory "CLEO/CLEO_SAVES" include_subdirs 0 -0B02: move_file "CLEO/1.txt" to "CLEO/2.txt" //IF and SET -0B03: move_directory "CLEO/dir1" to "CLEO/dir2" //IF and SET -0B04: copy_file "CLEO/1.txt" to "CLEO/2.txt" //IF and SET -0B05: copy_directory "CLEO/dir1" to "CLEO/dir2" //IF and SET -0B10: 0@ = 0@ AND 0xFF -0B11: 0@ = 0@ OR 0x80 -0B12: 0@ = 1@ XOR 1 -0B13: 0@ = NOT 0@ -0B14: 0@ = 0@ MOD 5 -0B15: 0@ = 0@ SHR 8 -0B16: 0@ = 0@ SHL 8 -0B17: 0@ &= 1@ -0B18: 0@ |= 1@ -0B19: 0@ ^= 1@ -0B1A: ~ 0@ -0B1B: 0@ %= 1@ -0B1C: 0@ >>= 1@ -0B1D: 0@ <<= 1@ -``` - - \ No newline at end of file + \ No newline at end of file diff --git a/es/coding/arrays.html b/es/coding/arrays.html index f85de18..175d281 100644 --- a/es/coding/arrays.html +++ b/es/coding/arrays.html @@ -26,37 +26,12 @@ ``: cualquier valor mayor que 0\ ``: uno de los caracteres `i` `f` `s` `v`: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
LetraTipo de elementoTamaño del elemento (bytes)
inúmero entero4
fnúmero decimal4
scadena corta8
vcadena larga16
+|Letra|Tipo de elemento|Tamaño del elemento (bytes)| +|-| +|i|número entero|4| +|f|número decimal|4| +|s|cadena corta|8| +|v|cadena larga|16| \ Liberty City Stories, Vice City Stories:\ diff --git a/es/coding/conditions.html b/es/coding/conditions.html index 6b7dbb9..95d014d 100644 --- a/es/coding/conditions.html +++ b/es/coding/conditions.html @@ -22,32 +22,11 @@ \ `N` significa el número total de condiciones dentro de la declaración IF y la forma en que ocurre la evaluación de las condiciones. - - - - - - - - - - - - - - - - - - - - - - - - - -
NNúmero de CondicionesOperador Lógico
01la declaración IF es verdadera (`true`) sí la condición es verdadera
1..72..8`AND` (todas las condiciones deben ser verdaderas para que la declaración IF sea verdadera)
21..272..8`OR` (al menos una de las condiciones debe ser verdadera para que la declaración IF sea verdadera)
+|N|Número de Condiciones|Operador Lógico| +|-| +|0|1|la declaración IF es verdadera (`true`) sí la condición es verdadera| +|1..7|2..8|`AND` (todas las condiciones deben ser verdaderas para que la declaración IF sea verdadera)| +|21..27|2..8|`OR` (al menos una de las condiciones debe ser verdadera para que la declaración IF sea verdadera)| {% hint style="info" %} Una declaración IF puede contener hasta 8 condiciones. diff --git a/es/coding/hex..end.html b/es/coding/hex..end.html index ee8ee6c..ea63754 100644 --- a/es/coding/hex..end.html +++ b/es/coding/hex..end.html @@ -54,52 +54,15 @@ Las siguientes secuencias de escape son compatibles con un literal de cadena: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NombreSecuencias de EscapeForma de byte
Nulo\000
Backspace\b08
Tabulador\t09
Salto de línea\n0A
Retorno de carril\r0D
Escape de número\x`nn``nn`
Escape de carácter\`char``char`
+|Nombre|Secuencias de Escape|Forma de byte| +|-| +|Nulo|\0|00| +|Backspace|\b|08| +|Tabulador|\t|09| +|Salto de línea|\n|0A| +|Retorno de carril|\r|0D| +|Escape de número|\x`nn`|`nn`| +|Escape de carácter|\`char`|`char`| ```sb3 hex diff --git a/es/edit-modes/README.html b/es/edit-modes/README.html index 52f2e18..453886a 100644 --- a/es/edit-modes/README.html +++ b/es/edit-modes/README.html @@ -181,78 +181,18 @@ Sanny Builder ofrece muchos modos diferentes y su número puede variar de una versión a otra: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TituloEsquema de nombresOrden de parámetrosJuego
GTA IIIcomunidadpersonalizadotodas las versiones de GTA III
GTA VCcomunidadpersonalizadotodas las versiones de Vice City
GTA SA v1.0comunidadpersonalizadoSA v1.0
GTA SA v2.0comunidadpersonalizadoSA v2.0
GTA SA (v1.0 - SCR)RockstaroriginalSA v1.0
GTA LCSRockstaroriginaltodas las versiones de Liberty City Stories
GTA VCS (PSP)RockstaroriginalVCS para PSP
GTA VCS (PS2)RockstaroriginalVCS para PS2
VC Mobilecomunidadpersonalizadoversiones de VC Android y iOS
SA Mobilecomunidadpersonalizadoversiones de SA Android y iOS
+|Titulo|Esquema de nombres|Orden de parámetros|Juego| +|-| +|GTA III|comunidad|personalizado|todas las versiones de GTA III| +|GTA VC|comunidad|personalizado|todas las versiones de Vice City| +|GTA SA v1.0|comunidad|personalizado|SA v1.0| +|GTA SA v2.0|comunidad|personalizado|SA v2.0| +|GTA SA (v1.0 - SCR)|Rockstar|original|SA v1.0| +|GTA LCS|Rockstar|original|todas las versiones de Liberty City Stories| +|GTA VCS (PSP)|Rockstar|original|VCS para PSP| +|GTA VCS (PS2)|Rockstar|original|VCS para PS2| +|VC Mobile|comunidad|personalizado|versiones de VC Android y iOS| +|SA Mobile|comunidad|personalizado|versiones de SA Android y iOS| El esquema de nombres define la forma de describir los opcodes. El esquema _comunidad_ tiene los nombres adivinados aleatoriamente a lo largo de los años, como `actor` o `thread`. El esquema _Rockstar_ tiene la taxonomía original utilizada por los desarrolladores del juego (por ejemplo, `char` o `script`) que es coherente con las estructuras internas del juego. diff --git a/es/edit-modes/extensions.html b/es/edit-modes/extensions.html index 93b4e25..75fc1d3 100644 --- a/es/edit-modes/extensions.html +++ b/es/edit-modes/extensions.html @@ -34,62 +34,18 @@ Sanny Builder incluye algunas extensiones comunes y reconocidas para diferentes modos de edición: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Nombre de la ExtensiónFuenteModos de Edición donde estén disponibles
**CLEO** `{$USE CLEO}`CLEO para GTA III
CLEO para Vice City CLEO 4.4 CLEO Android
GTA III Vice City GTA SA v1.0, v2.0, (v1.0 - SCR) SA Mobile VC Mobile
**ini** `{$USE ini}`IniFiles.cleo plugin
(enviado en CLEO)
GTA III
Vice City GTA SA v1.0, v2.0, (v1.0 - SCR)
**file** `{$USE file}`FileSystemOperations plugin
(enviado en CLEO)
GTA III
Vice City GTA SA v1.0, v2.0, (v1.0 - SCR)
**bitwise** `{$USE bitwise}`IntOperations plugin
(enviado en CLEO4)
GTA III
Vice City GTA SA v1.0, v2.0, (v1.0 - SCR)
**clipboard** `{$USE clipboard}`ClipboardControl pluginGTA III
Vice City GTA SA v1.0, v2.0, (v1.0 - SCR)
**memory** `{$USE memory}`MemoryModule pluginGTA III
Vice City
**CLEO+** `{$USE CLEO+}`CLEO+ pluginGTA SA v1.0, v2.0, (v1.0 - SCR)
**newOpcodes** `{$USE newOpcodes}`newOpcodes pluginGTA SA v1.0, v2.0
**Restoration** `{$USE Restoration}`Opcode Restoration ProjectVice City
\ +|Nombre de la Extensión|Fuente|Modos de Edición donde estén disponibles| +|-| +|**CLEO** `{$USE CLEO}`|CLEO para GTA III
CLEO para Vice City CLEO 4.4 CLEO Android|GTA III Vice City GTA SA v1.0, v2.0, (v1.0 - SCR) SA Mobile VC Mobile| +|**ini** `{$USE ini}`|IniFiles.cleo plugin
(enviado en CLEO)|GTA III
Vice City GTA SA v1.0, v2.0, (v1.0 - SCR)| +|**file** `{$USE file}`|FileSystemOperations plugin
(enviado en CLEO)|GTA III
Vice City GTA SA v1.0, v2.0, (v1.0 - SCR)| +|**bitwise** `{$USE bitwise}`|IntOperations plugin
(enviado en CLEO4)|GTA III
Vice City GTA SA v1.0, v2.0, (v1.0 - SCR)| +|**clipboard** `{$USE clipboard}`|ClipboardControl plugin|GTA III
Vice City GTA SA v1.0, v2.0, (v1.0 - SCR)| +|**memory** `{$USE memory}`|MemoryModule plugin|GTA III
Vice City| +|**CLEO+** `{$USE CLEO+}`|CLEO+ plugin|GTA SA v1.0, v2.0, (v1.0 - SCR)| +|**newOpcodes** `{$USE newOpcodes}`|newOpcodes plugin|GTA SA v1.0, v2.0| +|**Restoration** `{$USE Restoration}`|[Opcode Restoration Project](https://gtamods.com/wiki/Opcodes_Restoration_Project)|Vice City| +\ Es posible usar opcodes de las bibliotecas de terceros que no aparecen en la lista, el compilador no requerirá la directiva `{$USE}`. diff --git a/es/edit-modes/opcodes-list-scm.ini.html b/es/edit-modes/opcodes-list-scm.ini.html index 160648f..46e90d8 100644 --- a/es/edit-modes/opcodes-list-scm.ini.html +++ b/es/edit-modes/opcodes-list-scm.ini.html @@ -15,52 +15,15 @@ `SCM.INI` es el archivo que contiene información sobre los opcodes utilizados durante el desensamblado y la compilación de archivos de Scripts. Sanny Builder envía una lista de opcodes para cada [modo de edición](README.md#opcodes). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
JuegoNombre del ArchivoLocalización
GTA IIISCM.INIdata\gta3
Vice CityVCSCM.INIdata\vc
San AndreasSASCM.INIdata\sa
Liberty City StoriesLCSSCM.INIdata\lcs
Vice City StoriesVCSSCM.INIdata\vcs
VC MobileVCSCM.INIdata\vc_mobile
SA MobileSASCM.INIdata\sa_mobile
+|Juego|Nombre del Archivo|Localización| +|-| +|GTA III|SCM.INI|data\gta3| +|Vice City|VCSCM.INI|data\vc| +|San Andreas|SASCM.INI|data\sa| +|Liberty City Stories|LCSSCM.INI|data\lcs| +|Vice City Stories|VCSSCM.INI|data\vcs| +|VC Mobile|VCSCM.INI|data\vc_mobile| +|SA Mobile|SASCM.INI|data\sa_mobile| ## Formato del Archivo diff --git a/es/editor/cli.html b/es/editor/cli.html index 926fd4d..338300e 100644 --- a/es/editor/cli.html +++ b/es/editor/cli.html @@ -96,167 +96,39 @@ Esta lista no es definitiva y está sujeta a cambios en cualquier momento. {% endhint %} - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NombreValores permitidosPestaña de opciones
Editor::ShowPanel0, 1Editor
Editor::ShowOpcodeInfo0, 1Editor
Editor::ShowLineNumbers0, 1Editor
Editor::ShowGutterBorder0, 1Editor
Editor::OpenLastFile0, 1Editor
Editor::OpenAllClosedFiles0, 1Editor
Editor::ConfirmExit0, 1Editor
Editor::LanguageService0, 1Editor
Editor::SemanticConstHighlighting0, 1Editor
Editor::IdentifiersListAuto0, 1Editor
Editor::ScanDistance0..65535Editor
Editor::Langknown locale idGeneral
Editor::QuickGameLoading0, 1General
Editor::ShowProgress0, 1General
Editor::ShowReport0, 1General
Decompiler::OverwriteOutputFile0, 1General
Decompiler::ManualIMGOpening0, 1General
Decompiler::HexadimalOffsets0, 1Formatos
Decompiler::LabelsFormat0, 1, 2Formatos
Decompiler::AlwaysWriteOpcodes0, 1General
Decompiler::ReplaceMissionNumbers0, 1General
Decompiler::InsertOriginalMissionNames0, 1General
Compiler::ShowIMGWarning0, 1General
Compiler::CheckConditions0, 1General
Compiler::CheckLocalVariables0, 1General
Compiler::AddExtraInfo0, 1General
CustomNames::UseCustomLabels0, 1Formatos
CustomNames::UseCustomVariables0, 1Formatos
CustomNames::UseCustomArrays0, 1Formatos
CustomNames::Format0, 1, 2Formatos
+ +|Nombre|Valores permitidos|Pestaña de opciones| +|-| +|[Editor::ShowPanel](options/editor.md#editor-configuration)|0, 1|Editor| +|[Editor::ShowOpcodeInfo](options/editor.md#editor-configuration)|0, 1|Editor| +|[Editor::ShowLineNumbers](options/editor.md#editor-configuration)|0, 1|Editor| +|[Editor::ShowGutterBorder](options/editor.md#editor-configuration)|0, 1|Editor| +|[Editor::OpenLastFile](options/editor.md#editor-configuration)|0, 1|Editor| +|[Editor::OpenAllClosedFiles](options/editor.md#editor-configuration)|0, 1|Editor| +|[Editor::ConfirmExit](options/editor.md#editor-configuration)|0, 1|Editor| +|[Editor::LanguageService](options/editor.md#editor-configuration)|0, 1|Editor| +|[Editor::SemanticConstHighlighting](options/editor.md#editor-configuration)|0, 1|Editor| +|[Editor::IdentifiersListAuto](options/editor.md#code-scan-distance)|0, 1|Editor| +|[Editor::ScanDistance](options/editor.md#code-scan-distance)|0..65535|Editor| +|[Editor::Lang](options/general.md#interface-language)|known locale id|General| +|[Editor::QuickGameLoading](options/general.md#quick-game-loading)|0, 1|General| +|[Editor::ShowProgress](options/general.md#show-progress)|0, 1|General| +|[Editor::ShowReport](options/general.md#show-report)|0, 1|General| +|[Decompiler::OverwriteOutputFile](options/general.md#always-overwrite-output-file)|0, 1|General| +|[Decompiler::ManualIMGOpening](options/general.md#manual-img-opening)|0, 1|General| +|[Decompiler::HexadimalOffsets](options/formats.md#label-name-format)|0, 1|Formatos| +|[Decompiler::LabelsFormat](options/formats.md#label-name-format)|0, 1, 2|Formatos| +|[Decompiler::AlwaysWriteOpcodes](options/general.md#write-opcodes)|0, 1|General| +|[Decompiler::ReplaceMissionNumbers](options/general.md#replace-mission-numbers)|0, 1|General| +|[Decompiler::InsertOriginalMissionNames](options/general.md#insert-original-mission-names)|0, 1|General| +|[Compiler::ShowIMGWarning](options/general.md#show-warning)|0, 1|General| +|[Compiler::CheckConditions](options/general.md#check-conditions)|0, 1|General| +|[Compiler::CheckLocalVariables](options/general.md#ranges-check)|0, 1|General| +|[Compiler::AddExtraInfo](options/general.md#add-extra-info-to-scm)|0, 1|General| +|[CustomNames::UseCustomLabels](options/formats.md#custom-names)|0, 1|Formatos| +|[CustomNames::UseCustomVariables](options/formats.md#custom-names)|0, 1|Formatos| +|[CustomNames::UseCustomArrays](options/formats.md#custom-names)|0, 1|Formatos| +|[CustomNames::Format](options/formats.md#case-converting)|0, 1, 2|Formatos| {% hint style="info" %} Las opciones establecidas a través de CLI no son persistentes y solo se aplican a la sesión actual. En el próximo lanzamiento, Sanny Builder utilizará los valores almacenados en `settings.ini`. diff --git a/es/editor/console.html b/es/editor/console.html index 8c26239..c2945a8 100644 --- a/es/editor/console.html +++ b/es/editor/console.html @@ -51,28 +51,11 @@ P.ej. dada una Array de tres elementos que comienzan en `$10`, esta opción afecta la forma en que se ven las variables después del desmontaje: - - - - - - - - - - - - - - - - - - - - - -
Sin `CONSTANT_INDEXES`Con `CONSTANT_INDEXES`
$10$10[0]
$11$10[1]
$12$10[2]
+|Sin `CONSTANT_INDEXES`|Con `CONSTANT_INDEXES`| +|-| +|$10|$10[0]| +|$11|$10[1]| +|$12|$10[2]| ### SKIP_SCM_HEADER @@ -92,40 +75,14 @@ La [opción](cli.md#debug) `--debug` proporciona una forma alternativa de cambiar las opciones de depuración. Ejecute Sanny con el parámetro `--debug X`, donde `X` es una serie de `0` y `1`. Cada dígito de la serie corresponde a una opción de depuración particular: - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IndiceOpción de Depuración
1CODE_OFFSETS
2IGNORE_UNKNOWN
3VAR_COUNTER
4CONSTANT_INDEXES
5SKIP_SCM_HEADER
6SKIP_EXTRA_INFO
+|Indice|Opción de Depuración| +|-| +|1|CODE_OFFSETS| +|2|IGNORE_UNKNOWN| +|3|VAR_COUNTER| +|4|CONSTANT_INDEXES| +|5|SKIP_SCM_HEADER| +|6|SKIP_EXTRA_INFO| ``` sanny.exe --debug 110000 diff --git a/es/editor/hotkeys.html b/es/editor/hotkeys.html index cf71960..a1740d0 100644 --- a/es/editor/hotkeys.html +++ b/es/editor/hotkeys.html @@ -11,196 +11,51 @@ Sanny Builder soporta muchos atajos comunes para las operaciones de archivo y texto (`Ctrl+N`, `Ctrl+Z`, etc.), así como algunos personalizados. Las teclas de acceso rápido marcadas con `*` son [personalizables](options/hotkeys.md). - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Tecla/CombinaciónOperación
**Menú Principal**
`F5` *abrir un archivo como un script y desensamblar
`F6` *compilar el contenido del editor en un archivo de script
`F7` *compila el contenido del editor en un archivo de script y cópialo en el directorio de scripts del juego
`F8` *ejecutar el juego para el [modo de edición](../edit-modes/README.md) actual
`F10`abrir la ventana de [opciones](options/README.md)
`F12`abrir la documentación
**Texto**
`TAB`, `Shift` + `TAB`sangrar el texto seleccionado a la izquierda/derecha (tabulador)
`Ctrl` + `Alt` + `A`\ -`Ctrl` + `Alt` + `D`Sangrar el texto seleccionado a la izquierda/derecha (por un carácter)
`Ctrl` + `Alt` + `B`\ -`Ctrl` + `Alt` + `N`\ -`Ctrl` + `Alt` + `M`alternar diferentes modos de selección de texto: Normal, Columnar (igual que la selección con `Alt` presionado), Líneas
`Ctrl` + `Shift` + `U`\ -`Ctrl` + `Shift` + `L`convertir la palabra a mayúsculas/minúsculas
`Ctrl` + `+`aumentar el tamaño del texto (acercar)
`Ctrl` + `-`disminuir el tamaño del texto (alejar)
`Ctrl` + `T`eliminar la palabra debajo del cursor
`Ctrl` + `Y`eliminar la línea
`Ctrl` + `Shift` + `Y`limpiar la línea
`Ctrl` + `Q` *[comentar/descomentar](../coding/comments.md) la línea
**Navegación**
`Ctrl` + `Shift` + `B`saltar entre paréntesis: `{}`, `()`, `<>`, `[]`
`Ctrl` + `Up/Down`desplazar la página una línea hacia Arriba/Bajo
`Ctrl` + `Rueda del Ratón Arriba/Bajo`pagina Arriba/Bajo
`Ctrl` + `Shift` + `0..9`alternar un [marcador](features.md#bookmarks-quick-jump) en la línea
`Ctrl` + `0..9`navegar hasta la línea con el [marcador](features.md#bookmarks-quick-jump)
`Ctrl` + `G` *ir a la línea
`Alt` + `Right` *[navegar al símbolo](features.md#navigate-to-symbol) debajo del cursor (una etiqueta, misión o función)
`Alt` + `Left` *navegar de regreso a la posición anterior (donde se llamó a [Navegar a símbolo](features.md#navigate-to-symbol))
`Ctrl` + `Enter`abra un archivo cuyo nombre esté bajo el cursor (vea también [prioridades relativas de la ruta](../coding/directives.md#$include))
**Código**
`Ctrl` + `Space`mostrar la lista de clases, miembros, modelos, etiquetas, variables y misiones
`Ctrl` + `Shift` + `Space`mostrar la lista de parámetros para el comando de clase actual
`Ctrl` + `Shift` + `C` *inserta las [coordenadas del jugador](features.md#player-coordinates-management)
`Ctrl` + `Shift` + `E` *inserta el [angulo Z del jugador](features.md#player-coordinates-management)
`F1`encuentre un opcode con la palabra debajo del cursor (ignorando `_` y `.`)
`Ctrl` + `F1`encuentre un opcode con la palabra debajo del cursor (sin ignorar `_` y `.`)
`F2`use la palabra debajo del cursor para expandirse a la [plantilla de código] (../edit-modes/code-templates.md) con el mismo nombre
`Ctrl` + `J`mostrar la lista de [plantillas de código](../edit-modes/code-templates.md)
`Ctrl` + `M`iniciar/detener la grabación de una [macro](features.md#keypress-recording-macro)(secuencia de pulsaciones de teclas)
`Ctrl` + `P`reproducir/pausar [macro](features.md#keypress-recording-macro) mientras se procesa
`Ctrl` + `H` *convertir el número debajo del cursor de decimal a hexadecimal y viceversa
`Ctrl` + `Alt` + `H` *convertir el nombre del modelo bajo el cursor a su ID numérico y viceversa
**Varios**
`Ctrl` + `Ñ`abrir la [consola](console.md)
`Alt` + `S`(cuando la lista de modelos está activa) reordenar la lista
- +|Tecla/Combinación|Operación| +|-| +|**Menú Principal**|\s| +|`F5` *|abrir un archivo como un script y desensamblar| +|`F6` *|compilar el contenido del editor en un archivo de script| +|`F7` *|compila el contenido del editor en un archivo de script y cópialo en el directorio de scripts del juego| +|`F8` *|ejecutar el juego para el [modo de edición](../edit-modes/README.md) actual| +|`F10`|abrir la ventana de [opciones](options/README.md)| +|`F12`|abrir la documentación| +|**Texto**|\s| +|`TAB`, `Shift` + `TAB`|sangrar el texto seleccionado a la izquierda/derecha (tabulador)| +|`Ctrl` + `Alt` + `A`
`Ctrl` + `Alt` + `D`|Sangrar el texto seleccionado a la izquierda/derecha (por un carácter)| +|`Ctrl` + `Alt` + `B`
`Ctrl` + `Alt` + `N`
`Ctrl` + `Alt` + `M`|alternar diferentes modos de selección de texto: Normal, Columnar (igual que la selección con `Alt` presionado), Líneas| +|`Ctrl` + `Shift` + `U`
`Ctrl` + `Shift` + `L`|convertir la palabra a mayúsculas/minúsculas| +|`Ctrl` + `+`|aumentar el tamaño del texto (acercar)| +|`Ctrl` + `-`|disminuir el tamaño del texto (alejar)| +|`Ctrl` + `T`|eliminar la palabra debajo del cursor| +|`Ctrl` + `Y`|eliminar la línea| +|`Ctrl` + `Shift` + `Y`|limpiar la línea| +|`Ctrl` + `Q` *|[comentar/descomentar](../coding/comments.md) la línea| +|**Navegación**|\s| +|`Ctrl` + `Shift` + `B`|saltar entre paréntesis: `{}`, `()`, `<>`, `[]`| +|`Ctrl` + `Up/Down`|desplazar la página una línea hacia Arriba/Bajo| +|`Ctrl` + `Rueda del Ratón Arriba/Bajo`|pagina Arriba/Bajo| +|`Ctrl` + `Shift` + `0..9`|alternar un [marcador](features.md#bookmarks-quick-jump) en la línea| +|`Ctrl` + `0..9`|navegar hasta la línea con el [marcador](features.md#bookmarks-quick-jump)| +|`Ctrl` + `G` *|ir a la línea| +|`Alt` + `Right` *|[navegar al símbolo](features.md#navigate-to-symbol) debajo del cursor (una etiqueta, misión o función)| +|`Alt` + `Left` *|navegar de regreso a la posición anterior (donde se llamó a [Navegar a símbolo](features.md#navigate-to-symbol))| +|`Ctrl` + `Enter`|abra un archivo cuyo nombre esté bajo el cursor (vea también [prioridades relativas de la ruta](../coding/directives.md#$include))| +|**Código**|\s| +|`Ctrl` + `Space`|mostrar la lista de clases, miembros, modelos, etiquetas, variables y misiones| +|`Ctrl` + `Shift` + `Space`|mostrar la lista de parámetros para el comando de clase actual| +|`Ctrl` + `Shift` + `C` *|inserta las [coordenadas del jugador](features.md#player-coordinates-management)| +|`Ctrl` + `Shift` + `E` *|inserta el [angulo Z del jugador](features.md#player-coordinates-management)| +|`F1`|encuentre un opcode con la palabra debajo del cursor (ignorando `_` y `.`)| +|`Ctrl` + `F1`|encuentre un opcode con la palabra debajo del cursor (sin ignorar `_` y `.`)| +|`F2`|use la palabra debajo del cursor para expandirse a la [plantilla de código] (../edit-modes/code-templates.md) con el mismo nombre| +|`Ctrl` + `J`|mostrar la lista de [plantillas de código](../edit-modes/code-templates.md)| +|`Ctrl` + `M`|iniciar/detener la grabación de una [macro](features.md#keypress-recording-macro)(secuencia de pulsaciones de teclas)| +|`Ctrl` + `P`|reproducir/pausar [macro](features.md#keypress-recording-macro) mientras se procesa| +|`Ctrl` + `H` *|convertir el número debajo del cursor de decimal a hexadecimal y viceversa| +|`Ctrl` + `Alt` + `H` *|convertir el nombre del modelo bajo el cursor a su ID numérico y viceversa| +|**Varios**|\s| +|`Ctrl` + `Ñ`|abrir la [consola](console.md)| +|`Alt` + `S`|(cuando la lista de modelos está activa) reordenar la lista| \ No newline at end of file diff --git a/es/index.html b/es/index.html deleted file mode 100644 index f9b3e96..0000000 --- a/es/index.html +++ /dev/null @@ -1,129 +0,0 @@ - - - - - - - - - - - - - -
-
- -
- - - \ No newline at end of file diff --git a/es/scm-documentation/ascii-character-codes.html b/es/scm-documentation/ascii-character-codes.html index 2aa4788..c52c668 100644 --- a/es/scm-documentation/ascii-character-codes.html +++ b/es/scm-documentation/ascii-character-codes.html @@ -11,194 +11,176 @@ ```sb3 0AD3: 0@v = string_format "Example %c" <id> ``` - - - - - - - - -
CarácterID
- +|Carácter|ID| +|-| +|Tabulador Horizontal (HT)|9| +|Salto de Línea (LF)|10| +|Retorno de Carro (CR)|13| +|Espacio|32| +|!|33| +|"|34| +|#|35| +|$|36| +|%|37| +|&|38| +|'|39| +|(|40| +|)|41| +|*|42| +|+|43| +|,|44| +|\-|45| +|.|46| +|/|47| +|0|48| +|1|49| +|2|50| +|3|51| +|4|52| +|5|53| +|6|54| +|7|55| +|8|56| +|9|57| +|\:|58| +|;|59| +|<|60| +|=|61| +|>|62| +|?|63| +|@|64| +|A|65| +|B|66| +|C|67| +|D|68| +|E|69| +|F|70| +|G|71| +|H|72| +|I|73| +|J|74| +|K|75| +|L|76| +|M|77| +|N|78| +|O|79| +|P|80| +|Q|81| +|R|82| +|S|83| +|T|84| +|U|85| +|V|86| +|W|87| +|X|88| +|Y|89| +|Z|90| +|[|91| +|\\|92| +|]|93| +|^|94| +|_|95| +|`|96| +|{|123| +|\||124| +|}|125| +|~|126| +|\s|160| +|¡|161| +|¢|162| +|£|163| +|¤|164| +|¥|165| +|¦|166| +|§|167| +|¨|168| +|©|169| +|ª|170| +|«|171| +|¬|172| +|­|173| +|®|174| +|¯|175| +|°|176| +|±|177| +|²|178| +|³|179| +|´|180| +|µ|181| +|¶|182| +|·|183| +|¸|184| +|¹|185| +|º|186| +|»|187| +|¼|188| +|½|189| +|¾|190| +|¿|191| +|À|192| +|Á|193| +|Â|194| +|Ã|195| +|Ä|196| +|Å|197| +|Æ|198| +|Ç|199| +|È|200| +|É|201| +|Ê|202| +|Ë|203| +|Ì|204| +|Í|205| +|Î|206| +|Ï|207| +|Ð|208| +|Ñ|209| +|Ò|210| +|Ó|211| +|Ô|212| +|Õ|213| +|Ö|214| +|×|215| +|Ø|216| +|Ù|217| +|Ú|218| +|Û|219| +|Ü|220| +|Ý|221| +|Þ|222| +|ß|223| +|à|224| +|á|225| +|â|226| +|ã|227| +|ä|228| +|å|229| +|æ|230| +|ç|231| +|è|232| +|é|233| +|ê|234| +|ë|235| +|ì|236| +|í|237| +|î|238| +|ï|239| +|ð|240| +|ñ|241| +|ò|242| +|ó|243| +|ô|244| +|õ|245| +|ö|246| +|÷|247| +|ø|248| +|ù|249| +|ú|250| +|û|251| +|ü|252| +|ý|253| +|þ|254| +|ÿ|255| - \ No newline at end of file + \ No newline at end of file diff --git a/es/scm-documentation/gta-limits.html b/es/scm-documentation/gta-limits.html index 42cc97e..c086b3d 100644 --- a/es/scm-documentation/gta-limits.html +++ b/es/scm-documentation/gta-limits.html @@ -8,192 +8,28 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
GTA IIIVice CitySan AndreasSA MobileLCSVCS
**tamaño principal (en bytes)**131072225512200000200000
**tamaño de la misión (en bytes)**32768350006900069000
**numero de misiones**120120200
**lista de limpieza de la misión**505075
**nombres de modelos (2do segmento)**200220395
**scripts corriendo**1281289696
**variables locales**16+2 [temporizadoras](../coding/variables.md#timer-variables)16+2 [temporizadoras](../coding/variables.md#timer-variables)

32+2 [temporizadoras](../coding/variables.md#timer-variables)

1024 en misiones

40+2 [temporizadoras](../coding/variables.md#timer-variables)96+2 [temporizadoras](../coding/variables.md#timer-variables)
**gosubs anidados**4688
**dibujo de texto**2489696
**saltos en tablas de etiquetas**N/AN/A75N/A
**scripts externos**N/AN/A82N/A
**adjuntos de script externos**N/AN/A70N/A
**generadores de coches**160185500
**elementos en el radar**3275175250
**recogibles**336336620620
**ultimo opcode**048105a80a4e0a90
**esferas de misiones**161616
**tipos de garajes para guardar coches**16..1816..18, 24..3216..18, 24..32, 39..4516..18, 24..32, 39..45
**garages**323250
+ +|\s|GTA III|Vice City|San Andreas|SA Mobile|LCS|VCS| +|-| +|**tamaño principal (en bytes)**|131072|225512|200000|200000|\s|\s| +|**tamaño de la misión (en bytes)**|32768|35000|69000|69000|\s|\s| +|**numero de misiones**|120|120|200|\s|\s|\s| +|**lista de limpieza de la misión**|50|50|75|\s|\s|\s| +|**nombres de modelos (2do segmento)**|200|220|395|\s|\s|\s| +|**scripts corriendo**|128|128|96|96|\s|\s| +|**variables locales**|16+2 [temporizadoras](../coding/variables.md#timer-variables)|16+2 [temporizadoras](../coding/variables.md#timer-variables)|

32+2 [temporizadoras](../coding/variables.md#timer-variables)

1024 en misiones

|40+2 [temporizadoras](../coding/variables.md#timer-variables)|96+2 [temporizadoras](../coding/variables.md#timer-variables)|\s| +|**gosubs anidados**|4|6|8|8|\s|\s| +|**dibujo de texto**|2|48|96|96|\s|\s| +|**saltos en tablas de etiquetas**|N/A|N/A|75|\s|N/A|\s| +|**scripts externos**|N/A|N/A|82|\s|N/A|\s| +|**adjuntos de script externos**|N/A|N/A|70|\s|N/A|\s| +|**generadores de coches**|160|185|500|\s|\s|\s| +|**elementos en el radar**|32|75|175|250|\s|\s| +|**recogibles**|336|336|620|620|\s|\s| +|**ultimo opcode**|0481|05a8|0a4e|0a90|\s|\s| +|**esferas de misiones**|16|16|16|\s|\s|\s| +|**tipos de garajes para guardar coches**|16..18|16..18, 24..32|16..18, 24..32, 39..45|16..18, 24..32, 39..45|\s|\s| +|**garages**|32|32|50|\s|\s|\s| {% hint style="info" %} Publicado originalmente por CyQ en [GTAForums.com](http://www.gtaforums.com/index.php?showtopic=213017\&view=findpost\&p=3145932) diff --git a/es/scm-documentation/gta3/pedtypes.html b/es/scm-documentation/gta3/pedtypes.html index 8b9f085..2b5e3c7 100644 --- a/es/scm-documentation/gta3/pedtypes.html +++ b/es/scm-documentation/gta3/pedtypes.html @@ -13,103 +13,29 @@ 009A: 0@ = create_actor <ID> 0 at 0 0 0 ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDTipo
0player1
1player2
2player3
3player4
4civmale
5civfemale
6cop
7gang1
8gang2
9gang3
10gang4
11gang5
12gang6
13gang7
14gang8
15gang9
16emergency
17fireman
18criminal
19unused
20prostitute
21special
+|ID|Tipo| +|-| +|0|player1| +|1|player2| +|2|player3| +|3|player4| +|4|civmale| +|5|civfemale| +|6|cop| +|7|gang1| +|8|gang2| +|9|gang3| +|10|gang4| +|11|gang5| +|12|gang6| +|13|gang7| +|14|gang8| +|15|gang9| +|16|emergency| +|17|fireman| +|18|criminal| +|19|*unused*| +|20|prostitute| +|21|special| \ No newline at end of file diff --git a/es/scm-documentation/gta3/radar-icons.html b/es/scm-documentation/gta3/radar-icons.html index ccbad4d..67ab54f 100644 --- a/es/scm-documentation/gta3/radar-icons.html +++ b/es/scm-documentation/gta3/radar-icons.html @@ -8,126 +8,32 @@ - ```sb3 02A7: 0@ = create_icon_marker_and_sphere <ID> at 892.75 -425.75 13.875 ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDIconoDescripción
0![](../../../img/gta3/radar/dot.png)Small pink square, unused
1![](../../../img/gta3/radar/asuka.png)Asuka Kasen
2![](../../../img/gta3/radar/bomb.png)8-Ball's bomb shop
3![](../../../img/gta3/radar/catalina.png)Catalina
4![](../../../img/gta3/radar/centre.png)Player
5![](../../../img/gta3/radar/copcar.png)Cop car, unused
6![](../../../img/gta3/radar/don.png)Donald Love
7![](../../../img/gta3/radar/eight.png)8-Ball
8![](../../../img/gta3/radar/el.png)El Burro (Diablo)
9![](../../../img/gta3/radar/ice.png)D-Ice (Hood)
10![](../../../img/gta3/radar/joey.png)Joey Leone
11![](../../../img/gta3/radar/kenji.png)Kenji Kasen
12![](../../../img/gta3/radar/liz.png)King Courtney (Yardie)
13![](../../../img/gta3/radar/luigi.png)Luigi
14![](../../../img/gta3/radar/north.png)North
15![](../../../img/gta3/radar/ray.png)Ray Machowski
16![](../../../img/gta3/radar/sal.png)Salvatore Leone
17![](../../../img/gta3/radar/save.png)Safehouse
18![](../../../img/gta3/radar/spray.png)Pay 'n' Spray
19![](../../../img/gta3/radar/tony.png)Toni Cipriani
20![](../../../img/gta3/radar/weapon.png)Ammu-Nation
+|ID|Icono|Descripción| +|-| +|0|![](%gta3-r/dot.png)|Small pink square, unused| +|1|![](%gta3-r/asuka.png)|Asuka Kasen| +|2|![](%gta3-r/bomb.png)|8-Ball's bomb shop| +|3|![](%gta3-r/catalina.png)|Catalina| +|4|![](%gta3-r/centre.png)|Player| +|5|![](%gta3-r/copcar.png)|Cop car, unused| +|6|![](%gta3-r/don.png)|Donald Love| +|7|![](%gta3-r/eight.png)|8-Ball| +|8|![](%gta3-r/el.png)|El Burro (Diablo)| +|9|![](%gta3-r/ice.png)|D-Ice (Hood)| +|10|![](%gta3-r/joey.png)|Joey Leone| +|11|![](%gta3-r/kenji.png)|Kenji Kasen| +|12|![](%gta3-r/liz.png)|King Courtney (Yardie)| +|13|![](%gta3-r/luigi.png)|Luigi| +|14|![](%gta3-r/north.png)|North| +|15|![](%gta3-r/ray.png)|Ray Machowski| +|16|![](%gta3-r/sal.png)|Salvatore Leone| +|17|![](%gta3-r/save.png)|Safehouse| +|18|![](%gta3-r/spray.png)|Pay 'n' Spray| +|19|![](%gta3-r/tony.png)|Toni Cipriani| +|20|![](%gta3-r/weapon.png)|Ammu-Nation| \ No newline at end of file diff --git a/es/scm-documentation/lcs/clothes.html b/es/scm-documentation/lcs/clothes.html index 5581929..77d2f0f 100644 --- a/es/scm-documentation/lcs/clothes.html +++ b/es/scm-documentation/lcs/clothes.html @@ -8,84 +8,27 @@ - ```sb3 0357: set_actor $PLAYER_ACTOR skin_to <ID> ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDNombre
PLRLeone's suit
PLR2Lawyer's suit
PLR3Casual clothes
PLR4Chauffeur's clothes
PLR5Overalls
PLR6Tuxedo
PLR7Avenging Angel's fatigues
PLR8'The King' jumpsuit
PLR9Cox Mascot suit
PLR10Underwear
PLR11Hero garb
PLR12'Dragon' jumpsuit
PLR13Antonio
PLR14Sweats
PLR15Wiseguy
PLR16Goodfella
+|ID|Nombre| +|-| +|PLR|Leone's suit| +|PLR2|Lawyer's suit| +|PLR3|Casual clothes| +|PLR4|Chauffeur's clothes| +|PLR5|Overalls| +|PLR6|Tuxedo| +|PLR7|Avenging Angel's fatigues| +|PLR8|'The King' jumpsuit| +|PLR9|Cox Mascot suit| +|PLR10|Underwear| +|PLR11|Hero garb| +|PLR12|'Dragon' jumpsuit| +|PLR13|Antonio| +|PLR14|Sweats| +|PLR15|Wiseguy| +|PLR16|Goodfella| \ No newline at end of file diff --git a/es/scm-documentation/lcs/gangs.html b/es/scm-documentation/lcs/gangs.html index b611fa0..b676d6a 100644 --- a/es/scm-documentation/lcs/gangs.html +++ b/es/scm-documentation/lcs/gangs.html @@ -8,51 +8,16 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDNombre
0Leone
1Triad
2Diablo
3Yakuza
4Yardie
5Colombian
6Hood
7Forelli
8Sindacco
+|ID|Nombre| +|-| +|0|Leone| +|1|Triad| +|2|Diablo| +|3|Yakuza| +|4|Yardie| +|5|Colombian| +|6|Hood| +|7|Forelli| +|8|Sindacco| \ No newline at end of file diff --git a/es/scm-documentation/lcs/models.html b/es/scm-documentation/lcs/models.html index 0059416..d9d44d1 100644 --- a/es/scm-documentation/lcs/models.html +++ b/es/scm-documentation/lcs/models.html @@ -8,355 +8,92 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDNombre
0PLAYER
1COP
2SWAT
3FBI
4ARMY
5MEDIC
6FIREMAN
7MALE01
8(unknown)
9TAXI_D
10PIMP
11CRIMINAL01
12CRIMINAL02
13MALE02
14MALE03
15FATMALE01
16FATMALE02
17FEMALE01
18FEMALE02
19FEMALE03
20FATFEMALE01
21FATFEMALE02
22PROSTITUTE
23PROSTITUTE2
24P_MAN1
25P_MAN2
26P_WOM1
27P_WOM2
28CT_MAN1
29CT_MAN2
30CT_WOM1
31CT_WOM2
32LI_MAN1
33LI_MAN2
34LI_WOM1
35LI_WOM2
36DOCKER1
37DOCKER2
38SCUM_MAN
39SCUM_WOM
40WORKER1
41WORKER2
42B_MAN1
43B_MAN2
44B_MAN3
45B_WOM1
46B_WOM2
47B_WOM3
48MOD_MAN
49MOD_WOM
50ST_MAN
51ST_WOM
52FAN_MAN1
53FAN_MAN2
54FAN_WOM
55HOS_MAN
56HOS_WOM
57CONST1
58CONST2
59SHOPPER1
60SHOPPER2
61SHOPPER3
62STUD_MAN
63STUD_WOM
64CAS_MAN
65CAS_WOM
68HITMAN
79GANG01 (LEONE_A)
80GANG02 (LEONE_B)
81GANG03 (TRIAD_A)
82GANG04 (TRIAD_B)
83GANG05 (DIABLO_A)
84GANG06 (DIABLO_B)
85GANG07 (YAKUZA_A)
86GANG08 (YAKUZA_B)
87GANG09 (YARDIE_A)
88GANG10 (YARDIE_B)
89GANG11 (COLOMBIAN_A)
90GANG12 (COLOMBIAN_B)
91GANG13 (HOOD_A)
92GANG14 (HOOD_B)
93GANG15 (FORELLI_A)
94GANG16 (FORELLI_B)
95GANG17 (SINDACCO_A)
96GANG18 (SINDACCO_B)
+|ID|Nombre| +|-| +|0|PLAYER| +|1|COP| +|2|SWAT| +|3|FBI| +|4|ARMY| +|5|MEDIC| +|6|FIREMAN| +|7|MALE01| +|8|(unknown)| +|9|TAXI_D| +|10|PIMP| +|11|CRIMINAL01| +|12|CRIMINAL02| +|13|MALE02| +|14|MALE03| +|15|FATMALE01| +|16|FATMALE02| +|17|FEMALE01| +|18|FEMALE02| +|19|FEMALE03| +|20|FATFEMALE01| +|21|FATFEMALE02| +|22|PROSTITUTE| +|23|PROSTITUTE2| +|24|P_MAN1| +|25|P_MAN2| +|26|P_WOM1| +|27|P_WOM2| +|28|CT_MAN1| +|29|CT_MAN2| +|30|CT_WOM1| +|31|CT_WOM2| +|32|LI_MAN1| +|33|LI_MAN2| +|34|LI_WOM1| +|35|LI_WOM2| +|36|DOCKER1| +|37|DOCKER2| +|38|SCUM_MAN| +|39|SCUM_WOM| +|40|WORKER1| +|41|WORKER2| +|42|B_MAN1| +|43|B_MAN2| +|44|B_MAN3| +|45|B_WOM1| +|46|B_WOM2| +|47|B_WOM3| +|48|MOD_MAN| +|49|MOD_WOM| +|50|ST_MAN| +|51|ST_WOM| +|52|FAN_MAN1| +|53|FAN_MAN2| +|54|FAN_WOM| +|55|HOS_MAN| +|56|HOS_WOM| +|57|CONST1| +|58|CONST2| +|59|SHOPPER1| +|60|SHOPPER2| +|61|SHOPPER3| +|62|STUD_MAN| +|63|STUD_WOM| +|64|CAS_MAN| +|65|CAS_WOM| +|68|HITMAN| +|79|GANG01 (LEONE_A)| +|80|GANG02 (LEONE_B)| +|81|GANG03 (TRIAD_A)| +|82|GANG04 (TRIAD_B)| +|83|GANG05 (DIABLO_A)| +|84|GANG06 (DIABLO_B)| +|85|GANG07 (YAKUZA_A)| +|86|GANG08 (YAKUZA_B)| +|87|GANG09 (YARDIE_A)| +|88|GANG10 (YARDIE_B)| +|89|GANG11 (COLOMBIAN_A)| +|90|GANG12 (COLOMBIAN_B)| +|91|GANG13 (HOOD_A)| +|92|GANG14 (HOOD_B)| +|93|GANG15 (FORELLI_A)| +|94|GANG16 (FORELLI_B)| +|95|GANG17 (SINDACCO_A)| +|96|GANG18 (SINDACCO_B)| \ No newline at end of file diff --git a/es/scm-documentation/lcs/special-actors.html b/es/scm-documentation/lcs/special-actors.html index e05d712..36dc4ca 100644 --- a/es/scm-documentation/lcs/special-actors.html +++ b/es/scm-documentation/lcs/special-actors.html @@ -8,240 +8,66 @@ - ```sb3 0241: load_special_actor 1 <ID> ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDDescripción
AVERYAvery Carrington
BABYGiovanni Casa (baby)
BIKER1Biker Dude 1
BIKER2Biker Dude 2
BODYBAGBODYBAG
CAMP_MANCampaign Worker
CAMP_WOMCampaign Worker 2
CASAGiovanni Casa
CHAUFFChauffeur
DELIASSDeli Assistant
DONOVANO'Donovan
EIGHT8Ball
FKENNYFather Kenny (not used)
FRANFORFranco Forelli
GRDANG1Avenging Angel
GRDANG2Avenging Angel 2
GREASEGrease Zuko
GUN_ASSGun assistant
HOBO_01Donald Love 2
HOLEJOGMayor RC Hole (Jogging outfit)
HOPPERJane Hopper
JD_SHOTDead JD
JDMADEJD O'Toole - Made Man
KAS_01Toshiko Kasen (kimono)
KAZUKIKazuki Kasen
LOVE_01Donald Love
M_HOLEMayor RC Hole
MAR_01Maria
MASTORMassimo Torrini (Assassin)
MCAFFRYDet. Leon McAffrey
MICKEYHMickey H
MIGUELMiguel
NED_01Ned Burner (Reporter)
PAULIEPaulie Sindacco
PHILCPhil Cassidy
PLR10player (skin: boxer Shorts)
PLR11player (skin: bad super hero)
PLR12player (skin: dragon)
PLR2player (skin: lawyer)
PLR3player (skin: travel clothes)
PLR4player (skin: chauffeur)
PLR5player (skin: hockey mask)
PLR6player (skin: tuxedo)
PLR7player (skin: avenging angel)
PLR8player (skin: the King of Rock'n Roll)
PLR9player (skin: cock's mascot)
RAY_01Ray (Bad Cop)
SAL_01Salvatore (Mob Don)
SAL_CONSal CONVICT
THUG_01Sicilian Thug 1
THUG_02Sicilian Thug 2
TOOL_01JD O'Toole
VINC_01Vincenzo Cilli
WAYNEWayne (Biker Dude)
WKAS_01Toshiko Kasen (western)
+|ID|Descripción| +|-| +|AVERY|Avery Carrington| +|BABY|Giovanni Casa (baby)| +|BIKER1|Biker Dude 1| +|BIKER2|Biker Dude 2| +|BODYBAG|BODYBAG| +|CAMP_MAN|Campaign Worker| +|CAMP_WOM|Campaign Worker 2| +|CASA|Giovanni Casa| +|CHAUFF|Chauffeur| +|DELIASS|Deli Assistant| +|DONOVAN|O'Donovan| +|EIGHT|8Ball| +|FKENNY|Father Kenny (not used)| +|FRANFOR|Franco Forelli| +|GRDANG1|Avenging Angel| +|GRDANG2|Avenging Angel 2| +|GREASE|Grease Zuko| +|GUN_ASS|Gun assistant| +|HOBO_01|Donald Love 2| +|HOLEJOG|Mayor RC Hole (Jogging outfit)| +|HOPPER|Jane Hopper| +|JD_SHOT|Dead JD| +|JDMADE|JD O'Toole - Made Man| +|KAS_01|Toshiko Kasen (kimono)| +|KAZUKI|Kazuki Kasen| +|LOVE_01|Donald Love| +|M_HOLE|Mayor RC Hole| +|MAR_01|Maria| +|MASTOR|Massimo Torrini (Assassin)| +|MCAFFRY|Det. Leon McAffrey| +|MICKEYH|Mickey H| +|MIGUEL|Miguel| +|NED_01|Ned Burner (Reporter)| +|PAULIE|Paulie Sindacco| +|PHILC|Phil Cassidy| +|PLR10|player (skin: boxer Shorts)| +|PLR11|player (skin: bad super hero)| +|PLR12|player (skin: dragon)| +|PLR2|player (skin: lawyer)| +|PLR3|player (skin: travel clothes)| +|PLR4|player (skin: chauffeur)| +|PLR5|player (skin: hockey mask)| +|PLR6|player (skin: tuxedo)| +|PLR7|player (skin: avenging angel)| +|PLR8|player (skin: the King of Rock'n Roll)| +|PLR9|player (skin: cock's mascot)| +|RAY_01|Ray (Bad Cop)| +|SAL_01|Salvatore (Mob Don)| +|SAL_CON|Sal CONVICT| +|THUG_01|Sicilian Thug 1| +|THUG_02|Sicilian Thug 2| +|TOOL_01|JD O'Toole| +|VINC_01|Vincenzo Cilli| +|WAYNE|Wayne (Biker Dude)| +|WKAS_01|Toshiko Kasen (western)| \ No newline at end of file diff --git a/es/scm-documentation/lcs/weapons.html b/es/scm-documentation/lcs/weapons.html index fa30eb5..6086f48 100644 --- a/es/scm-documentation/lcs/weapons.html +++ b/es/scm-documentation/lcs/weapons.html @@ -8,206 +8,48 @@ - ```sb3 01B6: give_player $PLAYER_CHAR weapon <ID> ammo 1 ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDModeloNombre
0-Unarmed
1259
2260
3261
4262
5263
6264
7265
8266
9267
10268
11269
12270Grenades
13291
14271
15272
16273
17274Pistol
18275.357
19277Shotgun
20278
21279
22281
23282Micro-SMG
24283
25284SMG
26280M4
27276AK-47
28285Sniper Rifle
29286
30287Rocket Launcher
31288Flame-Thrower
32289
33290Minigun
34?
35?
36292
+|ID|Modelo|Nombre| +|-| +|0|\s|Unarmed| +|1|259|\s| +|2|260|\s| +|3|261|\s| +|4|262|\s| +|5|263|\s| +|6|264|\s| +|7|265|\s| +|8|266|\s| +|9|267|\s| +|10|268|\s| +|11|269|\s| +|12|270|Grenades| +|13|291|\s| +|14|271|\s| +|15|272|\s| +|16|273|\s| +|17|274|Pistol| +|18|275|.357| +|19|277|Shotgun| +|20|278|\s| +|21|279|\s| +|22|281|\s| +|23|282|Micro-SMG| +|24|283|\s| +|25|284|SMG| +|26|280|M4| +|27|276|AK-47| +|28|285|Sniper Rifle| +|29|286|\s| +|30|287|Rocket Launcher| +|31|288|Flame-Thrower| +|32|289|\s| +|33|290|Minigun| +|34|?|\s| +|35|?|\s| +|36|292|\s| \ No newline at end of file diff --git a/es/scm-documentation/lcs/weather.html b/es/scm-documentation/lcs/weather.html index 595413c..5cbe06c 100644 --- a/es/scm-documentation/lcs/weather.html +++ b/es/scm-documentation/lcs/weather.html @@ -8,47 +8,15 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDDescripción
0Sunny
1Cloudy
2Rainy
3Foggy
4Extra sunny
5Hurricane
6Extra colors
7Snow
+|ID|Descripción| +|-| +|0|Sunny| +|1|Cloudy| +|2|Rainy| +|3|Foggy| +|4|Extra sunny| +|5|Hurricane| +|6|Extra colors| +|7|Snow| \ No newline at end of file diff --git a/es/scm-documentation/sa/buttons.html b/es/scm-documentation/sa/buttons.html index f8ba3e0..64a17a7 100644 --- a/es/scm-documentation/sa/buttons.html +++ b/es/scm-documentation/sa/buttons.html @@ -8,58 +8,35 @@ - ```sb3 00E1: player 0 key_pressed <botón> ``` - - - - - - - - - - - -
De pieEn vehículoEnumBotón
+|De pie|En vehículo|Enum|Botón| +|-| +|IZQUIERDA\nDERECHA|IZQUIERDA\nDERECHA|LEFTSTICKX|0| +|ADELANTE\nATRÁS|ACELERAR\nRETROCEDER|LEFTSTICKY|1| +|CTRL ESPECIAL IZQUIERDA\nDERECHA|CTRL ESPECIAL IZQUIERDA\nDERECHA|RIGHTSTICKX|2| +|CTRL ESPECIAL ARRIBA\nABAJO|CTRL ESPECIAL ARRIBA\nABAJO|RIGHTSTICKY|3| +|ACCIÓN|DISPARO SECUNDARIO|LEFTSHOULDER1|4| +|ARMA ANTERIOR u OBJETIVO|MIRAR A LA IZQUIERDA|LEFTSHOULDER2|5| +|APUNTAR CON ARMA|FRENO DE MANO|RIGHTSHOULDER1|6| +|ARMA SIGUIENTE u OBJETIVO|MIRAR A LA DERECHA|RIGHTSHOULDER2|7| +|GROPO CTRL ATRAS|EMISORA SIGUIENTE|DPADUP|8| +|GROPO CTRL ADELANTE|EMISORA ANTERIOR|DPADDOWN|9| +|CONVERSACIÓN: NO|NO|DPADLEFT|10| +|CONVERSACIÓN: SI|SI\nSALTARSE EL VIAJE|DPADRIGHT|11| +|MENÚ DE PAUSA|MENÚ DE PAUSA|START|12| +|CAMBIAR CÁMARA|CAMBIAR CÁMARA|SELECT|13| +|SALTAR\nZOOM -|FRENO\nMARCHA ATRÁS|SQUARE|14| +|ENTRAR u SALIR|ENTRAR u SALIR|TRIANGLE|15| +|ESPRINTAR\nZOOM +|ACELERAR|CROSS|16| +|DISPARAR|DISPARAR|CIRCLE|17| +|AGACHARSE|CLAXON|LEFTSHOCK|18| +|MIRAR ATRÁS|SUBMISIÓN|RIGHTSHOCK|19| [https://gtamods.com/wiki/00E1](https://gtamods.com/wiki/00E1) - \ No newline at end of file + \ No newline at end of file diff --git a/es/scm-documentation/sa/gangs.html b/es/scm-documentation/sa/gangs.html index 6cf88b7..96af903 100644 --- a/es/scm-documentation/sa/gangs.html +++ b/es/scm-documentation/sa/gangs.html @@ -13,35 +13,17 @@ 0237: set_gang <id> weapons_to 24 29 4 ``` - - - - - - - -
NombreIDGXT
+|Nombre|ID|GXT| +|-| +|Ballas|0|ST_GNG0| +|Grove Street Families|1|ST_GNG1| +|Los Santos Vagos|2|ST_GNG2| +|San Fierro Rifa|3|ST_GNG3| +|Da Nang Boys|4|ST_GNG4| +|Mafia|5|ST_GNG5| +|Mountain Cloud Triad|6|ST_GNG6| +|Varrio Los Aztecas|7|ST_GNG7| +|(unused)|8|ST_GNG8| +|(unused)|9|ST_GNG9| - - \ No newline at end of file + \ No newline at end of file diff --git a/es/scm-documentation/sa/garages.html b/es/scm-documentation/sa/garages.html index 6878329..ed538fd 100644 --- a/es/scm-documentation/sa/garages.html +++ b/es/scm-documentation/sa/garages.html @@ -8,357 +8,67 @@ - ```sb3 Garage.Activate('BODLAWN') ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NombrePosiciónDescripciónNotas
**Los Santos**
CJSAFE(2502.31,-1699.36,12.4323)Ganton garage
CESAFE1(1352.58,-636.657,108.135)Muholland garage
MUL_LAN(1640.37,-1520.07,12.5118)Downtown garageused in
"Life's a Beach"
IMP_LA(1523.92,-1653.23,4.72837)impound lot
DUF_LAS(1873.97,-2096.55,12.487)El Corona garageused in
"Los Desperados"
LASBOMB(1843.91,-1858.8,12.3645)bomb shop
MODGLAS(1809.46,-2150.67,12.4283)Cesar's garage
CARLAS1(1694.8,-2088.7,12.3636)El Corona garage
BURG_LK(2738.4,-2012.55,12.5759)burglary garage
MODLAST(2640.78,-2049.99,12.543)Loco Low Co
SPLAW2(491.103,-1747.55,9.45516)Verona Beach Pay n Spray
BEACSV(319.326,-1768.93,3.35686)Santa Maria Beach garage
BODLAWN(1038.24,-1025.67,31.1027)Transfender
SPRLAE(2056.6,-1835.9,12.5443)Idlewood Pay n Spray
SPRLAE(1021.81 -1018.71 30.9081)Temple Pay n Spray
**San Fierro**
FDORSFE(-2171.43,649.416,49.8742)Wu Zi's garage
MICHDR(-1790.97,1209.71,23.763)Michelle's garage
SAV1SFE(-2108.92,886.553,75.566)Windy road garage
IMP_SF(-1652.78,647.502,-6.04924)impound lot
MDS1SFS(-2728.53,212.295,3.45112)"Wheels Arch Angel" garage
TBON(-2735.46,60.7331,3.07005)garage a block south of "Wheels Arch Angel"
SVGSFS1(-2454.02,-131.556,25.0886)Hashbury garage
MDSSFSE(-1941.04,251.714,33.4274)Transfender
SPRSFSE(-1908.93,292.353,40.0413)Downtown Pay n Spray
BRGSFSE(-2112.48,-21.214,34.303)burglary garage
HBGDSFS(-2057.35,150.803,27.8286)Doherty garage #1 left
LCKSFSE(-2043.1,118.609,27.821)Doherty garage #2 right
SPRSFW(-2430.13,1013.71,49.3413)Juniper Hollow Pay n Spray
SAV1SFW(2699.12,821.489,49.0042)Paradiso garage
(-1694.78 1033.15 44.1937)Esplanade North garageused in
"Yay Ka-Boom-Boom"
(-1794.15 1429.69 4.37321)Downtown garage"Ran Fa Li"
**Las Venturas**
VGELOCK(2602.6,1438.84,9.8337)burglary garage
VECMOD(2382.28,1044,9.8337)Transfender
VESVGRG(2449.5,695.018,10.4742)Rockshore West garage
IMP_LV(2218.06,2448.06,-8.43807)impound lot
VGSHNGR(1550.98,1155.36,8.97329)AT 400 hangar
BLOB2(2002.96,2303.72,9.61706)Welding and Wedding bomb shop
BLOB1(1968.23,2157.88,9.59696)Redsands East Pay n Spray
BLOB6(1408.65,1899.52,10.115)Redsands West garage
BLOB69(1269.2,2525.14,9.80013)Prickle Pine garage
BLOB7(929.554,2008.59,10.115)Whitewood Estates garage
TIMY1(2389.6,1483.26,9.81843)unused Pay n Spray(the door doesn't work)
**Countryside**
CN2SPRY(-103.636,1112.42,18.7017)Fort Carson Pay n Spray
CN2GAR1(-364.439,1194.37,18.597)Fort Carson garage
CN2GAR2(430.059,2542.31,15.166)Verdant Meadows garage
GHOSTDR(-397.297,2223.17,41.3824)garage used in
"Interdiction"
DHANGAR(383.843,2433.28,15.166)Verdant Meadows Hangar
CESPRAY(715.806,-462.403,14.9635)Dillimore Pay n Spray
BURBDOO(2227.6,168.649,26.4635)Palomino Creek garage
BURBDO2(783.155,-492.75,16.3361)Dillimore garage
CNSPRAY(-1424.11,2576.61,54.8156)El Quebrados Pay n Spray
AMUMIS(-2114.42,-2462.27,29.4809)Angel Pine Ammunation garage
+|Nombre|Posición|Descripción|Notas| +|-| +|**Los Santos**|\s|\s|\s| +|CJSAFE|(2502.31,-1699.36,12.4323)|Ganton garage|\s| +|CESAFE1|(1352.58,-636.657,108.135)|Muholland garage|\s| +|MUL_LAN|(1640.37,-1520.07,12.5118)|Downtown garage|used in \n'Life's a Beach&| +|IMP_LA|(1523.92,-1653.23,4.72837)|impound lot|\s| +|DUF_LAS|(1873.97,-2096.55,12.487)|El Corona garage|used in \n'Los Desperados"| +|LASBOMB|(1843.91,-1858.8,12.3645)|bomb shop|\s| +|MODGLAS|(1809.46,-2150.67,12.4283)|Cesar's garage|\s| +|CARLAS1|(1694.8,-2088.7,12.3636)|El Corona garage|\s| +|BURG_LK|(2738.4,-2012.55,12.5759)|burglary garage|\s| +|MODLAST|(2640.78,-2049.99,12.543)|Loco Low Co|\s| +|SPLAW2|(491.103,-1747.55,9.45516)|Verona Beach Pay n Spray|\s| +|BEACSV|(319.326,-1768.93,3.35686)|Santa Maria Beach garage|\s| +|BODLAWN|(1038.24,-1025.67,31.1027)|Transfender|\s| +|SPRLAE|(2056.6,-1835.9,12.5443)|Idlewood Pay n Spray|\s| +|SPRLAE|(1021.81 -1018.71 30.9081)|Temple Pay n Spray|\s| +|**San Fierro**|\s|\s|\s| +|FDORSFE|(-2171.43,649.416,49.8742)|Wu Zi's garage|\s| +|MICHDR|(-1790.97,1209.71,23.763)|Michelle's garage|\s| +|SAV1SFE|(-2108.92,886.553,75.566)|Windy road garage|\s| +|IMP_SF|(-1652.78,647.502,-6.04924)|impound lot|\s| +|MDS1SFS|(-2728.53,212.295,3.45112)|'Wheels Arch Angel' garage|\s| +|TBON|(-2735.46,60.7331,3.07005)|garage a block south of 'Wheels Arch Angel'|\s| +|SVGSFS1|(-2454.02,-131.556,25.0886)|Hashbury garage|\s| +|MDSSFSE|(-1941.04,251.714,33.4274)|Transfender|\s| +|SPRSFSE|(-1908.93,292.353,40.0413)|Downtown Pay n Spray|\s| +|BRGSFSE|(-2112.48,-21.214,34.303)|burglary garage|\s| +|HBGDSFS|(-2057.35,150.803,27.8286)|Doherty garage #1 left|\s| +|LCKSFSE|(-2043.1,118.609,27.821)|Doherty garage #2 right|\s| +|SPRSFW|(-2430.13,1013.71,49.3413)|Juniper Hollow Pay n Spray|\s| +|SAV1SFW|(2699.12,821.489,49.0042)|Paradiso garage|\s| +|\s|(-1694.78 1033.15 44.1937)|Esplanade North garage|used in \n'Yay Ka-Boom-Boom&| +|\s|(-1794.15 1429.69 4.37321)|Downtown garage|'Ran Fa Li'| +|**Las Venturas**|\s|\s|\s| +|VGELOCK|(2602.6,1438.84,9.8337)|burglary garage|\s| +|VECMOD|(2382.28,1044,9.8337)|Transfender|\s| +|VESVGRG|(2449.5,695.018,10.4742)|Rockshore West garage|\s| +|IMP_LV|(2218.06,2448.06,-8.43807)|impound lot|\s| +|VGSHNGR|(1550.98,1155.36,8.97329)|AT 400 hangar|\s| +|BLOB2|(2002.96,2303.72,9.61706)|Welding and Wedding bomb shop|\s| +|BLOB1|(1968.23,2157.88,9.59696)|Redsands East Pay n Spray|\s| +|BLOB6|(1408.65,1899.52,10.115)|Redsands West garage|\s| +|BLOB69|(1269.2,2525.14,9.80013)|Prickle Pine garage|\s| +|BLOB7|(929.554,2008.59,10.115)|Whitewood Estates garage|\s| +|TIMY1|(2389.6,1483.26,9.81843)|unused Pay n Spray|(the door doesn't work)| +|**Countryside**|\s|\s|\s| +|CN2SPRY|(-103.636,1112.42,18.7017)|Fort Carson Pay n Spray|\s| +|CN2GAR1|(-364.439,1194.37,18.597)|Fort Carson garage|\s| +|CN2GAR2|(430.059,2542.31,15.166)|Verdant Meadows garage|\s| +|GHOSTDR|(-397.297,2223.17,41.3824)|garage| used in\n'Interdiction'| +|DHANGAR|(383.843,2433.28,15.166)|Verdant Meadows Hangar|\s| +|CESPRAY|(715.806,-462.403,14.9635)|Dillimore Pay n Spray|\s| +|BURBDOO|(2227.6,168.649,26.4635)|Palomino Creek garage|\s| +|BURBDO2|(783.155,-492.75,16.3361)|Dillimore garage|\s| +|CNSPRAY|(-1424.11,2576.61,54.8156)|El Quebrados Pay n Spray|\s| +|AMUMIS|(-2114.42,-2462.27,29.4809)|Angel Pine Ammunation garage| \ No newline at end of file diff --git a/es/scm-documentation/sa/haircuts.html b/es/scm-documentation/sa/haircuts.html index 0a7cc80..8276158 100644 --- a/es/scm-documentation/sa/haircuts.html +++ b/es/scm-documentation/sa/haircuts.html @@ -8,220 +8,44 @@ - ```sb3 Player.SetClothes($PLAYER_CHAR, <textura>, <modelo>, <parte del cuerpo>) ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TexturaModelo[Parte del Cuerpo](player-body-parts.html)Descripción
afroafro1Afro
afrobeardafro1Afro & Beard
afroblondafro1Blonde Afro
afrogoateeafro1Afro & Goatee
afrotashafro1Afro & Stash
baldhead1Bald Head
baldbeardhead1Bald & Beard
baldgoateehead1Bald & Goatee
baldtashhead1Bald & Stash
beardhead1Cesar & Beard
cornrowscornrows1Cornrow
cornrowsbcornrows1Blonde Cornrow
elvishairelvishair1Elvis Hair
flattopflattop1FlatTop
goateehead1Cesar & Goatee
groovecutgroovecut1Groove Cut
hairblondhead1Blonde Hair
hairbluehead1Blue Hair
hairgreenhead1Green Hair
hairpinkhead1Pink Hair
hairredHead1Red Hair
highafrohighafro1High Afro
highfadehead1High Fade
jhericurljheri1Jheri Curl
mohawkmohawk1Mowhawk
mohawkbeardmohawk1Mohawk & Beard
mohawkblondmohawk1Blonde Mowhawk
mohawkpinkmohawk1Pink Mowhawk
player_facehead1Cesar
slopeslope1Slope
tashhead1Cesar & Stash
tramlinetramline1Detail Cut
wedgewedge1Wedge
+|Textura|Modelo|[Parte del Cuerpo](player-body-parts.html)|Descripción| +|-| +|afro|afro|1|Afro| +|afrobeard|afro|1|Afro & Beard| +|afroblond|afro|1|Blonde Afro| +|afrogoatee|afro|1|Afro & Goatee| +|afrotash|afro|1|Afro & Stash| +|bald|head|1|Bald Head| +|baldbeard|head|1|Bald & Beard| +|baldgoatee|head|1|Bald & Goatee| +|baldtash|head|1|Bald & Stash| +|beard|head|1|Cesar & Beard| +|cornrows|cornrows|1|Cornrow| +|cornrowsb|cornrows|1|Blonde Cornrow| +|elvishair|elvishair|1|Elvis Hair| +|flattop|flattop|1|FlatTop| +|goatee|head|1|Cesar & Goatee| +|groovecut|groovecut|1|Groove Cut| +|hairblond|head|1|Blonde Hair| +|hairblue|head|1|Blue Hair| +|hairgreen|head|1|Green Hair| +|hairpink|head|1|Pink Hair| +|hairred|Head|1|Red Hair| +|highafro|highafro|1|High Afro| +|highfade|head|1|High Fade| +|jhericurl|jheri|1|Jheri Curl| +|mohawk|mohawk|1|Mowhawk| +|mohawkbeard|mohawk|1|Mohawk & Beard| +|mohawkblond|mohawk|1|Blonde Mowhawk| +|mohawkpink|mohawk|1|Pink Mowhawk| +|player_face|head|1|Cesar| +|slope|slope|1|Slope| +|tash|head|1|Cesar & Stash| +|tramline|tramline|1|Detail Cut| +|wedge|wedge|1|Wedge| \ No newline at end of file diff --git a/es/scm-documentation/sa/interiors.html b/es/scm-documentation/sa/interiors.html index cd66839..513c5c9 100644 --- a/es/scm-documentation/sa/interiors.html +++ b/es/scm-documentation/sa/interiors.html @@ -8,711 +8,146 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
NumeroNombreDescripción
1ABATOIRSindacco Abattoir
1AMMUN1Ammu-Nation
1CARMOD1TransFender
1FDREST1World of Coq
1GF1Denise's
1JETINTShamal interior
1LACS1Sub Urban
1LAHS1BHouse
1MAFCASCaligulas Casino
1MAFCAS2Penthouse Suites
1-Saint Mark's
1SMASHTVWarehouse
1-Stadium with wooden sandbox
1SVVGHO1Hotel Suite
1SWEETSSweet's House
1-Trailer
1TSDINERTruck Stop
1WUZIBETWu Zi Mu's
2BARBERSBarber
2BDUPS1B Dup's Crack Palace
2CARMOD2Loco Low Co.
2CARTERSmokes Crack Palace
2GF2Katie's
2LAHS1AHouse
2LASTRIPStrip Club
2RYDERSRyder's Place
2SVVGHO2Hotel Suite
2VGHSB1House
2VGHSB3House
3BARBER2Barber
3BDUPSB Dup's apartment
3BIKESCHBike School
3BROTHL1Whore House
3CARLSThe Johnson House
3CARMOD3Wheel Arch Angels
3CHANGERWardrobe
3CSSPRTPro-Laps
3DRIVESDriving School
3DRIVES2Driving School
3GENOTBInside Track Betting
3GF3Helena's
3LAHSB4House
3OGLOCSOG Loc's
3PAPERPlanning Department
3PDOMESThe Pleasure Domes
3PDOMES2The Pleasure Domes
3POLICE3LVPD HQ
3SEXSHOPSex Shop
3S1TESTMiddle of nowhere
3STRIP2Strip Club
3STUDIOBlastin' Fools Records studio
3TATTO3Tattoo Parlor
4AMMUN2Ammu-Nation
4DINER1Diner
4DIRBIKEDirt Stadium
4GF4Michelle's
4LAHS2AHouse
4LAHSS6House
4SFHSM2House
4X711S224-7
5CSDESGNVictim
5DINER2Diner
5FDPIZAPizza Stack
5GANGVagos Gang House
5GF5Barbara's
5GYM1Ganton Gym
5LACRAKCrack Den
5LAHSB3House
5MADDOGSMadd Dogg's Crib
5MDDOGSMadd Dogg's Crib
5SFHSB1House
5SVHOT1Hotel Suite
5VGHSM2House
6AMMUN3Ammu-Nation
6AMMUN5Ammu-Nation
6BROTHELWhore House
6GF6Millie's
6GYM2Cobra Marital Arts
6LAHSB1House
6POLICE1LSPD HQ
6RCPLAYZero's RC Shop
6REST2Secret Valley
6SFHSB2House
6SFHSS2House
6SVCUNTSafe House
6SVSFSMSafe House
6X7_11S24-7
78TRACK8-Track Stadium
7AMMUN4Ammu-Nation
7GYM3Below the Belt Gym
7LAHSB2House
7OFTESTMiddle of nowhere
8BURHOUSColonel Fuhrberger's
8SFHSS1House
8SVLAMDSafe House
9FDCHICKCluckin' Bell
9LAHS2BHouse
9SFHSB3House
9SVGNMT2Motel room
9SVVGMDSafe House
10DESHOUSAbandoned AC tower
10FDBURGBurger Shot
10POLICE2SFPD HQ
10SVGNMT1Motel room
10TRICASThe Four Dragon's
10-The Four Dragon's Casino's maintenance room
10SVSFMDSafe House
10VGHSM3House
10X711S324-7
10-Zero's No Man's Land
11BAR2Bar
11SVLASMSafe House
12BARBER3Barber
12MOROOMMotel room
12SVLABIGSafe House
14CSEXLDidier Sachs
14AIRPOR2Los Santos International Airport
14AIRPORTFrancis Intl. Airport
15CSCHPBinco
15MOTEL1Jefferson Motel
15SFHSM1House
15VGHSS1House
15VGSHM2House
15VGSHM3House
15VGSHS2House
16-Stadium with giant round circular raised platform in middle
16TATTOOTattoo Parlor
16X7_11C24-7
17BAR1Bar
17DAMINGenerator Hall
17FDDONUTRusty Brown's
17TATTO2Tattoo Parlor
17X7_11D24-7
18ATRIUMEAtrium
18ATRIUMXAttrium
18CLOTHGPZip
18GENWRHSWarehouse
18UFOBARLil' Probe Inn
18X7_11B24-7
+|Descripción|ID|GXT| +|-| +|Sindacco Abattoir|1|ABATOIR| +|Ammu-Nation|1|AMMUN1| +|TransFender|1|CARMOD1| +|World of Coq|1|FDREST1| +|Denise's|1|GF1| +|Shamal interior|1|JETINT| +|Sub Urban|1|LACS1| +|House|1|LAHS1B| +|Caligulas Casino|1|MAFCAS| +|Penthouse Suites|1|MAFCAS2| +|Saint Mark's|1|\s| +|Warehouse|1|SMASHTV| +|Stadium with wooden sandbox|1|\s| +|Hotel Suite|1|SVVGHO1| +|Sweet's House|1|SWEETS| +|Trailer|1|\s| +|Truck Stop|1|TSDINER| +|Wu Zi Mu's|1|WUZIBET| +|Barber|2|BARBERS| +|B Dup's Crack Palace|2|BDUPS1| +|Loco Low Co.|2|CARMOD2| +|Smokes Crack Palace|2|CARTER| +|Katie's|2|GF2| +|House|2|LAHS1A| +|Strip Club|2|LASTRIP| +|Ryder's Place|2|RYDERS| +|Hotel Suite|2|SVVGHO2| +|House|2|VGHSB1| +|House|2|VGHSB3| +|Barber|3|BARBER2| +|B Dup's apartment|3|BDUPS| +|Bike School|3|BIKESCH| +|Whore House|3|BROTHL1| +|The Johnson House|3|CARLS| +|Wheel Arch Angels|3|CARMOD3| +|Wardrobe|3|CHANGER| +|Pro-Laps|3|CSSPRT| +|Driving School|3|DRIVES| +|Driving School|3|DRIVES2| +|Inside Track Betting|3|GENOTB| +|Helena's|3|GF3| +|House|3|LAHSB4| +|OG Loc's|3|OGLOCS| +|Planning Department|3|PAPER| +|The Pleasure Domes|3|PDOMES| +|The Pleasure Domes|3|PDOMES2| +|LVPD HQ|3|POLICE3| +|Sex Shop|3|SEXSHOP| +|Middle of nowhere|3|S1TEST| +|Strip Club|3|STRIP2| +|Blastin' Fools Records studio|3|STUDIO| +|Tattoo Parlor|3|TATTO3| +|Ammu-Nation|4|AMMUN2| +|Diner|4|DINER1| +|Dirt Stadium|4|DIRBIKE| +|Michelle's|4|GF4| +|House|4|LAHS2A| +|House|4|LAHSS6| +|House|4|SFHSM2| +|24-7|4|X711S2| +|Victim|5|CSDESGN| +|Diner|5|DINER2| +|Pizza Stack|5|FDPIZA| +|Vagos Gang House|5|GANG| +|Barbara's|5|GF5| +|Ganton Gym|5|GYM1| +|Crack Den|5|LACRAK| +|House|5|LAHSB3| +|Madd Dogg's Crib|5|MADDOGS| +|Madd Dogg's Crib|5|MDDOGS| +|House|5|SFHSB1| +|Hotel Suite|5|SVHOT1| +|House|5|VGHSM2| +|Ammu-Nation|6|AMMUN3| +|Ammu-Nation|6|AMMUN5| +|Whore House|6|BROTHEL| +|Millie's|6|GF6| +|Cobra Marital Arts|6|GYM2| +|House|6|LAHSB1| +|LSPD HQ|6|POLICE1| +|Zero's RC Shop|6|RCPLAY| +|Secret Valley|6|REST2| +|House|6|SFHSB2| +|House|6|SFHSS2| +|Safe House|6|SVCUNT| +|Safe House|6|SVSFSM| +|24-7|6|X7_11S| +|8-Track Stadium|7|8TRACK| +|Ammu-Nation|7|AMMUN4| +|Below the Belt Gym|7|GYM3| +|House|7|LAHSB2| +|Middle of nowhere|7|OFTEST| +|Colonel Fuhrberger's|8|BURHOUS| +|House|8|SFHSS1| +|Safe House|8|SVLAMD| +|Cluckin' Bell|9|FDCHICK| +|House|9|LAHS2B| +|House|9|SFHSB3| +|Motel room|9|SVGNMT2| +|Safe House|9|SVVGMD| +|Abandoned AC tower|10|DESHOUS| +|Burger Shot|10|FDBURG| +|SFPD HQ|10|POLICE2| +|Motel room|10|SVGNMT1| +|The Four Dragon's|10|TRICAS| +|The Four Dragon's Casino's maintenance room|10|\s| +|Safe House|10|SVSFMD| +|House|10|VGHSM3| +|24-7|10|X711S3| +|Zero's No Man's Land|10|\s| +|Bar|11|BAR2| +|Safe House|11|SVLASM| +|Barber|12|BARBER3| +|Motel room|12|MOROOM| +|Safe House|12|SVLABIG| +|Didier Sachs|14|CSEXL| +|Los Santos International Airport|14|AIRPOR2| +|Francis Intl. Airport|14|AIRPORT| +|Binco|15|CSCHP| +|Jefferson Motel|15|MOTEL1| +|House|15|SFHSM1| +|House|15|VGHSS1| +|House|15|VGSHM2| +|House|15|VGSHM3| +|House|15|VGSHS2| +|Stadium with giant round circular raised platform in middle|16|\s| +|Tattoo Parlor|16|TATTOO| +|24-7|16|X7_11C| +|Bar|17|BAR1| +|Generator Hall|17|DAMIN| +|Rusty Brown's|17|FDDONUT| +|Tattoo Parlor|17|TATTO2| +|24-7|17|X7_11D| +|Atrium|18|ATRIUME| +|Attrium|18|ATRIUMX| +|Zip|18|CLOTHGP| +|Warehouse|18|GENWRHS| +|Lil' Probe Inn|18|UFOBAR| +|24-7|18|X7_11B| \ No newline at end of file diff --git a/es/scm-documentation/sa/particles.html b/es/scm-documentation/sa/particles.html index cd27a4a..dd688d1 100644 --- a/es/scm-documentation/sa/particles.html +++ b/es/scm-documentation/sa/particles.html @@ -11,106 +11,88 @@ ```sb3 064B: 0@ = create_particle <id> at X Y Z type 1 ``` - - - - - - - - - -
DescripciónPartícula
- - \ No newline at end of file +|Descripción|ID| +|-| +|bloody explosion|blood_heli| +|a surf|boat_prop| +|small flare|camflash| +|steam, as on a carwash|carwashspray| +|cement|cement| +|fast clouds|cloudfast| +|puff of a coke|coke_puff| +|a pouring water|coke_trail| +|a smoke from a cigarette|cigarette_smoke| +|explosion and splinters of a box|explosion_barrel| +|explosion and splinters of the large box|explosion_crate| +|a smoke with sparks|explosion_door| +|a small smoke|exhale| +|explosion, as from the machine|explosion_fuel_car| +|the large explosion|explosion_large| +|average explosion|explosion_medium| +|explosion, as from a movotov cocktail|explosion_molotov| +|small explosion|explosion_small| +|very small explosion|explosion_tiny| +|foam of the fire extinguisher|extinguisher| +|small fire|flame| +|fire|fire| +|average fire|fire_med| +|large fire|fire_large| +|fire of the flamethrower|flamethrower| +|fire, as from a burning motorcycle|fire_bike| +|fire, as from the burning machine|fire_car| +|as the bullet from a trunk takes off|gunflash| +|a smoke from a gun|gunsmoke| +|insects|insects| +|a dust, as from the helicopter|heli_dust| +|a jetpack's fire|jetpack| +|fire from the muffler of the machine, as during use of nitrogen|jetthrust| +|nitro|nitro| +|fire from a Molotov Cocktail|molotov_flame| +|smoke from damaged car|overheat_car| +|wrecked electro-machine|overheat_car_electric| +|foam|prt_boatsplash| +|splinters from a box|prt_cardebris| +|a dense white smoke|prt_collisionsmoke| +|a crashing glass|prt_glass| +|shells|prt_gunshell| +|sand, which was scattered|prt_sand| +|there is less sand, than in previous animation|prt_sand2| +|- a grey smoke|prt_smokeII_3_expand| +|there is a lot of grey smoke|prt_smoke_huge| +|of a spark|prt_spark| +|the large sparks|prt_spark_2| +|burst|prt_splash| +|a wave|prt_wake| +|sparks|prt_watersplash| +|sparks from wheels of the car|prt_wheeldirt| +|a jet|petrolcan| +|belch|puke| +|there is a lot of smoke|riot_smoke| +|spray|spraycan| +|a smoke|smoke30lit| +|a rich smoke|smoke30m| +|more richer smoke|smoke50lit| +|fireworks|shootlight| +|fireworks|smoke_flare| +|a shot from the tank|tank_fire| +|gas, as from gas grenade|teargas| +|gas, as from small gas grenade|teargasAD| +|leaf falling|tree_hit_fir| +|falling of pair large leafs|tree_hit_palm| +|slowly dissipating a smoke|vent| +|practically too most|vent2| +|the large flow of water|water_hydrant| +|circles on water|water_ripples| +|the large sparks from water|water_speed| +|small sparks from water|water_splash| +|average sparks|water_splash_big| +|sparks, only them it is not visible almost|water_splsh_sml| +|small sparks at navigation|water_swim| +|there is a lot of pair|waterfall_end| +|the large flow of water|water_fnt_tme| +|water of a fountain|water_fountain| +|a disappearing heap pair|wallbust| +|smoke|WS_factorysmoke| + + \ No newline at end of file diff --git a/es/scm-documentation/sa/pedtypes.html b/es/scm-documentation/sa/pedtypes.html index 5ede6cf..3b1ef66 100644 --- a/es/scm-documentation/sa/pedtypes.html +++ b/es/scm-documentation/sa/pedtypes.html @@ -8,148 +8,43 @@ - ```sb3 009A: $Actor = create_actor <tipo> #MODEL at X Y Z ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TipoDescripción
0PLAYER1
1PLAYER2
2PLAYER_NETWORK
3PLAYER_UNUSED
4CIVMALE
5CIVFEMALE
6COP
7GANG1 (Ballas)
8GANG2 (Grove Street Families)
9GANG3 (Los Santos Vagos)
10GANG4 (San Fierro Rifa)
11GANG5 (Da Nang Boys)
12GANG6 (Mafia)
13GANG7 (Mountain Cloud Triad)
14GANG8 (Varrio Los Aztecas)
15GANG9 (unused)
16GANG10 (unused)
17DEALER
18MEDIC
19FIREMAN
20CRIMINAL
21BUM*
22PROSTITUTE
23SPECIAL
24MISSION1
25MISSION2
26MISSION3
27MISSION4
28MISSION5
29MISSION6
30MISSION7
31MISSION8
+|Tipo|Descripción| +|-| +|0|PLAYER1| +|1|PLAYER2| +|2|PLAYER_NETWORK| +|3|PLAYER_UNUSED| +|4|CIVMALE| +|5|CIVFEMALE| +|6|COP| +|7|GANG1 (Ballas)| +|8|GANG2 (Grove Street Families)| +|9|GANG3 (Los Santos Vagos)| +|10|GANG4 (San Fierro Rifa)| +|11|GANG5 (Da Nang Boys)| +|12|GANG6 (Mafia)| +|13|GANG7 (Mountain Cloud Triad)| +|14|GANG8 (Varrio Los Aztecas)| +|15|GANG9 (unused)| +|16|GANG10 (unused)| +|17|DEALER| +|18|MEDIC| +|19|FIREMAN| +|20|CRIMINAL| +|21|BUM*| +|22|PROSTITUTE| +|23|SPECIAL| +|24|MISSION1| +|25|MISSION2| +|26|MISSION3| +|27|MISSION4| +|28|MISSION5| +|29|MISSION6| +|30|MISSION7| +|31|MISSION8| \ No newline at end of file diff --git a/es/scm-documentation/sa/player-body-parts.html b/es/scm-documentation/sa/player-body-parts.html index d40b8bb..2664891 100644 --- a/es/scm-documentation/sa/player-body-parts.html +++ b/es/scm-documentation/sa/player-body-parts.html @@ -8,92 +8,29 @@ - ```sb3 087B: set_player $PLAYER_CHAR texture "VEST" model "VEST" body_part <id> ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDDescripción
0[Torso](clothes.md#torso)
1[Head](haircuts.md)
2[Legs](clothes.md#legs)
3[Shoes](clothes.md#legs)
4[Lower left arm](tattoos.md#lower-left-arm)
5[Upper left arm](tattoos.md#upper-left-arm)
6[Upper right arm](tattoos.md#upper-right-arm)
7[Lower right arm](tattoos.md#lower-right-arm)
8[Back top](tattoos.md#back-top)
9[Left chest](tattoos.md#left-chest)
10[Right chest](tattoos.md#right-chest)
11[Stomach](tattoos.md#stomach)
12[Lower back](tattoos.md#lower-back)
13[Necklace](clothes.md#necklaces)
14[Bracelet/Watch](clothes.md#watches)
15[Glasses](clothes.md#glasses)
16[Hats](clothes.md#hats)
17[Special clothes as Valet, Gimp suit](clothes.md#special)
+|ID|Descripción| +|-| +|0|[Torso](clothes.md#torso)| +|1|[Head](haircuts.md)| +|2|[Legs](clothes.md#legs)| +|3|[Shoes](clothes.md#legs)| +|4|[Lower left arm](tattoos.md#lower-left-arm)| +|5|[Upper left arm](tattoos.md#upper-left-arm)| +|6|[Upper right arm](tattoos.md#upper-right-arm)| +|7|[Lower right arm](tattoos.md#lower-right-arm)| +|8|[Back top](tattoos.md#back-top)| +|9|[Left chest](tattoos.md#left-chest)| +|10|[Right chest](tattoos.md#right-chest)| +|11|[Stomach](tattoos.md#stomach)| +|12|[Lower back](tattoos.md#lower-back)| +|13|[Necklace](clothes.md#necklaces)| +|14|[Bracelet/Watch](clothes.md#watches)| +|15|[Glasses](clothes.md#glasses)| +|16|[Hats](clothes.md#hats)| +|17|[Special clothes as Valet, Gimp suit](clothes.md#special)| \ No newline at end of file diff --git a/es/scm-documentation/sa/radar-icons.html b/es/scm-documentation/sa/radar-icons.html index c78d276..54e6b1e 100644 --- a/es/scm-documentation/sa/radar-icons.html +++ b/es/scm-documentation/sa/radar-icons.html @@ -1,7 +1,7 @@ - Iconos Radar + Iconos del Radar @@ -11,94 +11,72 @@ ```sb3 02A7: 0@ = create_icon_marker_and_sphere <ID> at 892.75 -425.75 13.875 ``` - - - - - - - - - - -
DescripciónIDGUIGXT
- +|Descripción|ID|GUI|GXT| +|-| +|small yellow square|0|![](%sa-r/icon0.gif)|LG_50| +|Friend|1|![](%sa-r/icon1.gif)|LG_54| +|Player position|2|![](%sa-r/icon2.gif)|LG_01| +|Arrow (Menu-card)|3|![](%sa-r/icon3.gif)|LG_64| +|North|4|![](%sa-r/icon4.gif)|\s| +|Airport|5|![](%sa-r/icon5.gif)|LG_02| +|Ammu Nation|6|![](%sa-r/icon6.gif)|LG_03| +|Barber|7|![](%sa-r/icon7.gif)|LG_04| +|Big Smoke|8|![](%sa-r/icon8.gif)|LG_05| +|Docks|9|![](%sa-r/icon9.gif)|LG_06| +|Burger Shot|10|![](%sa-r/icon10.gif)|LG_07| +|Bulldozer|11|![](%sa-r/icon11.gif)|LG_66| +|Catalina|12|![](%sa-r/icon12.gif)|LG_08| +|Cesar Viapando|13|![](%sa-r/icon13.gif)|LG_10| +|Chicken|14|![](%sa-r/icon14.gif)|LG_11| +|Carl Johnson|15|![](%sa-r/icon15.gif)|LG_12| +|Crash|16|![](%sa-r/icon16.gif)|LG_13| +|Dinner|17|![](%sa-r/icon17.gif)|LG_67| +|Emmet|18|![](%sa-r/icon18.gif)|LG_15| +|Enemy attack|19|![](%sa-r/icon19.gif)|LG_16| +|Fire|20|![](%sa-r/icon20.gif)|LG_17| +|Girl Friend|21|![](%sa-r/icon21.gif)|LG_18| +|Hospital|22|![](%sa-r/icon22.gif)|LG_19| +|Loco Syndicate|23|![](%sa-r/icon23.gif)|LG_20| +|Maddog|24|![](%sa-r/icon24.gif)|LG_21| +|Mafia|25|![](%sa-r/icon25.gif)|LG_22| +|MC Strap|26|![](%sa-r/icon26.gif)|LG_23| +|Tuning Shop|27|![](%sa-r/icon27.gif)|LG_24| +|OG Loc|28|![](%sa-r/icon28.gif)|LG_25| +|Pizza|29|![](%sa-r/icon29.gif)|LG_26| +|Police|30|![](%sa-r/icon30.gif)|LG_27| +|Asset green|31|![](%sa-r/icon31.gif)|LG_28| +|Asset red|32|![](%sa-r/icon32.gif)|LG_29| +|Race|33|![](%sa-r/icon33.gif)|LG_30| +|Ryder|34|![](%sa-r/icon34.gif)|LG_31| +|Savepoint|35|![](%sa-r/icon35.gif)|LG_32| +|School|36|![](%sa-r/icon36.gif)|LG_33| +|Unknown|37|![](%sa-r/icon37.gif)|LG_63| +|Sweet|38|![](%sa-r/icon38.gif)|LG_35| +|Tattoo|39|![](%sa-r/icon39.gif)|LG_36| +|The Truth|40|![](%sa-r/icon40.gif)|LG_37| +|Player target|41|![](%sa-r/icon41.gif)|LG_38| +|Toreno Ranch|42|![](%sa-r/icon42.gif)|LG_39| +|Triads|43|![](%sa-r/icon43.gif)|LG_40| +|Triads Casino|44|![](%sa-r/icon44.gif)|LG_41| +|Clothes|45|![](%sa-r/icon45.gif)|LG_42| +|Woozie|46|![](%sa-r/icon46.gif)|LG_43| +|Zero|47|![](%sa-r/icon47.gif)|LG_44| +|Disco|48|![](%sa-r/icon48.gif)|LG_45| +|Bar|49|![](%sa-r/icon49.gif)|LG_46| +|Restaurant|50|![](%sa-r/icon50.gif)|LG_47| +|Truck|51|![](%sa-r/icon51.gif)|LG_48| +|Robbery|52|![](%sa-r/icon52.gif)|LG_51| +|Race|53|![](%sa-r/icon53.gif)|LG_52| +|Gym|54|![](%sa-r/icon54.gif)|LG_53| +|Car|55|![](%sa-r/icon55.gif)|LG_57| +|Light|56|![](%sa-r/icon56.gif)|\s| +|Nearest air strip|57|![](%sa-r/icon57.gif)|LG_65| +|Varrios Los Aztecas Gang|58|![](%sa-r/icon58.gif)|LG_58| +|Ballas Gang|59|![](%sa-r/icon59.gif)|LG_59| +|Los Santos Vagos Gang|60|![](%sa-r/icon60.gif)|LG_60| +|San Fierro Rifa Gang|61|![](%sa-r/icon61.gif)|LG_61| +|Grove Gang|62|![](%sa-r/icon62.gif)|LG_62| +|Pay'n Spray|63|![](%sa-r/icon63.gif)|LG_34| - \ No newline at end of file + \ No newline at end of file diff --git a/es/scm-documentation/sa/special-actors.html b/es/scm-documentation/sa/special-actors.html index d1493d6..7e3cce6 100644 --- a/es/scm-documentation/sa/special-actors.html +++ b/es/scm-documentation/sa/special-actors.html @@ -8,203 +8,54 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDDescripción
ANDREAndre
BBTHINBig Bear (thin)
BBBig Bear (fat)
CATCatalina
CESARCesar
COPGRL1The naked girl 1
COPGRL2Girl 1
CLAUDEClaude from GTA3
CROGRL1The naked girl 2
CROGRL2Girl 2
DWAYNEDwayne
EMMETEmmet
FORELLIForelli
JANITORmechanic
JETHROJethro
JIZZYJizzy
HERNHernandes
GANGRL1The naked girl 3
GANGRL2Girl 3
GUNGRL1The naked girl 4
GUNGRL2Girl 4
KENDLKendel
MACCERMaccer
MADDOGGMad Dog
MECGRL1The naked girl 5
MECGRL2Girl 5
NURGRL1The naked nurse
NURGRL2nurse
NURGRL2nurse
OGLOCOG Loc
PAULKent Paul
PULASKIPulaski
ROSEKen Rosenberg
RYDER1Ryder (1)
RYDER2Ryder (2)
RYDER3Ryder (3)
SINDACOSindaco
SMOKEBig Smoke
SMOKEVwith body armour
SUZIESuzie
SWEETSweet
TBONET Bone
TENPENTenpeni
TORINOTorino
TRUTHrighteous man
WUZIMUWu Zi
ZEROZero
+|ID|Descripción| +|-| +|ANDRE|Andre| +|BBTHIN|Big Bear (thin)| +|BB|Big Bear (fat)| +|CAT|Catalina| +|CESAR|Cesar| +|COPGRL1|The naked girl 1| +|COPGRL2|Girl 1| +|CLAUDE|Claude from GTA3| +|CROGRL1|The naked girl 2| +|CROGRL2|Girl 2| +|DWAYNE|Dwayne| +|EMMET|Emmet| +|FORELLI|Forelli| +|JANITOR|mechanic| +|JETHRO|Jethro| +|JIZZY|Jizzy| +|HERN|Hernandes| +|GANGRL1|The naked girl 3| +|GANGRL2|Girl 3| +|GUNGRL1|The naked girl 4| +|GUNGRL2|Girl 4| +|KENDL|Kendel| +|MACCER|Maccer| +|MADDOGG|Mad Dog| +|MECGRL1|The naked girl 5| +|MECGRL2|Girl 5| +|NURGRL1|The naked nurse| +|NURGRL2|nurse| +|NURGRL2|nurse| +|OGLOC|OG Loc| +|PAUL|Kent Paul| +|PULASKI|Pulaski| +|ROSE|Ken Rosenberg| +|RYDER1|Ryder (1)| +|RYDER2|Ryder (2)| +|RYDER3|Ryder (3)| +|SINDACO|Sindaco| +|SMOKE|Big Smoke| +|SMOKEV|with body armour| +|SUZIE|Suzie| +|SWEET|Sweet| +|TBONE|T Bone| +|TENPEN|Tenpeni| +|TORINO|Torino| +|TRUTH|righteous man| +|WUZIMU|Wu Zi| +|ZERO|Zero| \ No newline at end of file diff --git a/es/scm-documentation/sa/stats.html b/es/scm-documentation/sa/stats.html index a6e9906..3b1ec05 100644 --- a/es/scm-documentation/sa/stats.html +++ b/es/scm-documentation/sa/stats.html @@ -11,1239 +11,313 @@ Del `0` al `81` - valores decimales; `82+` - valores enteros. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDDescripción
0Progress made
1Total progress
2Furthest Hoop
3Distance travelled on foot
4Distance travelled by car
5Distance travelled by motorbike
6Distance travelled by boat
7Distance travelled by golf cart
8Distance travelled by helicopter
9Distance travelled by plane
10Longest Wheelie distance
11Longest Stoppie distance
12Longest 2 wheels distance
13Weapon Budget
14Fashion Budget
15Property Budget
16Auto Repair and Painting Budget
17Longest Wheelie time
18Longest Stoppie time
19Longest 2 wheels time
20Food Budget
21Fat
22Stamina
23Muscle
24Max Health
25Sex appeal
26Distance travelled by swimming
27Distance travelled by bicycle
28Distance travelled on treadmill
29Distance travelled on exercise bike
30Tattoo budget
31Hairdressing budget
32Girlfriend budget
33Prostitute budget
34Furniture budget
35Money spent gambling
36Money made from pimping
37Money won gambling
38Biggest gambling win
39Biggest gambling loss
40Largest burglary swag
41Money made from burglary
42Money spent building property
43unused
44Longest treadmill time
45Longest exercise bike time
46Heaviest weight on bench press
47Heaviest weight on dumbbells
48Best time in 8-Track
49BMX best time
50Lightest weight
51Longest chase time with 5 or more stars
52Last chase time with 5 or more stars
53Wage bill
54Strip club budget
55Car modification budget
56Time spent shopping
57Time spent gambling
58Time spent on longest mission
59Time spent on quickest mission
60Average mission time
61Drugs budget
62Total shopping budget
63Time spent underwater
64Total respect
65Girlfriend respect
66Clothes respect
67Fitness respect
68Respect
69Pistol Skill
70Silenced Pistol Skill
71Desert Eagle Skill
72Shotgun Skill
73Sawn-Off Shotgun Skill
74Combat Shotgun Skill
75Machine Pistol Skill
76SMG Skill
77AK-47 Skill
78M4 Skill
79Rifle Skill
80Appearance
81Gambling
82119 unused
120People wasted by others
121People you've wasted
122Road Vehicles destroyed
123Boats destroyed
124Planes & Helicopters destroyed
125Cost of property damaged
126Bullets fired
127Kgs of explosives used
128Bullets that hit
129Tires popped with gunfire
130Number of headshots
131Total number of wanted stars attained
132Total number of wanted stars evaded
133Times busted
134Days passed in game
135Number of hospital visits
136Safehouse visits
137Times cheated
138Vehicle Resprays
139Maximum INSANE Jump distance
140Maximum INSANE Jump height
141Maximum INSANE Jump flips
142Maximum INSANE Jump rotation
143Best INSANE stunt awarded
144Unique Jumps found
145Unique Jumps done
146Mission attempts
147Missions passed
148Total number of missions in game
149Cash made in a Taxi
150Passengers dropped off
151People saved in an Ambulance
152Criminals killed on Vigilante Mission
153Total fires extinguished
154Packages Delivered
155Assassinations
156Last dance score
157Highest Vigilante Mission level
158Highest Paramedic Mission level
159Highest Firefighter Mission level
160Driving skill
161Number of Truck missions passed
162Money made in Truck
163Recruited gang members killed
164Armor
165Energy
166Photographs Taken
167Rampages attempted
168Rampages passed
169Flight time
170Times drowned
171Number of girls pimped
172Best position in 8-Track
173Time on jetpack
174Shooting range levels passed
175Most cars parked on 'Valet Parking'
176Kills since last checkpoint
177Total legitimate kills
178Number of 'Bloodring' kills
179Total time in bloodring
180No more hurricanes Flag
181City unlocked
182Number of Police bribes
183Number of cars stolen
184Current number of girlfriends
185Number of disastrous dates
186Number of girls dated
187Number of times scored with a girl
188Number of successful dates
189Number of girls dumped
190Number of prostitutes visited
191Number of houses burgled
192Number of safes cracked
193Burgular status
194Number of stolen items sold
195Number of eight balls in pool
196Total number of wins playing pool
197Total number of losses playing pool
198Times visited the gym
199Body type
200Number of meals eaten
201Money made in Quarry
202Time taken to Complete Quarry
203Number of furniture purchased
204Favorite console game
205Highest civilian peds killed on Rampage
206Highest police peds killed on Rampage
207Highest civilian vehicles destroyed on Rampage
208Highest police vehicles destroyed on Rampage
209Highest number of tanks destroyed on Rampage
210Pimping level
211Kickstart best score
212Best lap time in 8-Track
213Number of vehicles exported
214Number of vehicles imported
215Highest basketball score
216Fires started
217Amount of drugs sold
218Amount of drugs bought
219Best lap time in dirt track
220Best time in dirt track
221Best position in dirt track
222NRG-500 best time
223Flying skill
224Respect Mission
225Lung capacity
226Game gore rating
227Game sex rating
228Respect Mission Total
229Bike skill
230Cycling skill
231Snapshots taken
232Total snapshots
233Luck
234Territories taken over
235Territories lost
236Territories held
237Highest number of territories held
238Gang members recruited
239Enemy gang members killed
240Friendly gang members killed
241Horseshoes collected
242Total horseshoes
243Oysters collected
244Total oysters
245Calories
2462 Player Rampage best time
2472 Player Car Rampage best time
2482 Player On Foot Rampage best time
2492 Player Chopper Rampage best time
2502 Player Bike Rampage best time
251'Keepie Uppy' best time
252Progress with Denise
253Progress with Michelle
254Progress with Helena
255Progress with Barbara
256Progress with Katie
257Progress with Millie
258Best position in Lowrider Race
259Best time in Lowrider Race
260Best position in Little Loop
261Best time in Little Loop
262Best position in Backroad Wanderer
263Best time in Backroad Wanderer
264Best position in City Circuit
265Best time in City Circuit
266Best position in Vinewood
267Best time in Vinewood
268Best position in Freeway
269Best time in Freeway
270Best position in Into the Country
271Best time in Into the Country
272Best position in Badlands A
273Best time in Badlands A
274Best position in Badlands B
275Best time in Badlands B
276Best position in Dirtbike Danger
277Best time in Dirtbike Danger
278Best position in Bandito County
279Best time in Bandito County
280Best position in Go-Go-Kart
281Best time in Go-Go-Kart
282Best position in San Fierro Fastlane
283Best time in San Fierro Fastlane
284Best position in San Fierro Hills
285Best time in San Fierro Hills
286Best position in Country Endurance
287Best time in Country Endurance
288Best position in SF to LV
289Best time in SF to LV
290Best position in Dam Rider
291Best time in Dam Rider
292Best position in Desert Tricks
293Best time in Desert Tricks
294Best position in LV Ringroad
295Best time in LV Ringroad
296Best time in World War Aces
297Best time in Barnstorming
298Best time in Military Service
299Best time in Chopper Checkpoint
300Best time in Whirly Bird Waypoint
301Best time in Heli Hell
302Drive-thru mission accomplished
303Management Issues mission accomplished
304555 WE TIP mission accomplished
305Yay Ka-Boom-Boom mission accomplished
306Fish in a Barrel mission accomplished
307Breaking the Bank at Caligula's mission accomplished
308A Home In The Hills mission accomplished
309maybe set riot mode
310Ryder's mission Robbing Uncle Sam accomplished
311Mike Toreno mission accomplished
312Architectural Espionage mission accomplished
313Jizzy mission accomplished
314Reuniting the Families mission accomplished
315Small Town Bank mission accomplished
316Photo Opportunity mission accomplished
317Don Peyote mission accomplished
318Local Liquor Store mission accomplished
319Badlands mission accomplished
320Playing time
321Hidden Packages found
322Tags sprayed
323Least favorite gang
324Gang members wasted
325Criminals wasted
326Most Favorite Radio Station
327Least Favorite Radio Station
328Current weapon skill
329Weapon skill levels
330Pilot ranking
331Strongest Gang
3322nd strongest gang
3333rd strongest gang
334Money lost gambling
335Riot Mission accomplished
336Gang strength
337Territory under control
338Are you going to San Fierro? mission accomplished
339High Noon mission accomplished
340The Green Sabre mission accomplished
341maybe Catalina meeting
342maybe Wu Zi meeting
+|ID|Descripción| +|-| +|0|Progress made| +|1|Total progress| +|2|Furthest Hoop| +|3|Distance travelled on foot| +|4|Distance travelled by car| +|5|Distance travelled by motorbike| +|6|Distance travelled by boat| +|7|Distance travelled by golf cart| +|8|Distance travelled by helicopter| +|9|Distance travelled by plane| +|10|Longest Wheelie distance| +|11|Longest Stoppie distance| +|12|Longest 2 wheels distance| +|13|Weapon Budget| +|14|Fashion Budget| +|15|Property Budget| +|16|Auto Repair and Painting Budget| +|17|Longest Wheelie time| +|18|Longest Stoppie time| +|19|Longest 2 wheels time| +|20|Food Budget| +|21|Fat| +|22|Stamina| +|23|Muscle| +|24|Max Health| +|25|Sex appeal| +|26|Distance travelled by swimming| +|27|Distance travelled by bicycle| +|28|Distance travelled on treadmill| +|29|Distance travelled on exercise bike| +|30|Tattoo budget| +|31|Hairdressing budget| +|32|Girlfriend budget| +|33|Prostitute budget| +|34|Furniture budget| +|35|Money spent gambling| +|36|Money made from pimping| +|37|Money won gambling| +|38|Biggest gambling win| +|39|Biggest gambling loss| +|40|Largest burglary swag| +|41|Money made from burglary| +|42|Money spent building property| +|43|unused| +|44|Longest treadmill time| +|45|Longest exercise bike time| +|46|Heaviest weight on bench press| +|47|Heaviest weight on dumbbells| +|48|Best time in 8-Track| +|49|BMX best time| +|50|Lightest weight| +|51|Longest chase time with 5 or more stars| +|52|Last chase time with 5 or more stars| +|53|Wage bill| +|54|Strip club budget| +|55|Car modification budget| +|56|Time spent shopping| +|57|Time spent gambling| +|58|Time spent on longest mission| +|59|Time spent on quickest mission| +|60|Average mission time| +|61|Drugs budget| +|62|Total shopping budget| +|63|Time spent underwater| +|64|Total respect| +|65|Girlfriend respect| +|66|Clothes respect| +|67|Fitness respect| +|68|Respect| +|69|Pistol Skill| +|70|Silenced Pistol Skill| +|71|Desert Eagle Skill| +|72|Shotgun Skill| +|73|Sawn-Off Shotgun Skill| +|74|Combat Shotgun Skill| +|75|Machine Pistol Skill| +|76|SMG Skill| +|77|AK-47 Skill| +|78|M4 Skill| +|79|Rifle Skill| +|80|Appearance| +|81|Gambling| +|82|119 unused| +|120|People wasted by others| +|121|People you've wasted| +|122|Road Vehicles destroyed| +|123|Boats destroyed| +|124|Planes & Helicopters destroyed| +|125|Cost of property damaged| +|126|Bullets fired| +|127|Kgs of explosives used| +|128|Bullets that hit| +|129|Tires popped with gunfire| +|130|Number of headshots| +|131|Total number of wanted stars attained| +|132|Total number of wanted stars evaded| +|133|Times busted| +|134|Days passed in game| +|135|Number of hospital visits| +|136|Safehouse visits| +|137|Times cheated| +|138|Vehicle Resprays| +|139|Maximum INSANE Jump distance| +|140|Maximum INSANE Jump height| +|141|Maximum INSANE Jump flips| +|142|Maximum INSANE Jump rotation| +|143|Best INSANE stunt awarded| +|144|Unique Jumps found| +|145|Unique Jumps done| +|146|Mission attempts| +|147|Missions passed| +|148|Total number of missions in game| +|149|Cash made in a Taxi| +|150|Passengers dropped off| +|151|People saved in an Ambulance| +|152|Criminals killed on Vigilante Mission| +|153|Total fires extinguished| +|154|Packages Delivered| +|155|Assassinations| +|156|Last dance score| +|157|Highest Vigilante Mission level| +|158|Highest Paramedic Mission level| +|159|Highest Firefighter Mission level| +|160|Driving skill| +|161|Number of Truck missions passed| +|162|Money made in Truck| +|163|Recruited gang members killed| +|164|Armor| +|165|Energy| +|166|Photographs Taken| +|167|Rampages attempted| +|168|Rampages passed| +|169|Flight time| +|170|Times drowned| +|171|Number of girls pimped| +|172|Best position in 8-Track| +|173|Time on jetpack| +|174|Shooting range levels passed| +|175|Most cars parked on 'Valet Parking'| +|176|Kills since last checkpoint| +|177|Total legitimate kills| +|178|Number of 'Bloodring' kills| +|179|Total time in bloodring| +|180|No more hurricanes Flag| +|181|City unlocked| +|182|Number of Police bribes| +|183|Number of cars stolen| +|184|Current number of girlfriends| +|185|Number of disastrous dates| +|186|Number of girls dated| +|187|Number of times scored with a girl| +|188|Number of successful dates| +|189|Number of girls dumped| +|190|Number of prostitutes visited| +|191|Number of houses burgled| +|192|Number of safes cracked| +|193|Burgular status| +|194|Number of stolen items sold| +|195|Number of eight balls in pool| +|196|Total number of wins playing pool| +|197|Total number of losses playing pool| +|198|Times visited the gym| +|199|Body type| +|200|Number of meals eaten| +|201|Money made in Quarry| +|202|Time taken to Complete Quarry| +|203|Number of furniture purchased| +|204|Favorite console game| +|205|Highest civilian peds killed on Rampage| +|206|Highest police peds killed on Rampage| +|207|Highest civilian vehicles destroyed on Rampage| +|208|Highest police vehicles destroyed on Rampage| +|209|Highest number of tanks destroyed on Rampage| +|210|Pimping level| +|211|Kickstart best score| +|212|Best lap time in 8-Track| +|213|Number of vehicles exported| +|214|Number of vehicles imported| +|215|Highest basketball score| +|216|Fires started| +|217|Amount of drugs sold| +|218|Amount of drugs bought| +|219|Best lap time in dirt track| +|220|Best time in dirt track| +|221|Best position in dirt track| +|222|NRG-500 best time| +|223|Flying skill| +|224|Respect Mission| +|225|Lung capacity| +|226|Game gore rating| +|227|Game sex rating| +|228|Respect Mission Total| +|229|Bike skill| +|230|Cycling skill| +|231|Snapshots taken| +|232|Total snapshots| +|233|Luck| +|234|Territories taken over| +|235|Territories lost| +|236|Territories held| +|237|Highest number of territories held| +|238|Gang members recruited| +|239|Enemy gang members killed| +|240|Friendly gang members killed| +|241|Horseshoes collected| +|242|Total horseshoes| +|243|Oysters collected| +|244|Total oysters| +|245|Calories| +|246|2 Player Rampage best time| +|247|2 Player Car Rampage best time| +|248|2 Player On Foot Rampage best time| +|249|2 Player Chopper Rampage best time| +|250|2 Player Bike Rampage best time| +|251|'Keepie Uppy' best time| +|252|Progress with Denise| +|253|Progress with Michelle| +|254|Progress with Helena| +|255|Progress with Barbara| +|256|Progress with Katie| +|257|Progress with Millie| +|258|Best position in Lowrider Race| +|259|Best time in Lowrider Race| +|260|Best position in Little Loop| +|261|Best time in Little Loop| +|262|Best position in Backroad Wanderer| +|263|Best time in Backroad Wanderer| +|264|Best position in City Circuit| +|265|Best time in City Circuit| +|266|Best position in Vinewood| +|267|Best time in Vinewood| +|268|Best position in Freeway| +|269|Best time in Freeway| +|270|Best position in Into the Country| +|271|Best time in Into the Country| +|272|Best position in Badlands A| +|273|Best time in Badlands A| +|274|Best position in Badlands B| +|275|Best time in Badlands B| +|276|Best position in Dirtbike Danger| +|277|Best time in Dirtbike Danger| +|278|Best position in Bandito County| +|279|Best time in Bandito County| +|280|Best position in Go-Go-Kart| +|281|Best time in Go-Go-Kart| +|282|Best position in San Fierro Fastlane| +|283|Best time in San Fierro Fastlane| +|284|Best position in San Fierro Hills| +|285|Best time in San Fierro Hills| +|286|Best position in Country Endurance| +|287|Best time in Country Endurance| +|288|Best position in SF to LV| +|289|Best time in SF to LV| +|290|Best position in Dam Rider| +|291|Best time in Dam Rider| +|292|Best position in Desert Tricks| +|293|Best time in Desert Tricks| +|294|Best position in LV Ringroad| +|295|Best time in LV Ringroad| +|296|Best time in World War Aces| +|297|Best time in Barnstorming| +|298|Best time in Military Service| +|299|Best time in Chopper Checkpoint| +|300|Best time in Whirly Bird Waypoint| +|301|Best time in Heli Hell| +|302|Drive-thru mission accomplished| +|303|Management Issues mission accomplished| +|304|555 WE TIP mission accomplished| +|305|Yay Ka-Boom-Boom mission accomplished| +|306|Fish in a Barrel mission accomplished| +|307|Breaking the Bank at Caligula's mission accomplished| +|308|A Home In The Hills mission accomplished| +|309|maybe set riot mode| +|310|Ryder's mission Robbing Uncle Sam accomplished| +|311|Mike Toreno mission accomplished| +|312|Architectural Espionage mission accomplished| +|313|Jizzy mission accomplished| +|314|Reuniting the Families mission accomplished| +|315|Small Town Bank mission accomplished| +|316|Photo Opportunity mission accomplished| +|317|Don Peyote mission accomplished| +|318|Local Liquor Store mission accomplished| +|319|Badlands mission accomplished| +|320|Playing time| +|321|Hidden Packages found| +|322|Tags sprayed| +|323|Least favorite gang| +|324|Gang members wasted| +|325|Criminals wasted| +|326|Most Favorite Radio Station| +|327|Least Favorite Radio Station| +|328|Current weapon skill| +|329|Weapon skill levels| +|330|Pilot ranking| +|331|Strongest Gang| +|332|2nd strongest gang| +|333|3rd strongest gang| +|334|Money lost gambling| +|335|Riot Mission accomplished| +|336|Gang strength| +|337|Territory under control| +|338|Are you going to San Fierro? mission accomplished| +|339|High Noon mission accomplished| +|340|The Green Sabre mission accomplished| +|341|maybe Catalina meeting| +|342|maybe Wu Zi meeting| \ No newline at end of file diff --git a/es/scm-documentation/sa/tattoos.html b/es/scm-documentation/sa/tattoos.html index 9ef0845..c3e0a09 100644 --- a/es/scm-documentation/sa/tattoos.html +++ b/es/scm-documentation/sa/tattoos.html @@ -15,466 +15,96 @@ ## Lower left arm - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TexturaModelo(Parte del Cuerpo)[player-body-parts.md]NombreImagen
4weed4WEED4Weed![](../../../img/sa/tatoo/4weed.png)
4rip4RIP4Grave![](../../../img/sa/tatoo/4rip.png)
4spider4SPIDER4Spider![](../../../img/sa/tatoo/4spider.png)
-

Upper left arm

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TexturaModelo(Parte del Cuerpo)[player-body-parts.md]NombreImagen
5gun5GUN5Gun![](../../../img/sa/tatoo/5gun.png)
5cross5CROSS5Cross![](../../../img/sa/tatoo/5cross.png)
5cross25CROSS25Rose![](../../../img/sa/tatoo/5cross2.png)
5cross35CROSS35Clown![](../../../img/sa/tatoo/5cross3.png)
-

Upper right arm

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TexturaModelo(Parte del Cuerpo)[player-body-parts.md]NombreImagen
6aztec6AZTEC6Aztec![](../../../img/sa/tatoo/6aztec.png)
6crown6CROWN6Web![](../../../img/sa/tatoo/6crown.png)
6clown6CLOWN6Clown![](../../../img/sa/tatoo/6clown.png)
6africa6AFRICA6Africa![](../../../img/sa/tatoo/6africa.png)
-

Lower right arm

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TexturaModelo(Parte del Cuerpo)[player-body-parts.md]NombreImagen
7cross7CROSS7Cross![](../../../img/sa/tatoo/7cross.png)
7cross27CROSS27Cross![](../../../img/sa/tatoo/7cross2.png)
7cross37CROSS37Cross![](../../../img/sa/tatoo/7cross3.png)
7mary7MARY7Mary![](../../../img/sa/tatoo/7mary.png)
-

Back top

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TexturaModelo(Parte del Cuerpo)[player-body-parts.md]NombreImagen
8sa8SA8Grove St .![](../../../img/sa/tatoo/8sa.png)
8sa28SA28San Andreas![](../../../img/sa/tatoo/8sa2.png)
8sa38SA38San Fierro![](../../../img/sa/tatoo/8sa3.png)
8westside8WESTSD8Westside![](../../../img/sa/tatoo/8westsd.png)
8santos8SANTOS8Los Santos![](../../../img/sa/tatoo/8santos.png)
8poker8POKER8Card![](../../../img/sa/tatoo/8poker.png)
8gun8GUN8Gun![](../../../img/sa/tatoo/8gun.png)
-

Left chest

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TexturaModelo(Parte del Cuerpo)[player-body-parts.md]NombreImagen
9crown9CROWN9Crown![](../../../img/sa/tatoo/9crown.png)
9gun9GUN9Gun![](../../../img/sa/tatoo/9gun.png)
9gun29GUN29Gun![](../../../img/sa/tatoo/9gun2.png)
9homeboy9HOMBY9Homeboy![](../../../img/sa/tatoo/9homby.png)
9bullet9BULLT9Bullet![](../../../img/sa/tatoo/9bullt.png)
9rasta9RASTA9Rasta![](../../../img/sa/tatoo/9rasta.png)
-

Right chest

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TexturaModelo(Parte del Cuerpo)[player-body-parts.md]NombreImagen
10ls10LS10Los Santos![](../../../img/sa/tatoo/10ls.png)
10ls210LS210Los Santos![](../../../img/sa/tatoo/10ls2.png)
10ls310LS310Los Santos![](../../../img/sa/tatoo/10ls3.png)
10ls410LS410Los Santos![](../../../img/sa/tatoo/10ls4.png)
10ls510LS510Los Santos![](../../../img/sa/tatoo/10ls5.png)
10og10OG10O.G.![](../../../img/sa/tatoo/10og.png)
10weed10WEED10Grove![](../../../img/sa/tatoo/10weed.png)
-

Stomach

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TexturaModelo(Parte del Cuerpo)[player-body-parts.md]NombreImagen
11grove11GROVE11Grove![](../../../img/sa/tatoo/11grove.png)
11grove211GROV211Grove![](../../../img/sa/tatoo/11grov2.png)
11grove311GROV311Grove![](../../../img/sa/tatoo/11grov3.png)
11dice11DICE11Dice![](../../../img/sa/tatoo/11dice.png)
11dice211DICE211Dice![](../../../img/sa/tatoo/11dice2.png)
11jail11JAIL11Jail![](../../../img/sa/tatoo/11jail.png)
11godsgift11GGIFT11God's Gift![](../../../img/sa/tatoo/11ggift.png)
-

Lower back

- - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TexturaModelo(Parte del Cuerpo)[player-body-parts.md]NombreImagen
12angels12ANGEL12Angel![](../../../img/sa/tatoo/12angel.png)
12mayabird12MAYBR12Mayan Bird![](../../../img/sa/tatoo/12maybr.png)
12dagger12DAGER12Dagger![](../../../img/sa/tatoo/12dager.png)
12bandit12BNDIT12Masks![](../../../img/sa/tatoo/12bndit.png)
12cross712CROSS12Cross![](../../../img/sa/tatoo/12cross.png)
12mayaface12MYFAC12Mayan Face![](../../../img/sa/tatoo/12myfac.png)
+|Textura|Modelo|[Parte del Cuerpo](player-body-parts.md)|Nombre|Imagen| +|-| +|4weed|4WEED|4|Weed|![](%sa-t/4weed.png)| +|4rip|4RIP|4|Grave|![](%sa-t/4rip.png)| +|4spider|4SPIDER|4|Spider|![](%sa-t/4spider.png)| + +## Upper left arm + +|Textura|Modelo|[Parte del Cuerpo](player-body-parts.md)|Nombre|Imagen| +|-| +|5gun|5GUN|5|Gun|![](%sa-t/5gun.png)| +|5cross|5CROSS|5|Cross|![](%sa-t/5cross.png)| +|5cross2|5CROSS2|5|Rose|![](%sa-t/5cross2.png)| +|5cross3|5CROSS3|5|Clown|![](%sa-t/5cross3.png)| + +## Upper right arm + +|Textura|Modelo|[Parte del Cuerpo](player-body-parts.md)|Nombre|Imagen| +|-| +|6aztec|6AZTEC|6|Aztec|![](%sa-t/6aztec.png)| +|6crown|6CROWN|6|Web|![](%sa-t/6crown.png)| +|6clown|6CLOWN|6|Clown|![](%sa-t/6clown.png)| +|6africa|6AFRICA|6|Africa|![](%sa-t/6africa.png)| + +## Lower right arm + +|Textura|Modelo|[Parte del Cuerpo](player-body-parts.md)|Nombre|Imagen| +|-| +|7cross|7CROSS|7|Cross|![](%sa-t/7cross.png)| +|7cross2|7CROSS2|7|Cross|![](%sa-t/7cross2.png)| +|7cross3|7CROSS3|7|Cross|![](%sa-t/7cross3.png)| +|7mary|7MARY|7|Mary|![](%sa-t/7mary.png)| + +## Back top + +|Textura|Modelo|[Parte del Cuerpo](player-body-parts.md)|Nombre|Imagen| +|-| +|8sa|8SA|8|Grove St .|![](%sa-t/8sa.png)| +|8sa2|8SA2|8|San Andreas|![](%sa-t/8sa2.png)| +|8sa3|8SA3|8|San Fierro|![](%sa-t/8sa3.png)| +|8westside|8WESTSD|8|Westside|![](%sa-t/8westsd.png)| +|8santos|8SANTOS|8|Los Santos|![](%sa-t/8santos.png)| +|8poker|8POKER|8|Card|![](%sa-t/8poker.png)| +|8gun|8GUN|8|Gun|![](%sa-t/8gun.png)| + +## Left chest + +|Textura|Modelo|[Parte del Cuerpo](player-body-parts.md)|Nombre|Imagen| +|-| +|9crown|9CROWN|9|Crown|![](%sa-t/9crown.png)| +|9gun|9GUN|9|Gun|![](%sa-t/9gun.png)| +|9gun2|9GUN2|9|Gun|![](%sa-t/9gun2.png)| +|9homeboy|9HOMBY|9|Homeboy|![](%sa-t/9homby.png)| +|9bullet|9BULLT|9|Bullet|![](%sa-t/9bullt.png)| +|9rasta|9RASTA|9|Rasta|![](%sa-t/9rasta.png)| + +## Right chest + +|Textura|Modelo|[Parte del Cuerpo](player-body-parts.md)|Nombre|Imagen| +|-| +|10ls|10LS|10|Los Santos|![](%sa-t/10ls.png)| +|10ls2|10LS2|10|Los Santos|![](%sa-t/10ls2.png)| +|10ls3|10LS3|10|Los Santos|![](%sa-t/10ls3.png)| +|10ls4|10LS4|10|Los Santos|![](%sa-t/10ls4.png)| +|10ls5|10LS5|10|Los Santos|![](%sa-t/10ls5.png)| +|10og|10OG|10|O.G.|![](%sa-t/10og.png)| +|10weed|10WEED|10|Grove|![](%sa-t/10weed.png)| + +## Stomach + +|Textura|Modelo|[Parte del Cuerpo](player-body-parts.md)|Nombre|Imagen| +|-| +|11grove|11GROVE|11|Grove|![](%sa-t/11grove.png)| +|11grove2|11GROV2|11|Grove|![](%sa-t/11grov2.png)| +|11grove3|11GROV3|11|Grove|![](%sa-t/11grov3.png)| +|11dice|11DICE|11|Dice|![](%sa-t/11dice.png)| +|11dice2|11DICE2|11|Dice|![](%sa-t/11dice2.png)| +|11jail|11JAIL|11|Jail|![](%sa-t/11jail.png)| +|11godsgift|11GGIFT|11|God's Gift|![](%sa-t/11ggift.png)| + +## Lower back + +|Textura|Modelo|[Parte del Cuerpo](player-body-parts.md)|Nombre|Imagen| +|-| +|12angels|12ANGEL|12|Angel|![](%sa-t/12angel.png)| +|12mayabird|12MAYBR|12|Mayan Bird|![](%sa-t/12maybr.png)| +|12dagger|12DAGER|12|Dagger|![](%sa-t/12dager.png)| +|12bandit|12BNDIT|12|Masks|![](%sa-t/12bndit.png)| +|12cross7|12CROSS|12|Cross|![](%sa-t/12cross.png)| +|12mayaface|12MYFAC|12|Mayan Face|![](%sa-t/12myfac.png)| + \ No newline at end of file diff --git a/es/scm-documentation/sa/trains.html b/es/scm-documentation/sa/trains.html index 14ddee0..9401520 100644 --- a/es/scm-documentation/sa/trains.html +++ b/es/scm-documentation/sa/trains.html @@ -13,118 +13,18 @@ 06D8: 1@ = create_train_at 2278.1771 -1144.8823 27.5108 type <tipo> direction 1 ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TipoMaquinaCarril 1Carril 2Carril 3Carril 4Carril 5
0:#FREIGHT#FREIFLAT#FREIFLAT#FREIFLAT#FREIFLAT
1,2,4,7,11:#STREAK#STREAKC#STREAKC
3:#FREIGHT#FREIFLAT#FREIFLAT#FREIFLAT
5:#STREAK#STREAKC#STREAKC#STREAKC
6:#FREIGHT#FREIFLAT#FREIFLAT
8:#TRAM#TRAM
9,14:#TRAM
10:#FREIGHT#FREIFLAT
12:#FREIGHT#FREIFLAT#FREIFLAT#FREIFLAT#FREIGHT
13:#FREIGHT#FREIFLAT#FREIFLAT#FREIFLAT#FREIFLAT#FREIFLAT
15:#STREAK
+|Tipo|Maquina|Carril 1|Carril 2|Carril 3|Carril 4|Carril 5| +|-| +|0:|#FREIGHT|#FREIFLAT|#FREIFLAT|#FREIFLAT|#FREIFLAT|\s| +|1,2,4,7,11:|#STREAK|#STREAKC|#STREAKC|\s|\s|\s| +|3:|#FREIGHT|#FREIFLAT|#FREIFLAT|#FREIFLAT|\s|\s| +|5:|#STREAK|#STREAKC|#STREAKC|#STREAKC|\s|\s| +|6:|#FREIGHT|#FREIFLAT|#FREIFLAT|\s|\s|\s| +|8:|#TRAM|#TRAM|\s|\s|\s|\s| +|9,14:|#TRAM|\s|\s|\s|\s|\s| +|10:|#FREIGHT|#FREIFLAT|\s|\s|\s|\s| +|12:|#FREIGHT|#FREIFLAT|#FREIFLAT|#FREIFLAT|#FREIGHT|\s| +|13:|#FREIGHT|#FREIFLAT|#FREIFLAT|#FREIFLAT|#FREIFLAT|#FREIFLAT| +|15:|#STREAK|\s|\s|\s|\s| \ No newline at end of file diff --git a/es/scm-documentation/sa/vehicle-variations.html b/es/scm-documentation/sa/vehicle-variations.html index 3ee201d..f8d4cb1 100644 --- a/es/scm-documentation/sa/vehicle-variations.html +++ b/es/scm-documentation/sa/vehicle-variations.html @@ -17,423 +17,61 @@ Variant `-1` is the default model with no extras. Variants `0` through `5` are possible extra variants which will fall back to the default if the model does not have that many extras, and variants greater than `5` will crash the game. - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Model nameModel IDVariant
#ambulan416**Numbers:**\ -**0:** 64\ -**1: **16\ -**2:** 47
#artict1435**Side Ads:**\ -**0: **Cok-o-Pops\ -**1:** Munky Juice\ -**2:** Hinterland\ -**3:** Zip\ -**4:** RS Haul\ -**5:** Ranch
#artict2450**Contents:**\ -**0:** Filled with gravel /** **coal / stone
#bagboxb607**Contents:**\ -**0, 1, 2: **Various distributions of loose baggage
#baggage485**Rear Cargo Items:**\ -**0: **Earmuffs\ -**1:** Small Case\ -**2:** Large Case
#barracks433**Bed Covering:**\ -**0: **Opaque Fabric\ -**1:** Camo Netting
#benson499**Side Ads:**\ -**0: **Shady Industries\ -**1:** LSD\ -**2:** The Uphill Gardener\ -**3:** Discount Furniture
#bf400581**Exhausts:**\ -**0: **Single Type 1\ -**1:** Single Type 2\ -**Fairings (with windshields):**\ -**3: **Dual Type3\ -**4:** Half-size\ -**5:** Full-size
#bfinject424**Body: **\ -**0: **Side Panels
#bloodra504**Numbers/ Roof Color:**\ -**0: **328/ White\ -**1:** 464/ Check\ -**2:** 172/ Check\ -**3:** 100/ White\ -**4:** 284/ White\ -**5:** 505/ Check
#bobcat422**Bed Items:**\ -**0: **Spare Tire\ -**1:** Sprunk Cans
#burrito482**Roof Items:**\ -**0: **Roof Lights + Spoiler
#caddy457**Rear Cargo Items (Driver Side): **\ -**0:** Golfbag1\ -**1:** Satchel1\ -**2:** Golfbag2\ -**Rear Cargo Items (Pass Side):**\ -**3:** Satchel2\ -**4:** Golfbag3\ -**5:** Golfbag4
#camper483**0: **Open Curtains & Second Bench Seat\ -**1:** Open Roof & Vent Closed & Curtains Bed in Back Peace Sign
#cheetah415**Side Mirrors:**\ -**0:** Single, Placed High\ -**1:** Dual, Placed Normally
#coach437**Name on Side:**\ -**0: **Big O Tours\ -**1:** Bikini Line
#coastg472**Various Items:**\ -**0: **Items all Over\ -**1:** Items Grouped in Back\ -**3:** Items all Over +2 Oars in Front
#fcr900521**Exhausts: **\ -**0:** Single Type1\ -**1:** Dual Type1\ -**2:** Dual Type2\ -**Fairings (with Windshields):**\ -**3: **Half-size\ -**4:** Full-size
#firetruk407**Numbers:**\ -**0: **64\ -**1:** 16\ -**2:** 47
#flatbed455**Cargo:**\ -**0: **Crates in Front\ -**1:** Crates in center under Tarp\ -**2:** Two Sets of crates (Front and Back)
#hotknife434**0:** Partial Engine Cover
#hotrina502**Numbers:**\ -**0: **96\ -**1: **67\ -**2: **73\ -**3: **52\ -**4: **45\ -**5: **14
#hotrinb503**Numbers:**\ -**0: **82\ -**1: **26\ -**2: **65\ -**3: **07\ -**4: **36\ -**5: **60
#kart571**Body Panels:**\ -**0: **Both Sides\ -**1: **Steering Column
#launch595**Roofs:**\ -**0: **Over passenger section\ -**1: **Over driver section
#marquis484**0: **Windshield over cabin Entrance
#mesa500**0: **Roof Over Back\ -**1: **Roll Bar in Back
#monstera556**0: **Roof Spoiler\ -**1: **Roof Lights\ -**2: **Roll Bar with Lights
#monsterb557**1: **Roof Lights
#mrwhoop423**Rear Sign:**\ -**0: **Cherry Popping Good\ -**1: **Slow Children Ahead
#mule414**Side Ads:**\ -**0: **Toy Corner\ -**1: **Binco\ -**2: **Semi\ -**3: **Shafted Appliances
#nrg500522**Exhausts: **\ -**0: **Single Pair1\ -**1: **Single Pair2\ -**2: **Dual Pair2\ - \ -**Fairings (with Windshields):**\ -**3: **Smooth\ -**4: **With Side Cutouts
#patriot470**Cargo Area:**\ -**0: **Low Cover\ -**1: **Roof/High Cover\ -**2: **Roll Bar
#peren404**0: **Roof Rack
#picador600**Items in Bed:**\ -**0: **Planks\ -**1: **Sprunk Cans
#pony413**0: **Sound System in Back
#reefer453**Items in Back:**\ -**0: **Boxes of Fish\ -**1: **Bench
#romero442**Coffins:**\ -**0: **Brown Style1\ -**1: **Black Style2\ -**2: **Brown Style3
#rumpo440**Side Ads:**\ -**0: **Cok-o-Pops\ -**1: **Harry Plums\ -**2: **Dick Goblin's\ -**3: **Final Build\ -**4: **Transfender\ -**5:** Wheel Arch Angels
#sadler543**Items in Bed:**\ -**0: **Two Propane Tanks & Crate\ -**1: **Two Barrels\ -**2: **Sprunk Cans\ -**3: **Open Crates
#sadlshit605**Items in Bed:**\ -**0: **Two Propane Tanks & Crate\ -**1: **Two Barrels\ -**2: **Sprunk Cans\ -**3: **Open Crates
#securica428**Side Logo:**\ -**0: **Chuff\ -**1: **Lock&Load
#slamvan535**Steering Wheel:**\ -**0: **Normal\ -**1: **Chain
#stallion439**Roof:**\ -**0: **Hardtop\ -**1: **Softtop (up)\ -**2: **Softtop (folded)
#supergt506**0: **Full Roof
#swatvan601**Number:**\ -**0: **1\ -**1: **9\ -**2: **6\ -**3: **7
#topfun459**0: **Boxes of Toys in Back
#tram449?
#trash408**0: **Some bits of trash sticking out of the back
#utility552**0, 1: **Cones, Barrel in back, Cone lying on passenger | driver side rail
#walton478**Items in Bed:**\ -**0: **Two Propane Tanks\ -**1: **Open Crates\ -**2: **Propane Tank and Barrel
#windsor555**0: **Roof
#yankee456**Side Ads:**\ -**0: **Big Gas\ -**1: **RS Haul\ -**2: **Star Balls\ -**3: **Flower Power
#zr350477**0: **Rear Spoiler
+|Model name|Model ID|Variant| +|-| +|#ambulan|416|**Numbers:**\n**0:** 64\n**1: **16\n**2:** 47| +|#artict1|435|**Side Ads:**\n**0: **Cok-o-Pops\n**1:** Munky Juice\n**2:** Hinterland\n**3:** Zip\n**4:** RS Haul\n**5:** Ranch| +|#artict2|450|**Contents:**\n**0:** Filled with gravel /** **coal / stone| +|#bagboxb|607|**Contents:**\n**0, 1, 2: **Various distributions of loose baggage| +|#baggage|485|**Rear Cargo Items:**\n**0: **Earmuffs\n**1:** Small Case\n**2:** Large Case| +|#barracks|433|**Bed Covering:**\n**0: **Opaque Fabric\n**1:** Camo Netting| +|#benson|499|**Side Ads:**\n**0: **Shady Industries\n**1:** LSD\n**2:** The Uphill Gardener\n**3:** Discount Furniture| +|#bf400|581|**Exhausts:**\n**0: **Single Type 1\n**1:** Single Type 2\n**Fairings (with windshields):**\n**3: **Dual Type3\n**4:** Half-size\n**5:** Full-size| +|#bfinject|424|**Body: **\n**0: **Side Panels| +|#bloodra|504|**Numbers/ Roof Color:**\n**0: **328/ White\n**1:** 464/ Check\n**2:** 172/ Check\n**3:** 100/ White\n**4:** 284/ White\n**5:** 505/ Check| +|#bobcat|422|**Bed Items:**\n**0: **Spare Tire\n**1:** Sprunk Cans| +|#burrito|482|**Roof Items:**\n**0: **Roof Lights + Spoiler| +|#caddy|457|**Rear Cargo Items (Driver Side): **\n**0:** Golfbag1\n**1:** Satchel1\n**2:** Golfbag2\n**Rear Cargo Items (Pass Side):**\n**3:** Satchel2\n**4:** Golfbag3\n**5:** Golfbag4| +|#camper|483|**0: **Open Curtains & Second Bench Seat\n**1:** Open Roof & Vent Closed & Curtains Bed in Back Peace Sign| +|#cheetah|415|**Side Mirrors:**\n**0:** Single, Placed High\n**1:** Dual, Placed Normally| +|#coach|437|**Name on Side:**\n**0: **Big O Tours\n**1:** Bikini Line| +|#coastg|472|**Various Items:**\n**0: **Items all Over\n**1:** Items Grouped in Back\n**3:** Items all Over +2 Oars in Front| +|#fcr900|521|**Exhausts: **\n**0:** Single Type1\n**1:** Dual Type1\n**2:** Dual Type2\n**Fairings (with Windshields):**\n**3: **Half-size\n**4:** Full-size| +|#firetruk|407|**Numbers:**\n**0: **64\n**1:** 16\n**2:** 47| +|#flatbed|455|**Cargo:**\n**0: **Crates in Front\n**1:** Crates in center under Tarp\n**2:** Two Sets of crates (Front and Back)| +|#hotknife|434|**0:** Partial Engine Cover| +|#hotrina|502|**Numbers:**\n**0: **96\n**1: **67\n**2: **73\n**3: **52\n**4: **45\n**5: **14| +|#hotrinb|503|**Numbers:**\n**0: **82\n**1: **26\n**2: **65\n**3: **07\n**4: **36\n**5: **60| +|#kart|571|**Body Panels:**\n**0: **Both Sides\n**1: **Steering Column| +|#launch|595|**Roofs:**\n**0: **Over passenger section\n**1: **Over driver section| +|#marquis|484|**0: **Windshield over cabin Entrance| +|#mesa|500|**0: **Roof Over Back\n**1: **Roll Bar in Back| +|#monstera|556|**0: **Roof Spoiler\n**1: **Roof Lights\n**2: **Roll Bar with Lights| +|#monsterb|557|**1: **Roof Lights| +|#mrwhoop|423|**Rear Sign:**\n**0: **Cherry Popping Good\n**1: **Slow Children Ahead| +|#mule|414|**Side Ads:**\n**0: **Toy Corner\n**1: **Binco\n**2: **Semi\n**3: **Shafted Appliances| +|#nrg500|522|**Exhausts: **\n**0: **Single Pair1\n**1: **Single Pair2\n**2: **Dual Pair2\n \n**Fairings (with Windshields):**\n**3: **Smooth\n**4: **With Side Cutouts| +|#patriot|470|**Cargo Area:**\n**0: **Low Cover\n**1: **Roof/High Cover\n**2: **Roll Bar| +|#peren|404|**0: **Roof Rack| +|#picador|600|**Items in Bed:**\n**0: **Planks\n**1: **Sprunk Cans| +|#pony|413|**0: **Sound System in Back| +|#reefer|453|**Items in Back:**\n**0: **Boxes of Fish\n**1: **Bench| +|#romero|442|**Coffins:**\n**0: **Brown Style1\n**1: **Black Style2\n**2: **Brown Style3| +|#rumpo|440|**Side Ads:**\n**0: **Cok-o-Pops\n**1: **Harry Plums\n**2: **Dick Goblin's\n**3: **Final Build\n**4: **Transfender\n**5:** Wheel Arch Angels| +|#sadler|543|**Items in Bed:**\n**0: **Two Propane Tanks & Crate\n**1: **Two Barrels\n**2: **Sprunk Cans\n**3: **Open Crates| +|#sadlshit|605|**Items in Bed:**\n**0: **Two Propane Tanks & Crate\n**1: **Two Barrels\n**2: **Sprunk Cans\n**3: **Open Crates| +|#securica|428|**Side Logo:**\n**0: **Chuff\n**1: **Lock&Load| +|#slamvan|535|**Steering Wheel:**\n**0: **Normal\n**1: **Chain| +|#stallion|439|**Roof:**\n**0: **Hardtop\n**1: **Softtop (up)\n**2: **Softtop (folded)| +|#supergt|506|**0: **Full Roof| +|#swatvan|601|**Number:**\n**0: **1\n**1: **9\n**2: **6\n**3: **7| +|#topfun|459|**0: **Boxes of Toys in Back| +|#tram|449|?| +|#trash|408|**0: **Some bits of trash sticking out of the back| +|#utility|552|**0, 1: **Cones, Barrel in back, Cone lying on passenger \| driver side rail| +|#walton|478|**Items in Bed:**\n**0: **Two Propane Tanks\n**1: **Open Crates\n**2: **Propane Tank and Barrel| +|#windsor|555|**0: **Roof| +|#yankee|456|**Side Ads:**\n**0: **Big Gas\n**1: **RS Haul\n**2: **Star Balls\n**3: **Flower Power| +|#zr350|477|**0: **Rear Spoiler| \ No newline at end of file diff --git a/es/scm-documentation/sa/vehicles.html b/es/scm-documentation/sa/vehicles.html index ba9d2f0..34f113a 100644 --- a/es/scm-documentation/sa/vehicles.html +++ b/es/scm-documentation/sa/vehicles.html @@ -8,56 +8,251 @@ +### bikes -
- -
- - - \ No newline at end of file +|Name|Model|GXT| +|-| +|BF-400|581|BF400| +|Bike|509|BIKE| +|BMX|481|BMX| +|Faggio|462|FAGGIO| +|FCR-900|521|FCR900| +|Freeway|463|FREEWAY| +|Mountain Bike|510|MTBIKE| +|NRG-500|522|NRG500| +|PCJ-600|461|PCJ600| +|Pizzaboy|448|PIZZABO| +|Sanchez|468|SANCHEZ| +|Wayfarer|586|WAYFARE| + +### 2-Door + +|Name|Model|GXT| +|-| +|Alpha|602|ALPHA| +|Blista Compact|496|BLISTAC| +|Bravura|401|BRAVURA| +|Buccaneer|518|BUCCANE| +|Cadrona|527|CADRONA| +|Club|589|CLUB| +|Esperanto|419|ESPERAN| +|Euros|587|EUROS| +|Feltzer|533|FELTZER| +|Fortune|526|FORTUNE| +|Hermes|474|HERMES| +|Hustler|545|HUSTLER| +|Majestic|517|MAJESTC| +|Manana|410|MANANA| +|Picador|600|PICADOR| +|Previon|436|PREVION| +|Stallion|439|STALION| +|Tampa|549|TAMPA| +|Virgo|491|VIRGO| + +### 4-Door + +|Name|Model|GXT| +|-| +|Admiral|445|ADMIRAL| +|Damaged Glendale|604|GLENSHI| +|Elegant|507|ELEGANT| +|Emperor|585|EMPEROR| +|Glendale|466|GLENDAL| +|Greenwood|492|GREENWO| +|Intruder|546|INTRUDR| +|Merit|551|MERIT| +|Nebula|516|NEBULA| +|Oceanic|467|OCEANIC| +|Premier|426|PREMIER| +|Primo|547|PRIMO| +|Sentinel|405|SENTINL| +|Stafford|580|STAFFRD| +|Stretch|409|STRETCH| +|Sunrise|550|SUNRISE| +|Tahoma|566|TAHOMA| +|Vincent|540|VINCENT| +|Washington|421|WASHING| +|Willard|529|WILLARD| + +### Civil service + +|Name|Model|GXT| +|-| +|Baggage|485|BAGGAGE| +|Bus|431|BUS| +|Cabbie|438|CABBIE| +|Coach|437|COACH| +|Sweeper|574|SWEEPER| +|Taxi|420|TAXI| +|Towtruck|525|TOWTRUK| +|Trashmaster|408|TRASHM| +|Utility Van|552|UTILITY| + +### Government vehicles + +|Name|Model|GXT| +|-| +|Ambulance|416|AMBULAN| +|Barracks|433|BARRCKS| +|Enforcer|427|ENFORCR| +|FBI Rancher|490|FBIRANC| +|FBI Truck|528|FBITRUK| +|Fire Truck|407|FIRETRK| +|Fire Truck2|544|FIRELA| +|HPV1000|523|HPV1000| +|Patriot|470|PATRIOT| +|Police LS|596|POLICAR| +|Police LV|598|POLICAR| +|Police Ranger|599|RANGER| +|Police SF|597|POLICAR| +|Rhino|432|RHINO| +|S.W.A.T.|601|SWATVAN| +|Securicar|428|SECURI| + +### Heavy & Utility trucks + +|Name|Model|GXT| +|-| +|Benson|499|BENSON| +|Boxville Mission|609|BOXBURG| +|Boxville|498|BOXVILL| +|Cement Truck|524|CEMENT| +|Combine Harvester|532|COMBINE| +|DFT-30|578|DFT30| +|Dozer|486|DOZER| +|Dumper|406|DUMPER| +|Dune|573|DUNE| +|Flatbed|455|FLATBED| +|Hotdog|588|HOTDOG| +|Linerunner|403|LINERUN| +|Mr. Whoopee|423|WHOOPEE| +|Mule|414|MULE| +|Packer|443|PACKER| +|Roadtrain|515|RDTRAIN| +|Tanker|514|PETROL| +|Tractor|531|TRACTOR| +|Yankee|456|YANKEE| + +### Light trucks & Vans + +|Name|Model|GXT| +|-| +|Berkley's RC Van|459|TOPFUN| +|Bobcat|422|BOBCAT| +|Burrito|482|BURRITO| +|Damaged Sadler|605|SADLSHI| +|Forklift|530|FORKLFT| +|Moonbeam|418|MOONBM| +|Mower|572|MOWER| +|News Van|582|NEWSVAN| +|Pony|413|PONY| +|Rumpo|440|RUMPO| +|Sadler|543|SADLER| +|Tug|583|TUG| +|Walton|478|WALTON| +|Yosemite|554|YOSEMIT| + +### SUVs & Wagons + +|Name|Model|GXT| +|-| +|Huntley|579|HUNTLEY| +|Landstalker|400|LANDSTK| +|Perennial|404|PEREN| +|Rancher|489|RANCHER| +|Rancher Lure|505|RANCHER| +|Regina|479|REGINA| +|Romero|442|ROMERO| +|Solair|458|SOLAIR| + +### Lowriders + +|Name|Model|GXT| +|-| +|Blade|536|BLADE| +|Broadway|575|BROADWY| +|Remington|534|REMING| +|Savanna|567|SAVANNA| +|Slamvan|535|SLAMVAN| +|Tornado|576|TORNADO| +|Voodoo|412|VOODOO| + +### Muscle cars + +|Name|Model|GXT| +|-| +|Buffalo|402|BUFFALO| +|Clover|542|CLOVER| +|Phoenix|603|PHOENIX| +|Sabre|475|SABRE| + +### Street racers + +|Name|Model|GXT| +|-| +|Banshee|429|BANSHEE| +|Bullet|541|BULLET| +|Cheetah|415|CHEETAH| +|Comet|480|COMET| +|Elegy|562|ELEGY| +|Flash|565|FLASH| +|Hotknife|434|HOTKNIF| +|Hotring Racer|494|HOTRING| +|Hotring Racer 2|502|HOTRINA| +|Hotring Racer 3|503|HOTRINB| +|Infernus|411|INFERNU| +|Jester|559|JESTER| +|Stratum|561|STRATUM| +|Sultan|560|SULTAN| +|Super GT|506|SUPERGT| +|Turismo|451|TURISMO| +|Uranus|558|URANUS| +|Windsor|555|WINDSOR| +|ZR-350|477|ZR350| + +### Planes + +|Name|Model|GXT| +|-| +|Andromada|592|ANDROM| +|AT-400|577|AT400| +|Beagle|511|BEAGLE| +|Cropduster|512|CROPDST| +|Dodo|593|DODO| +|Hydra|520|HYDRA| +|Nevada|553|NEVADA| +|Rustler|476|RUSTLER| +|Shamal|519|SHAMAL| +|Skimmer|460|SKIMMER| +|Stuntplane|513|STUNT| + +### Helicopters + +|Name|Model|GXT| +|-| +|Cargobob|548|CARGOBB| +|Hunter|425|HUNTER| +|Leviathan|417|LEVIATH| +|Maverick|487|MAVERIC| +|News Chopper|488|SANMAV| +|Police Maverick|497|POLMAV| +|Raindance|563|RAINDNC| +|Seasparrow|447|SEASPAR| +|Sparrow|469|SPARROW| + +### Boats + +|Name|Model|GXT| +|-| +|Coastguard|472|COASTG| +|Dinghy|473|DINGHY| +|Jetmax|493|JETMAX| +|Launch|595|LAUNCH| +|Marquis|484|MARQUIS| +|Predator|430|PREDATR| +|Reefer|453|REEFER| +|Speeder|452|SPEEDER| +|Squalo|446|SQUALO| +|Tropic|454|TROPIC| + + \ No newline at end of file diff --git a/es/scm-documentation/sa/weapons.html b/es/scm-documentation/sa/weapons.html index 4752d1a..577f8ea 100644 --- a/es/scm-documentation/sa/weapons.html +++ b/es/scm-documentation/sa/weapons.html @@ -11,83 +11,54 @@ ```sb3 01B2: give_actor $PLAYER_ACTOR weapon <id> ammo 60 ``` - - - - - - - - - - - - - -
NombreIDModeloGrupoGUIGXT
- +|Nombre|ID|Modelo|Grupo|GUI|GXT| +|-| +|Unarmed|0|0
0|1|![](%sa-w/fist.png)|WEAP00| +|Brass Knuckles|1|brassknuckle
331|1|![](%sa-w/BRASSKNUCKLEicon.png)|WEAP01| +|Golf Club|2|golfclub
333|2|![](%sa-w/golfclubicon.png)|WEAP02| +|Night Stick|3|nitestick
334|2|![](%sa-w/nitestickicon.png)|WEAP03| +|Knife|4|knifecur
335|2|![](%sa-w/knifecuricon.png)|KNIFE| +|Baseball Bat|5|bat
336|2|![](%sa-w/baticon.png)|BASEBAT| +|Shovel|6|shovel
337|2|![](%sa-w/shovelicon.png)|WEAP04| +|Pool cue|7|poolcue
338|2|![](%sa-w/poolcueicon.png)|WEAP05| +|Katana|8|katana
339|2|![](%sa-w/katanaicon.png)|KATANA| +|Chainsaw|9|chnsaw
341|2|![](%sa-w/chnsawicon.png)|CHAINSA| +|Purple Dildo|10|gun_dildo1
321|11|![](%sa-w/gun_dildo1icon.png)|WEAP07| +|White Dildo|11|gun_dildo2
322|11|![](%sa-w/gun_dildo2icon.png)|WEAP06| +|Long White Dildo|12|gun_vibe1
323|11|![](%sa-w/gun_vibe1icon.png)|WEAP09| +|White Dildo 2|13|gun_vibe2
324|11|![](%sa-w/gun_vibe2icon.png)|\s| +|Flowers|14|flowera
325|11|![](%sa-w/floweraicon.png)|WEAP10| +|Cane|15|gun_cane
326|11|![](%sa-w/gun_caneicon.png)|\s| +|Grenades|16|grenade
342|9|![](%sa-w/grenadeicon.png)|GRENADE| +|Tear Gas|17|teargas
343|9|![](%sa-w/TearGasicon.png)|WEAP11| +|Molotovs|18|molotovs
334|9|![](%sa-w/molotovicon.png)|WEAP12| +|Pistol|22|colt45
346|3|![](%sa-w/colt45icon.png)|STWE001| +|Silenced Pistol|23|silenced
347|3|![](%sa-w/silencedicon.png)|STWE002| +|Desert Eagle|24|desert_eagle
348|3|![](%sa-w/desert_eagleicon.png)|STWE003| +|Shotgun|25|chromegun
349|4|![](%sa-w/chromegunicon.png)|STWE004| +|Sawn Off Shotgun|26|sawnoff
350|4|![](%sa-w/sawnofficon.png)|STWE005| +|Combat Shotgun|27|shotgspa
351|4|![](%sa-w/shotgspaicon.png)|STWE006| +|Micro UZI|28|micro_uzi
352|5|![](%sa-w/micro_uziicon.png)|UZI| +|MP5|29|mp5lng
353|5|![](%sa-w/mp5lngicon.png)|STWE008| +|AK47|30|ak47
355|6|![](%sa-w/ak47icon.png)|STWE009| +|M4|31|m4
356|6|![](%sa-w/M4icon.png)|STWE010| +|Tec9|32|tec9
372|5|![](%sa-w/tec9icon.png)|STWE011| +|Rifle|33|cuntgun
357|7|![](%sa-w/cuntgunicon.png)|RIFLE| +|Sniper Rifle|34|sniper
358|7|![](%sa-w/SNIPERicon.png)|SNIPER| +|Rocket Launcher|35|rocketla
359|8|![](%sa-w/rocketlaicon.png)|ROCKET| +|Heat Seeking Rocket Launcher|36|heatseek
360|8|![](%sa-w/heatseekicon.png)|ROCKHS| +|Flame Thrower|37|flame
361|8|![](%sa-w/flameicon.png)|FLAMET| +|Minigun|38|minigun
362|8|![](%sa-w/minigunicon.png)|MINIGU| +|Sachet Charges|39|satchel
363|9|![](%sa-w/satchelicon.png)|WEAP25| +|Detonator|40|remote
364|13|![](%sa-w/bombicona.png)|WEAP40| +|Spray Paint|41|spraycan
365|10|![](%sa-w/SPRAYCANicon.png)|WEAP13| +|Fire Extinguisher|42|fire_ex
366|10|![](%sa-w/fire_exicon.png)|WEAP14| +|Camera|43|camera
367|10|![](%sa-w/Cameraicon.png)|WEAP15| +|Nightvision Goggles|44|nvgoggles
368|12|![](%sa-w/irgogglesicon.png)|WEAP16| +|Thermal Goggles|45|irgoggles
369|12|![](%sa-w/irgogglesicon.png)|WEAP17| +|Parachute|46|gun_para
371|12|![](%sa-w/gun_paraIcon.png)|WEAP18| +|Jetpack|\s|jetpack
370|\s|![](%sa-w/jetpackicon.png)|\s| +|Cellphone|\s|cellphone
330|\s|![](%sa-w/cellphoneicon.png)|\s| - \ No newline at end of file + \ No newline at end of file diff --git a/es/scm-documentation/sa/weather.html b/es/scm-documentation/sa/weather.html index ff5c278..4b1aa63 100644 --- a/es/scm-documentation/sa/weather.html +++ b/es/scm-documentation/sa/weather.html @@ -11,51 +11,32 @@ ```sb3 01b6: set_weather <id> ``` - - - - - - - - - - -
DescripciónIDGXT
+ +|Descripción|ID|GXT| +|-| +|LA: Extra Sunny|0|WEATH0| +|LA: Sunny|1|WEATH1| +|LA: Extra Sunny Smog|2|WEATH2| +|LA: Sunny Smog|3|WEATH3| +|LA: Cloudy|4|WEATH4| +|SF: Sunny|5|WEATH5| +|SF: Extra Sunny|6|WEATH6| +|SF: Cloudy|7|WEATH7| +|SF: Rainy|8|WEATH8| +|SF: Foggy|9|WEATH9| +|LV: Sunny|10|WEATH10| +|LV: Extra Sunny|11|WEATH11| +|LV: Cloudy|12|WEATH12| +|C: Extra Sunny|13|WEATH13| +|C: Sunny|14|WEATH14| +|C: Cloudy|15|WEATH15| +|C: Rainy|16|WEATH16| +|D: Extra Sunny|17|WEATH17| +|D: Sunny|18|WEATH18| +|D: Sandstorm|19|WEATH19| +|S: Underwater|20|WEATH20| +|S: Extracolours 1|21|WEATH21| +|S: Extracolours 2|22|WEATH22| + > **L**os **S**antos, **S**an **F**ierro, **L**as **V**enturas, **C**ountryside, **D**esert, **S**pecial - - \ No newline at end of file + \ No newline at end of file diff --git a/es/scm-documentation/sa/zones.html b/es/scm-documentation/sa/zones.html index b91cc0b..9230dd6 100644 --- a/es/scm-documentation/sa/zones.html +++ b/es/scm-documentation/sa/zones.html @@ -11,2120 +11,455 @@ ```sb3 0767: set_zone 'CARSO' type <tipo> ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TipoDescripción
0BUSINESS
1DESERT
2ENTERTAINMENT
3COUNTRYSIDE
4RESIDENTIAL_RICH
5RESIDENTIAL_AVERAGE
6RESIDENTIAL_POOR
7GANGLAND
8BEACH
9SHOPPING
10PARK
11INDUSTRY
12ENTERTAINMENT_BUSY
13SHOPPING_BUSY
14SHOPPING_POSH
15RESIDENTIAL_RICH_SECLUDED
16AIRPORT
17GOLF_CLUB
18OUT_OF_TOWN_FACTORY
19AIRPORT_RUNWAY
+ +|Tipo|Descripción| +|-| +|0|BUSINESS| +|1|DESERT| +|2|ENTERTAINMENT| +|3|COUNTRYSIDE| +|4|RESIDENTIAL_RICH| +|5|RESIDENTIAL_AVERAGE| +|6|RESIDENTIAL_POOR| +|7|GANGLAND| +|8|BEACH| +|9|SHOPPING| +|10|PARK| +|11|INDUSTRY| +|12|ENTERTAINMENT_BUSY| +|13|SHOPPING_BUSY| +|14|SHOPPING_POSH| +|15|RESIDENTIAL_RICH_SECLUDED| +|16|AIRPORT| +|17|GOLF_CLUB| +|18|OUT_OF_TOWN_FACTORY| +|19|AIRPORT_RUNWAY| ### Los Santos - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
LALos SantosLA
RIH1aRichmanRIH
RIH1bRichmanRIH
RIH2RichmanRIH
RIH3aRichmanRIH
RIH3bRichmanRIH
RIH4RichmanRIH
RIH5aRichmanRIH
RIH5bRichmanRIH
RIH6aRichmanRIH
RIH6bRichmanRIH
MUL1aMulhollandMUL
MUL1bMulhollandMUL
MUL1cMulhollandMUL
MUL2aMulhollandMUL
MUL2bMulhollandMUL
MUL3MulhollandMUL
MUL4MulhollandMUL
MUL5aMulhollandMUL
MUL5bMulhollandMUL
MUL5cMulhollandMUL
MUL6MulhollandMUL
MUL7aMulhollandMUL
MUL7bMulhollandMUL
MULINTMulholland IntersectionMULINT
SUN1TempleSUN
SUN2TempleSUN
SUN3aTempleSUN
SUN3bTempleSUN
SUN3cTempleSUN
SUN4TempleSUN
CHC1aLas ColinasCHC
CHC1bLas ColinasCHC
CHC2aLas ColinasCHC
CHC2bLas ColinasCHC
CHC3Las ColinasCHC
CHC4aLas ColinasCHC
CHC4bLas ColinasCHC
VIN1aVinewoodVIN
VIN1bVinewoodVIN
VIN2VinewoodVIN
VIN3VinewoodVIN
LDT1aDowntown Los SantosLDT
LDT1bDowntown Los SantosLDT
LDT1cDowntown Los SantosLDT
LDT3Downtown Los SantosLDT
LDT4Downtown Los SantosLDT
LDT5Downtown Los SantosLDT
LDT6Downtown Los SantosLDT
LDT7Downtown Los SantosLDT
LDT8Downtown Los SantosLDT
GLN1Glen ParkGLN
GLN1bGlen ParkGLN
GLN2aGlen ParkGLN
LFL1aLos FloresLFL
LFL1bLos FloresLFL
MKT1MarketMKT
MKT2MarketMKT
MKT3MarketMKT
MKT4MarketMKT
MARKSTMarket StationMARKST
JEF1aJeffersonJEF
JEF1bJeffersonJEF
JEF2effersonJEF
JEF3aJeffersonJEF
JEF3bJeffersonJEF
JEF3cJeffersonJEF
ROD1aRodeoROD
ROD1bRodeoROD
ROD1cRodeoROD
ROD2aRodeoROD
ROD2bRodeoROD
ROD3aRodeoROD
ROD3bRodeoROD
ROD4aRodeoROD
ROD4bRodeoROD
ROD4cRodeoROD
ROD5aRodeoROD
ROD5bRodeoROD
MAR1MarinaMAR
MAR2MarinaMAR
MAR3MarinaMAR
THALL1CommerceCOM
COM1aCommerceCOM
COM1bCommerceCOM
COM2CommerceCOM
COM3CommerceCOM
COM4CommerceCOM
ELS1aEast Los SantosELS
ELS1bEast Los SantosELS
ELS2East Los SantosELS
ELS3aEast Los SantosELS
ELS3bEast Los SantosELS
ELS3cEast Los SantosELS
ELS4East Los SantosELS
EBE1East BeachEBE
EBE2aEast BeachEBE
EBE2bEast BeachEBE
EBE3cEast BeachEBE
PER1Pershing SquarePER1
IWD1IdlewoodIWD
IWD2IdlewoodIWD
IWD3aIdlewoodIWD
IWD3bIdlewoodIWD
IWD4IdlewoodIWD
IWD5IdlewoodIWD
GAN1GantonGAN
GAN2GantonGAN
CONF1aConference CenterCONF
CONF1bConference CenterCONF
CITYSCity HallCITYS
LMEX1aLittle MexicoLMEX
LMEX1bLittle MexicoLMEX
UNITYUnity StationUNITY
SMB1Santa Maria BeachSMB
SMB2Santa Maria BeachSMB
VERO1Verona BeachVERO
VERO2Verona BeachVERO
VERO3Verona BeachVERO
VERO4aerona BeachVERO
VERO4bVerona BeachVERO
LIND1aWillowfieldLIND
LIND1bWillowfieldLIND
LIND2aWillowfieldLIND
LIND2bWillowfieldLIND
LIND3WillowfieldLIND
LIND4aWillowfieldLIND
LIND4cWillowfieldLIND
ELCO1El CoronaELCO
ELCO2El CoronaELCO
PLSPlaya del SevillePLS
BLUF1aVerdant BluffsBLUF
BLUF1bVerdant BluffsBLUF
BLUF2Verdant BluffsBLUF
LAIR1Los Santos InternationalLAIR
LAIR2aLos Santos InternationalLAIR
LAIR2bLos Santos InternationalLAIR
LBAG1Los Santos InternationalLAIR
LBAG2Los Santos InternationalLAIR
LBAG3Los Santos InternationalLAIR
LDOC1aOcean DocksLDOC
LDOC1bOcean DocksLDOC
LDOC2Ocean DocksLDOC
LDOC3aOcean DocksLDOC
LDOC3bOcean DocksLDOC
LDOC3cOcean DocksLDOC
LDOC4Ocean DocksLDOC
+|Zone ID|GXT Value|GXT Key| +|-| +|LA|Los Santos|LA| +|RIH1a|Richman|RIH| +|RIH1b|Richman|RIH| +|RIH2|Richman|RIH| +|RIH3a|Richman|RIH| +|RIH3b|Richman|RIH| +|RIH4|Richman|RIH| +|RIH5a|Richman|RIH| +|RIH5b|Richman|RIH| +|RIH6a|Richman|RIH| +|RIH6b|Richman|RIH| +|MUL1a|Mulholland|MUL| +|MUL1b|Mulholland|MUL| +|MUL1c|Mulholland|MUL| +|MUL2a|Mulholland|MUL| +|MUL2b|Mulholland|MUL| +|MUL3|Mulholland|MUL| +|MUL4|Mulholland|MUL| +|MUL5a|Mulholland|MUL| +|MUL5b|Mulholland|MUL| +|MUL5c|Mulholland|MUL| +|MUL6|Mulholland|MUL| +|MUL7a|Mulholland|MUL| +|MUL7b|Mulholland|MUL| +|MULINT|Mulholland Intersection|MULINT| +|SUN1|Temple|SUN| +|SUN2|Temple|SUN| +|SUN3a|Temple|SUN| +|SUN3b|Temple|SUN| +|SUN3c|Temple|SUN| +|SUN4|Temple|SUN| +|CHC1a|Las Colinas|CHC| +|CHC1b|Las Colinas|CHC| +|CHC2a|Las Colinas|CHC| +|CHC2b|Las Colinas|CHC| +|CHC3|Las Colinas|CHC| +|CHC4a|Las Colinas|CHC| +|CHC4b|Las Colinas|CHC| +|VIN1a|Vinewood|VIN| +|VIN1b|Vinewood|VIN| +|VIN2|Vinewood|VIN| +|VIN3|Vinewood|VIN| +|LDT1a|Downtown Los Santos|LDT| +|LDT1b|Downtown Los Santos|LDT| +|LDT1c|Downtown Los Santos|LDT| +|LDT3|Downtown Los Santos|LDT| +|LDT4|Downtown Los Santos|LDT| +|LDT5|Downtown Los Santos|LDT| +|LDT6|Downtown Los Santos|LDT| +|LDT7|Downtown Los Santos|LDT| +|LDT8|Downtown Los Santos|LDT| +|GLN1|Glen Park|GLN| +|GLN1b|Glen Park|GLN| +|GLN2a|Glen Park|GLN| +|LFL1a|Los Flores|LFL| +|LFL1b|Los Flores|LFL| +|MKT1|Market|MKT| +|MKT2|Market|MKT| +|MKT3|Market|MKT| +|MKT4|Market|MKT| +|MARKST|Market Station|MARKST| +|JEF1a|Jefferson|JEF| +|JEF1b|Jefferson|JEF| +|JEF2|efferson|JEF| +|JEF3a|Jefferson|JEF| +|JEF3b|Jefferson|JEF| +|JEF3c|Jefferson|JEF| +|ROD1a|Rodeo|ROD| +|ROD1b|Rodeo|ROD| +|ROD1c|Rodeo|ROD| +|ROD2a|Rodeo|ROD| +|ROD2b|Rodeo|ROD| +|ROD3a|Rodeo|ROD| +|ROD3b|Rodeo|ROD| +|ROD4a|Rodeo|ROD| +|ROD4b|Rodeo|ROD| +|ROD4c|Rodeo|ROD| +|ROD5a|Rodeo|ROD| +|ROD5b|Rodeo|ROD| +|MAR1|Marina|MAR| +|MAR2|Marina|MAR| +|MAR3|Marina|MAR| +|THALL1|Commerce|COM| +|COM1a|Commerce|COM| +|COM1b|Commerce|COM| +|COM2|Commerce|COM| +|COM3|Commerce|COM| +|COM4|Commerce|COM| +|ELS1a|East Los Santos|ELS| +|ELS1b|East Los Santos|ELS| +|ELS2|East Los Santos|ELS| +|ELS3a|East Los Santos|ELS| +|ELS3b|East Los Santos|ELS| +|ELS3c|East Los Santos|ELS| +|ELS4|East Los Santos|ELS| +|EBE1|East Beach|EBE| +|EBE2a|East Beach|EBE| +|EBE2b|East Beach|EBE| +|EBE3c|East Beach|EBE| +|PER1|Pershing Square|PER1| +|IWD1|Idlewood|IWD| +|IWD2|Idlewood|IWD| +|IWD3a|Idlewood|IWD| +|IWD3b|Idlewood|IWD| +|IWD4|Idlewood|IWD| +|IWD5|Idlewood|IWD| +|GAN1|Ganton|GAN| +|GAN2|Ganton|GAN| +|CONF1a|Conference Center|CONF| +|CONF1b|Conference Center|CONF| +|CITYS|City Hall|CITYS| +|LMEX1a|Little Mexico|LMEX| +|LMEX1b|Little Mexico|LMEX| +|UNITY|Unity Station|UNITY| +|SMB1|Santa Maria Beach|SMB| +|SMB2|Santa Maria Beach|SMB| +|VERO1|Verona Beach|VERO| +|VERO2|Verona Beach|VERO| +|VERO3|Verona Beach|VERO| +|VERO4a|erona Beach|VERO| +|VERO4b|Verona Beach|VERO| +|LIND1a|Willowfield|LIND| +|LIND1b|Willowfield|LIND| +|LIND2a|Willowfield|LIND| +|LIND2b|Willowfield|LIND| +|LIND3|Willowfield|LIND| +|LIND4a|Willowfield|LIND| +|LIND4c|Willowfield|LIND| +|ELCO1|El Corona|ELCO| +|ELCO2|El Corona|ELCO| +|PLS|Playa del Seville|PLS| +|BLUF1a|Verdant Bluffs|BLUF| +|BLUF1b|Verdant Bluffs|BLUF| +|BLUF2|Verdant Bluffs|BLUF| +|LAIR1|Los Santos International|LAIR| +|LAIR2a|Los Santos International|LAIR| +|LAIR2b|Los Santos International|LAIR| +|LBAG1|Los Santos International|LAIR| +|LBAG2|Los Santos International|LAIR| +|LBAG3|Los Santos International|LAIR| +|LDOC1a|Ocean Docks|LDOC| +|LDOC1b|Ocean Docks|LDOC| +|LDOC2|Ocean Docks|LDOC| +|LDOC3a|Ocean Docks|LDOC| +|LDOC3b|Ocean Docks|LDOC| +|LDOC3c|Ocean Docks|LDOC| +|LDOC4|Ocean Docks|LDOC| ### Red County - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
REDRed CountyRED
MONTMontgomeryMONT
MONT1MontgomeryMONT
MONINTMontgomery IntersectionMONINT
HBARNSHampton BarnsHBARNS
HANKYHankypanky PointHANKY
BLUACBlueberry AcresBLUAC
FERNFern RidgeFERN
PANOPThe PanopticonPANOP
PALOPalomino CreekPALO
BLUEBBlueberryBLUEB
BLUEB1BlueberryBLUEB
TOPFAHilltop FarmTOPFA
NROCKNorth RockNROCK
DILLIDillimoreDILLI
+|Zone ID|GXT Value|GXT Key| +|-| +|RED|Red County|RED| +|MONT|Montgomery|MONT| +|MONT1|Montgomery|MONT| +|MONINT|Montgomery Intersection|MONINT| +|HBARNS|Hampton Barns|HBARNS| +|HANKY|Hankypanky Point|HANKY| +|BLUAC|Blueberry Acres|BLUAC| +|FERN|Fern Ridge|FERN| +|PANOP|The Panopticon|PANOP| +|PALO|Palomino Creek|PALO| +|BLUEB|Blueberry|BLUEB| +|BLUEB1|Blueberry|BLUEB| +|TOPFA|Hilltop Farm|TOPFA| +|NROCK|North Rock|NROCK| +|DILLI|Dillimore|DILLI| ### San Fierro - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
SFSan FierroSF
BATTPBattery PointBATTP
ESPN1Esplanade NorthESPN
ESPN2Esplanade NorthESPN
ESPN3Esplanade NorthESPN
ESPE1Esplanade EastESPE
ESPE2Esplanade EastESPE
ESPE3Esplanade EastESPE
JUNIHOJuniper HollowJUNIHO
SFDWT1DowntownSFDWT
SFDWT2DowntownSFDWT
SFDWT3DowntownSFDWT
SFDWT4DowntownSFDWT
SFDWT5DowntownSFDWT
SFDWT6DowntownSFDWT
PARAParadisoPARA
CALTCalton HeightsCALT
FINAFinancialFINA
BAYVPalisadesBAYV
JUNIHIJuniper HillJUNIHI
CHINAChinatownCHINA
CIVISanta FloraCIVI
WESTP1QueensWESTP
WESTP2QueensWESTP
WESTP3QueensWESTP
CITYSCity HallCITYS
THEA1King'sTHEA
THEA2King'sTHEA
THEA3King'sTHEA
EASB1Easter BasinEASB
EASB2Easter BasinEASB
GARCGarciaGARC
SFGLF3GarciaGARC
CRANBCranberry StationCRANB
OCEAF1Ocean FlatsOCEAF
OCEAF2Ocean FlatsOCEAF
OCEAF3Ocean FlatsOCEAF
HASHHashburyHASH
DOH1DohertyDOH
DOH2DohertyDOH
SFBAG2Easter Bay Airport (English)SFAIR
SFBAG3Easter Bay Airport (English)SFAIR
SFBAG1Easter Bay Airport (English)SFAIR
SFAIR1Easter Bay Airport (English)SFAIR
SFAIR2Easter Bay Airport (English)SFAIR
SFAIR3Easter Bay Airport (English)SFAIR
SFAIR4Easter Bay Airport (English)SFAIR
SFAIR5Easter Bay Airport (English)SFAIR
+|Zone ID|GXT Value|GXT Key| +|-| +|SF|San Fierro|SF| +|BATTP|Battery Point|BATTP| +|ESPN1|Esplanade North|ESPN| +|ESPN2|Esplanade North|ESPN| +|ESPN3|Esplanade North|ESPN| +|ESPE1|Esplanade East|ESPE| +|ESPE2|Esplanade East|ESPE| +|ESPE3|Esplanade East|ESPE| +|JUNIHO|Juniper Hollow|JUNIHO| +|SFDWT1|Downtown|SFDWT| +|SFDWT2|Downtown|SFDWT| +|SFDWT3|Downtown|SFDWT| +|SFDWT4|Downtown|SFDWT| +|SFDWT5|Downtown|SFDWT| +|SFDWT6|Downtown|SFDWT| +|PARA|Paradiso|PARA| +|CALT|Calton Heights|CALT| +|FINA|Financial|FINA| +|BAYV|Palisades|BAYV| +|JUNIHI|Juniper Hill|JUNIHI| +|CHINA|Chinatown|CHINA| +|CIVI|Santa Flora|CIVI| +|WESTP1|Queens|WESTP| +|WESTP2|Queens|WESTP| +|WESTP3|Queens|WESTP| +|CITYS|City Hall|CITYS| +|THEA1|King's|THEA| +|THEA2|King's|THEA| +|THEA3|King's|THEA| +|EASB1|Easter Basin|EASB| +|EASB2|Easter Basin|EASB| +|GARC|Garcia|GARC| +|SFGLF3|Garcia|GARC| +|CRANB|Cranberry Station|CRANB| +|OCEAF1|Ocean Flats|OCEAF| +|OCEAF2|Ocean Flats|OCEAF| +|OCEAF3|Ocean Flats|OCEAF| +|HASH|Hashbury|HASH| +|DOH1|Doherty|DOH| +|DOH2|Doherty|DOH| +|SFBAG2|Easter Bay Airport (English)|SFAIR| +|SFBAG3|Easter Bay Airport (English)|SFAIR| +|SFBAG1|Easter Bay Airport (English)|SFAIR| +|SFAIR1|Easter Bay Airport (English)|SFAIR| +|SFAIR2|Easter Bay Airport (English)|SFAIR| +|SFAIR3|Easter Bay Airport (English)|SFAIR| +|SFAIR4|Easter Bay Airport (English)|SFAIR| +|SFAIR5|Easter Bay Airport (English)|SFAIR| ### Flint County - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
FLINTCFlint CountyFLINTC
CUNTC1Avispa Country ClubCUNTC
CUNTC2Avispa Country ClubCUNTC
CUNTC3Avispa Country ClubCUNTC
SFGLF1Avispa Country ClubCUNTC
SFGLF2Avispa Country ClubCUNTC
SFGLF4Avispa Country ClubCUNTC
HAULFallen TreeHAUL
HILLPMissionary HillHILLP
EBAYEaster Bay ChemicalEBAY
EBAY2Easter Bay ChemicalEBAY
ETUNNEaster TunnelETUNN
SILLY1Foster ValleySILLY
SILLY2Foster ValleySILLY
SILLY3Foster ValleySILLY
SILLY4Foster ValleySILLY
FARMThe FarmFARM
BEACOBeacon HillBEACO
FLINTIFlint IntersectionFLINTI
FLINTRFlint RangeFLINTR
LEAFYLeafy HollowLEAFY
BACKOBack o BeyondBACKO
+|Zone ID|GXT Value|GXT Key| +|-| +|FLINTC|Flint County|FLINTC| +|CUNTC1|Avispa Country Club|CUNTC| +|CUNTC2|Avispa Country Club|CUNTC| +|CUNTC3|Avispa Country Club|CUNTC| +|SFGLF1|Avispa Country Club|CUNTC| +|SFGLF2|Avispa Country Club|CUNTC| +|SFGLF4|Avispa Country Club|CUNTC| +|HAUL|Fallen Tree|HAUL| +|HILLP|Missionary Hill|HILLP| +|EBAY|Easter Bay Chemical|EBAY| +|EBAY2|Easter Bay Chemical|EBAY| +|ETUNN|Easter Tunnel|ETUNN| +|SILLY1|Foster Valley|SILLY| +|SILLY2|Foster Valley|SILLY| +|SILLY3|Foster Valley|SILLY| +|SILLY4|Foster Valley|SILLY| +|FARM|The Farm|FARM| +|BEACO|Beacon Hill|BEACO| +|FLINTI|Flint Intersection|FLINTI| +|FLINTR|Flint Range|FLINTR| +|LEAFY|Leafy Hollow|LEAFY| +|BACKO|Back o Beyond|BACKO| ### Whetstone - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
WHETWhetstoneWHET
MTCHI1Mount ChiliadMTCHI
MTCHI2Mount ChiliadMTCHI
MTCHI3Mount ChiliadMTCHI
MTCHI4Mount ChiliadMTCHI
CREEKShady CreeksCREEK
CREEK1Shady CreeksCREEK
SHACAShady CabinSHACA
ANGPIAngel PineANGPI
+|Zone ID|GXT Value|GXT Key| +|-| +|WHET|Whetstone|WHET| +|MTCHI1|Mount Chiliad|MTCHI| +|MTCHI2|Mount Chiliad|MTCHI| +|MTCHI3|Mount Chiliad|MTCHI| +|MTCHI4|Mount Chiliad|MTCHI| +|CREEK|Shady Creeks|CREEK| +|CREEK1|Shady Creeks|CREEK| +|SHACA|Shady Cabin|SHACA| +|ANGPI|Angel Pine|ANGPI| ### Las Venturas - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
VELas VenturasVE
YBELL1Yellow Bell Golf CourseYBELL
YBELL2Yellow Bell Golf CourseYBELL
SPINSpinybedSPIN
KACCK.A.C.C. Military FuelsKACC
PRP1Prickle PinePRP
PRP2Prickle PinePRP
PRP3Prickle PinePRP
PRP4Prickle PinePRP
YELLOWYellow Bell StationYELLOW
JTN1Julius Thruway NorthJTN
JTN2Julius Thruway NorthJTN
JTN3Julius Thruway NorthJTN
JTN4Julius Thruway NorthJTN
JTN5Julius Thruway NorthJTN
JTN6Julius Thruway NorthJTN
JTN7Julius Thruway NorthJTN
JTN8Julius Thruway NorthJTN
PINTPilson IntersectionPINT
ISLEThe Emerald IsleISLE
ROCE1Roca EscalanteROCE
ROCE2Roca EscalanteROCE
WWEWhitewood EstatesWWE
WWE1Whitewood EstatesWWE
OVSOld Venturas StripOVS
CREECreekCREE
REDE1Redsands EastREDE
REDE2Redsands EastREDE
REDE3Redsands EastREDE
REDW1Redsands WestREDW
REDW2Redsands WestREDW
REDW3Redsands WestREDW
REDW4Redsands WestREDW
HGPHarry Gold ParkwayHGP
STRIP1The StripSTRIP
STRIP2The StripSTRIP
JTW1Julius Thruway WestJTW
JTW2Julius Thruway WestJTW
VISA1The VisageVISA
VISA2The VisageVISA
STAR1Starfish CasinoSTAR
STAR2Starfish CasinoSTAR
CONST1Starfish CasinoSTAR
RINGThe Clown's PocketRING
SRYSobell Rail YardsSRY
JTE1Julius Thruway EastJTE
JTE2Julius Thruway EastJTE
JTE3Julius Thruway EastJTE
JTE4Julius Thruway EastJTE
BFLD1BlackfieldBFLD
BFLD2BlackfieldBFLD
CALI1Caligula's PalaceCALI
CALI2Caligula's PalaceCALI
VAIR1Las Venturas Airport (English)VAIR
VAIR2Las Venturas Airport (English)VAIR
VAIR3Las Venturas Airport (English)VAIR
LVBAGLas Venturas Airport (English)VAIR
PIRAPirates in Men's PantsPIRA
ROYRoyal CasinoROY
PILL1PilgrimPILL
PILL2PilgrimPILL
LSTLinden StationLST
LINDENLinden StationLINDEN
HIGHThe High RollerHIGH
STRIP3The StripSTRIP
STRIP4The StripSTRIP
PINKThe Pink SwanPINK
CAMThe Camel's ToeCAM
GGC1Greenglass CollegeGGC
GGC2Greenglass CollegeGGC
LDSLinden SideLDS
LVA1LVA Freight DepotLVA
LVA2LVA Freight DepotLVA
LVA3LVA Freight DepotLVA
LVA4LVA Freight DepotLVA
LVA5LVA Freight DepotLVA
DRAGThe Four Dragons CasinoDRAG
LOTCome-A-LotLOT
BINT1Blackfield IntersectionBINT
BINT2Blackfield IntersectionBINT
BINT3Blackfield IntersectionBINT
BINT4Blackfield IntersectionBINT
JTS1Julius Thruway SouthJTS
JTS2Julius Thruway SouthJTS
BFC1Blackfield ChapelBFC
BFC2Blackfield ChapelBFC
RIERandolph Industrial EstateRIE
LDMLast Dime MotelLDM
RSERockshore EastRSE
RSW1Rockshore WestRSW
+|Zone ID|GXT Value|GXT Key| +|-| +|VE|Las Venturas|VE| +|YBELL1|Yellow Bell Golf Course|YBELL| +|YBELL2|Yellow Bell Golf Course|YBELL| +|SPIN|Spinybed|SPIN| +|KACC|K.A.C.C. Military Fuels|KACC| +|PRP1|Prickle Pine|PRP| +|PRP2|Prickle Pine|PRP| +|PRP3|Prickle Pine|PRP| +|PRP4|Prickle Pine|PRP| +|YELLOW|Yellow Bell Station|YELLOW| +|JTN1|Julius Thruway North|JTN| +|JTN2|Julius Thruway North|JTN| +|JTN3|Julius Thruway North|JTN| +|JTN4|Julius Thruway North|JTN| +|JTN5|Julius Thruway North|JTN| +|JTN6|Julius Thruway North|JTN| +|JTN7|Julius Thruway North|JTN| +|JTN8|Julius Thruway North|JTN| +|PINT|Pilson Intersection|PINT| +|ISLE|The Emerald Isle|ISLE| +|ROCE1|Roca Escalante|ROCE| +|ROCE2|Roca Escalante|ROCE| +|WWE|Whitewood Estates|WWE| +|WWE1|Whitewood Estates|WWE| +|OVS|Old Venturas Strip|OVS| +|CREE|Creek|CREE| +|REDE1|Redsands East|REDE| +|REDE2|Redsands East|REDE| +|REDE3|Redsands East|REDE| +|REDW1|Redsands West|REDW| +|REDW2|Redsands West|REDW| +|REDW3|Redsands West|REDW| +|REDW4|Redsands West|REDW| +|HGP|Harry Gold Parkway|HGP| +|STRIP1|The Strip|STRIP| +|STRIP2|The Strip|STRIP| +|JTW1|Julius Thruway West|JTW| +|JTW2|Julius Thruway West|JTW| +|VISA1|The Visage|VISA| +|VISA2|The Visage|VISA| +|STAR1|Starfish Casino|STAR| +|STAR2|Starfish Casino|STAR| +|CONST1|Starfish Casino|STAR| +|RING|The Clown's Pocket|RING| +|SRY|Sobell Rail Yards|SRY| +|JTE1|Julius Thruway East|JTE| +|JTE2|Julius Thruway East|JTE| +|JTE3|Julius Thruway East|JTE| +|JTE4|Julius Thruway East|JTE| +|BFLD1|Blackfield|BFLD| +|BFLD2|Blackfield|BFLD| +|CALI1|Caligula's Palace|CALI| +|CALI2|Caligula's Palace|CALI| +|VAIR1|Las Venturas Airport (English)|VAIR| +|VAIR2|Las Venturas Airport (English)|VAIR| +|VAIR3|Las Venturas Airport (English)|VAIR| +|LVBAG|Las Venturas Airport (English)|VAIR| +|PIRA|Pirates in Men's Pants|PIRA| +|ROY|Royal Casino|ROY| +|PILL1|Pilgrim|PILL| +|PILL2|Pilgrim|PILL| +|LST|Linden Station|LST| +|LINDEN|Linden Station|LINDEN| +|HIGH|The High Roller|HIGH| +|STRIP3|The Strip|STRIP| +|STRIP4|The Strip|STRIP| +|PINK|The Pink Swan|PINK| +|CAM|The Camel's Toe|CAM| +|GGC1|Greenglass College|GGC| +|GGC2|Greenglass College|GGC| +|LDS|Linden Side|LDS| +|LVA1|LVA Freight Depot|LVA| +|LVA2|LVA Freight Depot|LVA| +|LVA3|LVA Freight Depot|LVA| +|LVA4|LVA Freight Depot|LVA| +|LVA5|LVA Freight Depot|LVA| +|DRAG|The Four Dragons Casino|DRAG| +|LOT|Come-A-Lot|LOT| +|BINT1|Blackfield Intersection|BINT| +|BINT2|Blackfield Intersection|BINT| +|BINT3|Blackfield Intersection|BINT| +|BINT4|Blackfield Intersection|BINT| +|JTS1|Julius Thruway South|JTS| +|JTS2|Julius Thruway South|JTS| +|BFC1|Blackfield Chapel|BFC| +|BFC2|Blackfield Chapel|BFC| +|RIE|Randolph Industrial Estate|RIE| +|LDM|Last Dime Motel|LDM| +|RSE|Rockshore East|RSE| +|RSW1|Rockshore West|RSW| ### Tierra Robada - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
ROBADTierra RobadaROBAD
ROBAD1Tierra RobadaROBAD
ELQUEEl QuebradosELQUE
SUNNNBaysideSUNNN
BYTUNBayside TunnelBYTUN
ALDEAAldea MalvadaALDEA
SUNMABayside MarinaSUNMA
BARRALas BarrancasBARRA
ROBINTRobada IntersectionROBINT
+|Zone ID|GXT Value|GXT Key| +|-| +|ROBAD|Tierra Robada|ROBAD| +|ROBAD1|Tierra Robada|ROBAD| +|ELQUE|El Quebrados|ELQUE| +|SUNNN|Bayside|SUNNN| +|BYTUN|Bayside Tunnel|BYTUN| +|ALDEA|Aldea Malvada|ALDEA| +|SUNMA|Bayside Marina|SUNMA| +|BARRA|Las Barrancas|BARRA| +|ROBINT|Robada Intersection|ROBINT| ### Bone County - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
BONEBone CountyBONE
PAYASLas PayasadasPAYAS
VALLEValle OcultadoVALLE
ELCAEl Castillo del DiabloELCA
ELCA1El Castillo del DiabloELCA
ELCA2El Castillo del DiabloELCA
ARCOArco del OesteARCO
MEADVerdant MeadowsMEAD
BRUJALas BrujasBRUJA
TOMRegular TomTOM
RESTRestricted AreaREST
BIGE'The Big Ear' (English)BIGE
PALMSGreen PalmsPALMS
OCTANOctane SpringsOCTAN
PROBELil' Probe InnPROBE
CARSOFort CarsonCARSO
QUARYHunter QuarryQUARY
+|Zone ID|GXT Value|GXT Key| +|-| +|BONE|Bone County|BONE| +|PAYAS|Las Payasadas|PAYAS| +|VALLE|Valle Ocultado|VALLE| +|ELCA|El Castillo del Diablo|ELCA| +|ELCA1|El Castillo del Diablo|ELCA| +|ELCA2|El Castillo del Diablo|ELCA| +|ARCO|Arco del Oeste|ARCO| +|MEAD|Verdant Meadows|MEAD| +|BRUJA|Las Brujas|BRUJA| +|TOM|Regular Tom|TOM| +|REST|Restricted Area|REST| +|BIGE|'The Big Ear' (English)|BIGE| +|PALMS|Green Palms|PALMS| +|OCTAN|Octane Springs|OCTAN| +|PROBE|Lil' Probe Inn|PROBE| +|CARSO|Fort Carson|CARSO| +|QUARY|Hunter Quarry|QUARY| ### Lakes - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
LSINLLos Santos InletLSINL
FLINWFlint WaterFLINW
FISHFisher's LagoonFISH
SANB1San Fierro BaySANB
SANB2San Fierro BaySANB
SHERRSherman ReservoirSHERR
SASOSan Andreas SoundSASO
+|Zone ID|GXT Value|GXT Key| +|-| +|LSINL|Los Santos Inlet|LSINL| +|FLINW|Flint Water|FLINW| +|FISH|Fisher's Lagoon|FISH| +|SANB1|San Fierro Bay|SANB| +|SANB2|San Fierro Bay|SANB| +|SHERR|Sherman Reservoir|SHERR| +|SASO|San Andreas Sound|SASO| ### Bridges - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
Zone IDGXT ValueGXT Key
GANTBGant BridgeGANTB
GANTB1Gant BridgeGANTB
*DAMThe Sherman DamDAM
GARVGarver BridgeGARV
GARV1Garver BridgeGARV
GARV2Garver BridgeGARV
KINCKincaid BridgeKINC
KINC1Kincaid BridgeKINC
KINC2Kincaid BridgeKINC
FALLOFallow BridgeFALLO
MARTMartin BridgeMART
MAKOThe Mako SpanMAKO
FREDFrederick BridgeFRED
+|Zone ID|GXT Value|GXT Key| +|-| +|GANTB|Gant Bridge|GANTB| +|GANTB1|Gant Bridge|GANTB| +|*DAM|The Sherman Dam|DAM| +|GARV|Garver Bridge|GARV| +|GARV1|Garver Bridge|GARV| +|GARV2|Garver Bridge|GARV| +|KINC|Kincaid Bridge|KINC| +|KINC1|Kincaid Bridge|KINC| +|KINC2|Kincaid Bridge|KINC| +|FALLO|Fallow Bridge|FALLO| +|MART|Martin Bridge|MART| +|MAKO|The Mako Span|MAKO| +|FRED|Frederick Bridge|FRED| \ No newline at end of file diff --git a/es/scm-documentation/vc/buttons.html b/es/scm-documentation/vc/buttons.html index e3a2ed5..5fadaf4 100644 --- a/es/scm-documentation/vc/buttons.html +++ b/es/scm-documentation/vc/buttons.html @@ -8,143 +8,32 @@ - ```sb3 00E1: key_pressed 0 <button> ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
BotónEnumDe pieEn un vehículo
0LEFTSTICKXLeft / RightSteer Left / Right
1LEFTSTICKYForward / BackwardsSteer Forward / Backward
2RIGHTSTICKXSpecial Ctrl Left / RightTurret Left / Right
3RIGHTSTICKYSpecial Ctrl Up / DownTurret Up / Down, Lean Up / Down
4LEFTSHOULDER1ActionRadio
5LEFTSHOULDER2Previous WeaponLook Left
6RIGHTSHOULDER1AimHandbrake
7RIGHTSHOULDER2Next WeaponLook Right
8DPADUPForward
9DPADDOWNBackward
10DPADLEFTStrafe LeftSteer Left
11DPADRIGHTStrafe RightSteer Right
12START
13SELECTChange CameraChange Camera
14SQUAREJump / Zoom InBrake / Reverse
15TRIANGLEEnter vehicleExit vehicle
16CROSSSprint / Zoom OutAccelerate
17CIRCLEAttackShoot
18LEFTSHOCKCrouchHorn
19RIGHTSHOCKLook BehindSub-mission
+|Botón|Enum|De pie|En un vehículo| +|-| +|0|LEFTSTICKX|Left / Right|Steer Left / Right| +|1|LEFTSTICKY|Forward / Backwards|Steer Forward / Backward| +|2|RIGHTSTICKX|Special Ctrl Left / Right|Turret Left / Right| +|3|RIGHTSTICKY|Special Ctrl Up / Down|Turret Up / Down, Lean Up / Down| +|4|LEFTSHOULDER1|Action|Radio| +|5|LEFTSHOULDER2|Previous Weapon|Look Left| +|6|RIGHTSHOULDER1|Aim|Handbrake| +|7|RIGHTSHOULDER2|Next Weapon|Look Right| +|8|DPADUP|Forward|\s| +|9|DPADDOWN|Backward|\s| +|10|DPADLEFT|Strafe Left|Steer Left| +|11|DPADRIGHT|Strafe Right|Steer Right| +|12|START|\s|\s| +|13|SELECT|Change Camera|Change Camera| +|14|SQUARE|Jump / Zoom In|Brake / Reverse| +|15|TRIANGLE|Enter vehicle|Exit vehicle| +|16|CROSS|Sprint / Zoom Out|Accelerate| +|17|CIRCLE|Attack|Shoot| +|18|LEFTSHOCK|Crouch|Horn| +|19|RIGHTSHOCK|Look Behind|Sub-mission| [https://gtamods.com/wiki/00E1](https://gtamods.com/wiki/00E1) diff --git a/es/scm-documentation/vc/gangs.html b/es/scm-documentation/vc/gangs.html index fbb2f72..c33dc85 100644 --- a/es/scm-documentation/vc/gangs.html +++ b/es/scm-documentation/vc/gangs.html @@ -8,51 +8,16 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDNombre
0Cubans
1Haitians
2Street wannabees
3Columbians (Diaz's)
4Renta Cops (PIGs)
5Bikers
6Vercetti (yours)
7Golfers
8Army (special gang)
+|ID|Nombre| +|-| +|0|Cubans| +|1|Haitians| +|2|Street wannabees| +|3|Columbians (Diaz's)| +|4|Renta Cops (PIGs)| +|5|Bikers| +|6|Vercetti (yours)| +|7|Golfers| +|8|Army (special gang)| \ No newline at end of file diff --git a/es/scm-documentation/vc/garages.html b/es/scm-documentation/vc/garages.html index d3e5239..2b2f3fc 100644 --- a/es/scm-documentation/vc/garages.html +++ b/es/scm-documentation/vc/garages.html @@ -8,177 +8,40 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDEnumDescripción
1GARAGE_MISSIONPlaceholder garage (inactive garage)
2GARAGE_BOMBSHOP1Bomb shop with timed detonator
3GARAGE_BOMBSHOP2Bomb shop with engine ignition detonation
4GARAGE_BOMBSHOP3Bomb shop with remote-control detonator
5GARAGE_RESPRAY

Spray garage

It excludes Ambulance, Barracks, Bus, Coach, Enforcer, FBI Rancher, Firetruck, Police, Rhino

6GARAGE_COLLECTORSITEMSinvalid garage
7GARAGE_COLLECTSPECIFICCARSCar eater, functions similar to export garages but accepts any cars and gives no reward
8GARAGE_COLLECTCARS_1Sunshine Autos export garage 1
9GARAGE_COLLECTCARS_2Sunshine Autos export garage 2
10GARAGE_COLLECTCARS_3Sunshine Autos export garage 3
11GARAGE_FORCARTOCOMEOUTOFunused garage, normally closed but if opened it will stay opened if anything is in the garage and will close itself if there's nothing in the garage
12GARAGE_60SECONDSinvalid garage
13GARAGE_CRUSHERinvalid garage
14GARAGE_MISSION_KEEPCARunused garage, normally closed but if opened it will always close itself
15GARAGE_FOR_SCRIPT_TO_OPENunused garage, normally closed but if opened it can't close
16GARAGE_HIDEOUT_ONESave garage (El Swanko Casa)
17GARAGE_HIDEOUT_TWOSave garage (Hyman Condo 1)
18GARAGE_HIDEOUT_THREESave garage (Hyman Condo 2)
19GARAGE_FOR_SCRIPT_TO_OPEN_AND_CLOSEgarage used in "Copland", normally closed and can be controlled normally
20GARAGE_KEEPS_OPENING_FOR_SPECIFIC_CARunused garage, normally closed and can be controlled normally
21GARAGE_MISSION_KEEPCAR_REMAINCLOSEDunused garage, normally closed but if opened it will always close itself
22GARAGE_COLLECTCARS_4Sunshine Autos export garage 4
23GARAGE_FOR_SCRIPT_TO_OPEN_FOR_CARArmy garage used in "Sir, Yes Sir!", normally closed and can be controlled normally
24GARAGE_HIDEOUT_FOURSave garage (Hyman Condo 3)
25GARAGE_HIDEOUT_FIVESave garage (Ocean Heights Apartment)
26GARAGE_HIDEOUT_SIXSave garage (Links View Apartment)
27GARAGE_HIDEOUT_SEVENSave garage (Sunshine Autos 1)
28GARAGE_HIDEOUT_EIGHTSave garage (Sunshine Autos 2)
29GARAGE_HIDEOUT_NINESave garage (Sunshine Autos 3)
30GARAGE_HIDEOUT_TENSave garage (Sunshine Autos 4)
31GARAGE_HIDEOUT_ELEVENSave garage (Vercetti Estate)
32GARAGE_HIDEOUT_TWELVESave garage (unused)
+|ID|Enum|Descripción| +|-| +|1|GARAGE_MISSION|Placeholder garage (inactive garage)| +|2|GARAGE_BOMBSHOP1|Bomb shop with timed detonator| +|3|GARAGE_BOMBSHOP2|Bomb shop with engine ignition detonation| +|4|GARAGE_BOMBSHOP3|Bomb shop with remote-control detonator| +|5|GARAGE_RESPRAY|

Spray garage

It excludes Ambulance, Barracks, Bus, Coach, Enforcer, FBI Ranciretruck, Police, Rhino

| +|6|GARAGE_COLLECTORSITEMS|invalid garage| +|7|GARAGE_COLLECTSPECIFICCARS|Car eater, functions similar to export garages but accepts any cars and gives no reward| +|8|GARAGE_COLLECTCARS_1|Sunshine Autos export garage 1| +|9|GARAGE_COLLECTCARS_2|Sunshine Autos export garage 2| +|10|GARAGE_COLLECTCARS_3|Sunshine Autos export garage 3| +|11|GARAGE_FORCARTOCOMEOUTOF|unused garage, normally closed but if opened it will stay opened if anything is inarage and will close itself if there's nothing in the garage| +|12|GARAGE_60SECONDS|invalid garage| +|13|GARAGE_CRUSHER|invalid garage| +|14|GARAGE_MISSION_KEEPCAR|unused garage, normally closed but if opened it will always close itself| +|15|GARAGE_FOR_SCRIPT_TO_OPEN|unused garage, normally closed but if opened it can't close| +|16|GARAGE_HIDEOUT_ONE|Save garage (El Swanko Casa)| +|17|GARAGE_HIDEOUT_TWO|Save garage (Hyman Condo 1)| +|18|GARAGE_HIDEOUT_THREE|Save garage (Hyman Condo 2)| +|19|GARAGE_FOR_SCRIPT_TO_OPEN_AND_CLOSE|garage used in "Copland", normally closed and can be controlled normally| +|20|GARAGE_KEEPS_OPENING_FOR_SPECIFIC_CAR|unused garage, normally closed and can be controlled normally| +|21|GARAGE_MISSION_KEEPCAR_REMAINCLOSED|unused garage, normally closed but if opened it will always close itself| +|22|GARAGE_COLLECTCARS_4|Sunshine Autos export garage 4| +|23|GARAGE_FOR_SCRIPT_TO_OPEN_FOR_CAR|Army garage used in "Sir, Yes Sir!", normally closed and can be controlled no| +|24|GARAGE_HIDEOUT_FOUR|Save garage (Hyman Condo 3)| +|25|GARAGE_HIDEOUT_FIVE|Save garage (Ocean Heights Apartment)| +|26|GARAGE_HIDEOUT_SIX|Save garage (Links View Apartment)| +|27|GARAGE_HIDEOUT_SEVEN|Save garage (Sunshine Autos 1)| +|28|GARAGE_HIDEOUT_EIGHT|Save garage (Sunshine Autos 2)| +|29|GARAGE_HIDEOUT_NINE|Save garage (Sunshine Autos 3)| +|30|GARAGE_HIDEOUT_TEN|Save garage (Sunshine Autos 4)| +|31|GARAGE_HIDEOUT_ELEVEN|Save garage (Vercetti Estate)| +|32|GARAGE_HIDEOUT_TWELVE|Save garage (unused)| [https://gtamods.com/wiki/Garage#Vice_City](https://gtamods.com/wiki/Garage#Vice_City) diff --git a/es/scm-documentation/vc/interiors.html b/es/scm-documentation/vc/interiors.html index ee3262e..157de22 100644 --- a/es/scm-documentation/vc/interiors.html +++ b/es/scm-documentation/vc/interiors.html @@ -8,87 +8,25 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDDescripción
0outside
1hotel
2mansion
3bank
4mall
5stripclub
6lawyers
7cafe robina
8concert
9studio
10shooting range
11apartment/bikerbar
12policeHQ
14stadium1
15stadium2
16stadium3
17Malibu club
18Print Works
+|ID|Descripción| +|-| +|0|outside| +|1|hotel| +|2|mansion| +|3|bank| +|4|mall| +|5|stripclub| +|6|lawyers| +|7|cafe robina| +|8|concert| +|9|studio| +|10|shooting range| +|11|apartment/bikerbar| +|12|policeHQ| +|14|stadium1| +|15|stadium2| +|16|stadium3| +|17|Malibu club| +|18|Print Works| \ No newline at end of file diff --git a/es/scm-documentation/vc/pedtypes.html b/es/scm-documentation/vc/pedtypes.html index 9d5a983..2e244e2 100644 --- a/es/scm-documentation/vc/pedtypes.html +++ b/es/scm-documentation/vc/pedtypes.html @@ -8,108 +8,33 @@ - ```sb3 009A: 0@ = create_actor <id> 0 at 0 0 0 ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDTipo
0player1
1player2
2player3
3player4
4civmale
5civfemale
6cop
7gang1
8gang2
9gang3
10gang4
11gang5
12gang6
13gang7
14gang8
15gang9
16emergency
17fireman
18criminal
19unused
20prostitute
21special
+|ID|Tipo| +|-| +|0|player1| +|1|player2| +|2|player3| +|3|player4| +|4|civmale| +|5|civfemale| +|6|cop| +|7|gang1| +|8|gang2| +|9|gang3| +|10|gang4| +|11|gang5| +|12|gang6| +|13|gang7| +|14|gang8| +|15|gang9| +|16|emergency| +|17|fireman| +|18|criminal| +|19|*unused*| +|20|prostitute| +|21|special| \ No newline at end of file diff --git a/es/scm-documentation/vc/radar-icons.html b/es/scm-documentation/vc/radar-icons.html index 14ba511..547affd 100644 --- a/es/scm-documentation/vc/radar-icons.html +++ b/es/scm-documentation/vc/radar-icons.html @@ -8,216 +8,47 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDIconoDescripción
0![](../../../img/vc/radar/dot.gif)Small pink square
1![](../../../img/vc/radar/radar_centre.gif)Player position
2![](../../../img/vc/radar/arrow.gif)Pink arrow
3![](../../../img/vc/radar/radar_north.gif)North
4![](../../../img/vc/radar/radar_avery.gif)Avery Carrington
5![](../../../img/vc/radar/radar_biker.gif)Big Mitch Baker
6![](../../../img/vc/radar/radar_cortez.gif)Colonel Cortez
7![](../../../img/vc/radar/radar_diaz.gif)Ricardo Diaz
8![](../../../img/vc/radar/radar_kent.gif)Kent Paul
9![](../../../img/vc/radar/radar_lawyer.gif)Lawyer (Ken Rosenberg)
10![](../../../img/vc/radar/radar_phil.gif)Phil Cassidy
11![](../../../img/vc/radar/bikers.gif)Biker's Bar
12![](../../../img/vc/radar/boatyard.gif)Boatyard
13![](../../../img/vc/radar/club.gif)Malibu Club
14![](../../../img/vc/radar/cubans.gif)Cubans
15![](../../../img/vc/radar/filmstudio.gif)Film Studio
16![](../../../img/vc/radar/gun.gif)Ammu-nation
17![](../../../img/vc/radar/haitians.gif)Haitians
18![](../../../img/vc/radar/hardware.gif)Toolshop
19![](../../../img/vc/radar/radar_save.gif)Safe House
20![](../../../img/vc/radar/radar_strip.gif)Pole Position Club
21![](../../../img/vc/radar/icecream.gif)Cherry Poppers Factory
22![](../../../img/vc/radar/kcabs.gif)Kaufman Cabs
23![](../../../img/vc/radar/lovefist.gif)Love Fist
24![](../../../img/vc/radar/printworks.gif)Print Works
25(no icon)
26![](../../../img/vc/radar/SunYard.gif)Sunshine Autos
27![](../../../img/vc/radar/spray.gif)Pay 'n' Spray
28![](../../../img/vc/radar/tshirt.gif)Clothes
29![](../../../img/vc/radar/tommy.gif)Vercetti's Mansion
30![](../../../img/vc/radar/phone.gif)Phone
31![](../../../img/vc/radar/RWildstyle.gif)Wildstyle Radio station
32![](../../../img/vc/radar/RFlash.gif)Flash Radio station
33![](../../../img/vc/radar/RKchat.gif)KChat Radio station
34![](../../../img/vc/radar/RFever.gif)Fever Radio station
35![](../../../img/vc/radar/RVRock.gif)VRock Radio station
36![](../../../img/vc/radar/rvcpr.gif)VCPR Radio station
37![](../../../img/vc/radar/REspantoso.gif)Espantoso Radio station
38![](../../../img/vc/radar/REmotion.gif)Emotion Radio station
39![](../../../img/vc/radar/RWave.gif)Wave Radio station
+|ID|Icono|Descripción| +|-| +|0|![](%vc-r/dot.gif)|Small pink square| +|1|![](%vc-r/radar_centre.gif)|Player position| +|2|![](%vc-r/arrow.gif)|Pink arrow| +|3|![](%vc-r/radar_north.gif)|North| +|4|![](%vc-r/radar_avery.gif)|Avery Carrington| +|5|![](%vc-r/radar_biker.gif)|Big Mitch Baker| +|6|![](%vc-r/radar_cortez.gif)|Colonel Cortez| +|7|![](%vc-r/radar_diaz.gif)|Ricardo Diaz| +|8|![](%vc-r/radar_kent.gif)|Kent Paul| +|9|![](%vc-r/radar_lawyer.gif)|Lawyer (Ken Rosenberg)| +|10|![](%vc-r/radar_phil.gif)|Phil Cassidy| +|11|![](%vc-r/bikers.gif)|Biker's Bar| +|12|![](%vc-r/boatyard.gif)|Boatyard| +|13|![](%vc-r/club.gif)|Malibu Club| +|14|![](%vc-r/cubans.gif)|Cubans| +|15|![](%vc-r/filmstudio.gif)|Film Studio| +|16|![](%vc-r/gun.gif)|Ammu-nation| +|17|![](%vc-r/haitians.gif)|Haitians| +|18|![](%vc-r/hardware.gif)|Toolshop| +|19|![](%vc-r/radar_save.gif)|Safe House| +|20|![](%vc-r/radar_strip.gif)|Pole Position Club| +|21|![](%vc-r/icecream.gif)|Cherry Poppers Factory| +|22|![](%vc-r/kcabs.gif)|Kaufman Cabs| +|23|![](%vc-r/lovefist.gif)|Love Fist| +|24|![](%vc-r/printworks.gif)|Print Works| +|25|\s|(no icon)| +|26|![](%vc-r/SunYard.gif)|Sunshine Autos| +|27|![](%vc-r/spray.gif)|Pay 'n' Spray| +|28|![](%vc-r/tshirt.gif)|Clothes| +|29|![](%vc-r/tommy.gif)|Vercetti's Mansion| +|30|![](%vc-r/phone.gif)|Phone| +|31|![](%vc-r/RWildstyle.gif)|Wildstyle Radio station| +|32|![](%vc-r/RFlash.gif)|Flash Radio station| +|33|![](%vc-r/RKchat.gif)|KChat Radio station| +|34|![](%vc-r/RFever.gif)|Fever Radio station| +|35|![](%vc-r/RVRock.gif)|VRock Radio station| +|36|![](%vc-r/rvcpr.gif)|VCPR Radio station| +|37|![](%vc-r/REspantoso.gif)|Espantoso Radio station| +|38|![](%vc-r/REmotion.gif)|Emotion Radio station| +|39|![](%vc-r/RWave.gif)|Wave Radio station| \ No newline at end of file diff --git a/es/scm-documentation/vc/weapons.html b/es/scm-documentation/vc/weapons.html index 68792c3..6d5dba2 100644 --- a/es/scm-documentation/vc/weapons.html +++ b/es/scm-documentation/vc/weapons.html @@ -8,282 +8,48 @@ - ```sb3 04B8: get_char_weapon <actor> in_slot_id <casilla> type_to <tipo> ammo_to <munición> model_to <modelo> ``` - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
TipoCasillaNombreModeloIcono
01Unarmed![](../../../img/vc/weapon/fist.gif)
11Brass Knuckles#brassknuckle![](../../../img/vc/weapon/brassknuckle.gif)
22Screwdriver#screwdriver![](../../../img/vc/weapon/screwdriver.gif)
32Golf Club#golfclub![](../../../img/vc/weapon/golfclub.gif)
42Night Stick#nitestick![](../../../img/vc/weapon/nitestick.gif)
52Knife#knifecur![](../../../img/vc/weapon/knifecur.gif)
62Baseball Bat#bat![](../../../img/vc/weapon/bat.gif)
72Hammer#hammer![](../../../img/vc/weapon/hammer.gif)
82Cleaver#cleaver![](../../../img/vc/weapon/cleaver.gif)
92Machete#machete![](../../../img/vc/weapon/machete.gif)
102Katana#katana![](../../../img/vc/weapon/katana.gif)
112Chainsaw#chnsaw![](../../../img/vc/weapon/chnsaw.gif)
123Grenade#grenade![](../../../img/vc/weapon/grenade.gif)
133Remote Detonator#bomb![](../../../img/vc/weapon/bomb.gif)
143Tear gas#teargas![](../../../img/vc/weapon/teargas.gif)
153Molotov#molotov![](../../../img/vc/weapon/molotov.gif)
163Missile#missile
174Colt (.45)#colt45![](../../../img/vc/weapon/colt45.gif)
184Python (.357)#python![](../../../img/vc/weapon/python.gif)
195Chrome Shotgun#chromegun![](../../../img/vc/weapon/chromegun.gif)
205S.P.A.S 12 Shotgun#shotgspa![](../../../img/vc/weapon/shotgspa.gif)
215Stubby Shotgun#buddyshot![](../../../img/vc/weapon/buddyshot.gif)
226Tec-9#tec9![](../../../img/vc/weapon/tec9.gif)
236Uzi 9mm#uzi![](../../../img/vc/weapon/uzi.gif)
246Ingram Mac 10#ingramsl![](../../../img/vc/weapon/ingramsl.gif)
256MP5#mp5lng![](../../../img/vc/weapon/mp5lng.gif)
267M4#m4![](../../../img/vc/weapon/m4.gif)
277Ruger#ruger![](../../../img/vc/weapon/ruger.gif)
308Rocket Launcher#rocketla![](../../../img/vc/weapon/rocketla.gif)
318Flame Thrower#flame![](../../../img/vc/weapon/flame.gif)
328M60#M60![](../../../img/vc/weapon/m60.gif)
338Minigun#minigun![](../../../img/vc/weapon/minigun.gif)
358Helicopter Cannon
289Sniper Rifle#sniper![](../../../img/vc/weapon/sniper.gif)
299PSG-1 (.308 Sniper)#laser![](../../../img/vc/weapon/laser.gif)
3410Detonator
3610Camera#camera![](../../../img/vc/weapon/camera.gif)
+|Tipo|Casilla|Nombre|Modelo|Icono| +|-| +|0|1|Unarmed|\s|![](%vc-w/fist.gif)| +|1|1|Brass Knuckles|#brassknuckle|![](%vc-w/brassknuckle.gif)| +|2|2|Screwdriver|#screwdriver|![](%vc-w/screwdriver.gif)| +|3|2|Golf Club|#golfclub|![](%vc-w/golfclub.gif)| +|4|2|Night Stick|#nitestick|![](%vc-w/nitestick.gif)| +|5|2|Knife|#knifecur|![](%vc-w/knifecur.gif)| +|6|2|Baseball Bat|#bat|![](%vc-w/bat.gif)| +|7|2|Hammer|#hammer|![](%vc-w/hammer.gif)| +|8|2|Cleaver|#cleaver|![](%vc-w/cleaver.gif)| +|9|2|Machete|#machete|![](%vc-w/machete.gif)| +|10|2|Katana|#katana|![](%vc-w/katana.gif)| +|11|2|Chainsaw|#chnsaw|![](%vc-w/chnsaw.gif)| +|12|3|Grenade|#grenade|![](%vc-w/grenade.gif)| +|13|3|Remote Detonator|#bomb|![](%vc-w/bomb.gif)| +|14|3|Tear gas|#teargas|![](%vc-w/teargas.gif)| +|15|3|Molotov|#molotov|![](%vc-w/molotov.gif)| +|16|3|Missile|#missile|\s| +|17|4|Colt (.45)|#colt45|![](%vc-w/colt45.gif)| +|18|4|Python (.357)|#python|![](%vc-w/python.gif)| +|19|5|Chrome Shotgun|#chromegun|![](%vc-w/chromegun.gif)| +|20|5|S.P.A.S 12 Shotgun|#shotgspa|![](%vc-w/shotgspa.gif)| +|21|5|Stubby Shotgun|#buddyshot|![](%vc-w/buddyshot.gif)| +|22|6|Tec-9|#tec9|![](%vc-w/tec9.gif)| +|23|6|Uzi 9mm|#uzi|![](%vc-w/uzi.gif)| +|24|6|Ingram Mac 10|#ingramsl|![](%vc-w/ingramsl.gif)| +|25|6|MP5|#mp5lng|![](%vc-w/mp5lng.gif)| +|26|7|M4|#m4|![](%vc-w/m4.gif)| +|27|7|Ruger|#ruger|![](%vc-w/ruger.gif)| +|30|8|Rocket Launcher|#rocketla|![](%vc-w/rocketla.gif)| +|31|8|Flame Thrower|#flame|![](%vc-w/flame.gif)| +|32|8|M60|#M60|![](%vc-w/m60.gif)| +|33|8|Minigun|#minigun|![](%vc-w/minigun.gif)| +|35|8|Helicopter Cannon|\s|\s| +|28|9|Sniper Rifle|#sniper|![](%vc-w/sniper.gif)| +|29|9|PSG-1 (.308 Sniper)|#laser|![](%vc-w/laser.gif)| +|34|10|Detonator|\s|\s| +|36|10|Camera|#camera|![](%vc-w/camera.gif)| \ No newline at end of file diff --git a/es/scm-documentation/vcs/clothes.html b/es/scm-documentation/vcs/clothes.html index 9dcce66..22bd9a6 100644 --- a/es/scm-documentation/vcs/clothes.html +++ b/es/scm-documentation/vcs/clothes.html @@ -8,71 +8,21 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDNombre
OUT_F1Army Fatigues
OUT_F2Casuals
OUT_F3Leisure
OUT_F4Trailer Trash
OUT_F5Cuban Style
OUT_F6Pastel Suit
OUT_F7Tracksuit
OUT_F8Hood
OUT_F9Hired Muscle
OUT_F10Repo-Man
OUT_F11Smuggler
OUT_F12Smart Suit
OUT_F13Winner
OUT_F14Wet Suit
+|ID|Nombre| +|-| +|OUT_F1|Army Fatigues| +|OUT_F2|Casuals| +|OUT_F3|Leisure| +|OUT_F4|Trailer Trash| +|OUT_F5|Cuban Style| +|OUT_F6|Pastel Suit| +|OUT_F7|Tracksuit| +|OUT_F8|Hood| +|OUT_F9|Hired Muscle| +|OUT_F10|Repo-Man| +|OUT_F11|Smuggler| +|OUT_F12|Smart Suit| +|OUT_F13|Winner| +|OUT_F14|Wet Suit| \ No newline at end of file diff --git a/es/scm-documentation/vcs/gangs.html b/es/scm-documentation/vcs/gangs.html index 0921cfa..d10732d 100644 --- a/es/scm-documentation/vcs/gangs.html +++ b/es/scm-documentation/vcs/gangs.html @@ -8,51 +8,16 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDNombre
0Umberto's guys
1Cholos
2Sharks
3Army
4Security
5Bikers
6Vance gang
7Golfer
8Marty's
+|ID|Nombre| +|-| +|0|Umberto's guys| +|1|Cholos| +|2|Sharks| +|3|Army| +|4|Security| +|5|Bikers| +|6|Vance gang| +|7|Golfer| +|8|Marty's| \ No newline at end of file diff --git a/es/scm-documentation/vcs/weather.html b/es/scm-documentation/vcs/weather.html index 4c35275..170bfe0 100644 --- a/es/scm-documentation/vcs/weather.html +++ b/es/scm-documentation/vcs/weather.html @@ -8,47 +8,15 @@ - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - - -
IDDescripción
0Sunny
1Cloudy
2Rainy
3Foggy
4Extra sunny
5Hurricane
6Extra colors
7Ultra sunny
+|ID|Descripción| +|-| +|0|Sunny| +|1|Cloudy| +|2|Rainy| +|3|Foggy| +|4|Extra sunny| +|5|Hurricane| +|6|Extra colors| +|7|Ultra sunny| \ No newline at end of file diff --git a/es/scm-documentation/virtual-key-codes.html b/es/scm-documentation/virtual-key-codes.html index 28ae3a5..45746bb 100644 --- a/es/scm-documentation/virtual-key-codes.html +++ b/es/scm-documentation/virtual-key-codes.html @@ -11,134 +11,116 @@ ``` 0AB0: key_pressed <id> ``` - - - - - - - - -
TeclaID
- +|Tecla|ID| +|-| +|Botón Izquierdo del Ratón|1| +|Botón Derecho del Ratón|2| +|Botón central del Ratón|4| +|Retroceso|8| +|Tabulador|9| +|Enter|13| +|Shift (ambos)|16| +|Ctrl (ambos)|17| +|Pausa|19| +|Bloq. Mayús|20| +|Escape|27| +|Barra de Espacio|32| +|Re. Pág|33| +|Av. Pág|34| +|Fin|35| +|Inicio|36| +|Izquierda (flecha)|37| +|Arriba (flecha)|38| +|Derecha (flecha)|39| +|Abajo (flecha)|40| +|Insert|45| +|Supr|46| +|0|48| +|1|49| +|2|50| +|3|51| +|4|52| +|5|53| +|6|54| +|7|55| +|8|56| +|9|57| +|A|65| +|B|66| +|C|67| +|D|68| +|E|69| +|F|70| +|G|71| +|H|72| +|I|73| +|J|74| +|K|75| +|L|76| +|M|77| +|N|78| +|O|79| +|P|80| +|Q|81| +|R|82| +|S|83| +|T|84| +|U|85| +|V|86| +|W|87| +|X|88| +|Y|89| +|Z|90| +|Botón de Windows Izquierdo|91| +|Botón de Windows Derecho|92| +|Botón de Menú de Aplicacion|93| +|0 (teclado numérico)|96| +|1 (teclado numérico)|97| +|2 (teclado numérico)|98| +|3 (teclado numérico)|99| +|4 (teclado numérico)|100| +|5 (teclado numérico)|101| +|6 (teclado numérico)|102| +|7 (teclado numérico)|103| +|8 (teclado numérico)|104| +|9 (teclado numérico)|105| +|* (teclado numérico)|106| +|+ (teclado numérico)|107| +|- (teclado numérico)|109| +|. (teclado numérico)|110| +|/ (teclado numérico)|111| +|F1|112| +|F2|113| +|F3|114| +|F4|115| +|F5|116| +|F6|117| +|F7|118| +|F8|119| +|F9|120| +|F10|121| +|F11|122| +|F12|123| +|Bloq. Num|144| +|Bloq. Despl|145| +|Shift Izquierdo|160| +|Shift Derecho|161| +|Ctrl Izquierdo|162| +|Ctrl Derecho|163| +|Menu Izquierdo|164| +|Menu Derecho|165| +|´|186| +|+|187| +|,|188| +|\-|189| +|.|190| +|}|191| +|Ñ|192| +|'|219| +|\||220| +|¿|221| +|{|222| +|<|226| - \ No newline at end of file + \ No newline at end of file diff --git a/es/table.hhc b/es/table.hhc index da92f25..04e465d 100644 --- a/es/table.hhc +++ b/es/table.hhc @@ -11,10 +11,6 @@