Referință de controale
Cauți orice control pentru IsControlJustPressed și DisableControlAction: indexul, numele INPUT_, tasta implicită de tastatură și butonul de gamepad. Apeși o tastă pe tastatură ca să vezi toate controalele legate de ea și copiezi un snippet gata făcut sau o variantă cu RegisterKeyMapping.
Această unealtă și notele ei sunt deocamdată în engleză.
How controls work
Every game action has a fixed control index. IsControlJustPressed(0, 51) asks "did the player just press whatever key is bound to INPUT_CONTEXT", which is E on keyboard and DPAD RIGHT on a pad by default. The keys in the table are the defaults. If a player rebinds a GTA action in the settings, the index keeps working and follows their key.
Many indexes share a key. E is INPUT_CONTEXT, INPUT_PICKUP, INPUT_TALK, INPUT_VEH_HORN and more, and which one fires depends on what the player is doing (on foot, in a vehicle, in a menu). Use the key finder above to see every control on a key before you pick one for your script.
The first argument: input group
| Value | Name | Use it for |
|---|---|---|
0 | PLAYER_CONTROL | Almost everything. On foot, driving, weapons. |
1 | CAMERA_CONTROL | Camera inputs. You rarely need it. |
2 | FRONTEND_CONTROL | Menus and the pause screen. Keeps working when 0 is blocked by a frontend menu. |
The FiveM docs only list 0 and 2. 1 exists in the game's enum but is not documented there. If a check does nothing inside a NUI or pause menu, try 2.
Control indexes vs RegisterKeyMapping
- Control indexes are the game's own actions. Good for reacting to vanilla input (block attacking in a safe zone, detect when someone presses E near a door). They need a
Wait(0)loop and you cannot give your feature a key of its own. - RegisterKeyMapping adds your command to Settings, Key Bindings, FiveM. Each player can change the key, the choice is saved on their machine, and the command fires on key down (
+cmd) and key up (-cmd) with no loop. Use it for menus, radios, emotes and anything else your resource adds.
The default key of a mapping only applies the first time a player sees it. Changing it later in your script does not move existing players, so pick it carefully.
Disabling controls
DisableControlAction only lasts one frame, so call it every tick. While a control is disabled the normal IsControlJustPressed returns false. Read it with IsDisabledControlJustPressed orIsDisabledControlPressed instead. DisableAllControlActions(0) blocks the whole group, then re-enable what you need with EnableControlAction.
Shareable links
The URL follows the page: ?q= for the search, ?key= for the selected key (for example?key=E, ?key=LSHIFT or ?key=pad:DPAD RIGHT) and ?id= for the open control.
Data
Data: FiveM docs (game references, controls), 361 controls from index 0 to 360. Keyboard keys are the QWERTY defaults and gamepad buttons use Xbox names, as listed there. Key mapper names in the RegisterKeyMapping snippet come from the FiveMinput mapper parameter ids.
Mai multe unelte referințe
Browser de modele & hashuri
Cauți peste 900 de vehicule, peste 1100 de peduri și toate armele, cu poze, nume de spawn și hashuri.
Hartă interactivă
Toată harta GTA V în browser: o hartă 2D cu coordonate și o lume 3D prin care te plimbi cu freecam sau pe jos.
Browser de animații
Redă animații din GTA V pe un ped freemode în 3D. Toate dicționarele și clipurile din joc, plus scene sincronizate cu doi pezi și props-urile lor.
