Jump to content

Dynus

Members
  • Posts

    54
  • Joined

  • Days Won

    2

Dynus last won the day on March 6 2024

Dynus had the most liked content!

1 Follower

Recent Profile Visitors

5,454 profile views

Dynus's Achievements

Snitch

Snitch (10/54)

7

Reputation

  1. I used to have the same problem is caused by Steam 3.0 version. Some archives were removed on Steam 3.0 version. GTA 1.0 doesn't have problems as I remember. https://gtamods.com/wiki/San_Andreas_Versions
  2. Coloca uma permissão de ACL. general.tab_options
  3. local spawn = createMarker(0, 0, 0, "cylinder", 1, 255, 255, 255, 255) addEventHandler("onMarkerHit", spawn, function(element) if getElementType(element) == "player" then if isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(element)), aclGetGroup("SAMU")) then setElementModel(element, 274) end end end) addEventHandler("onMarkerHit", spawn, function(element) if getElementType(element) == "player" then if isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(element)), aclGetGroup("PM")) then setElementModel(element, 280) end end end)
  4. Coloque o código abaixo em servidor: local spawn = createMarker(0, 0, 0, "cylinder", 1, 255, 255, 255, 255) addEventHandler("onMarkerHit", spawn, function(element) if getElementType(element) == "player" then if isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(element)), aclGetGroup("SAMU")) then if getPedOccupiedVehicle(element) == false then local x, y, z = getElementPosition(element) local v = createVehicle(551, x, y, z) warpPedIntoVehicle(element, v) end end end end) addEventHandler("onMarkerHit", spawn, function(element) if getElementType(element) == "player" then if isObjectInACLGroup("user." .. getAccountName(getPlayerAccount(element)), aclGetGroup("PM")) then if getPedOccupiedVehicle(element) == false then local x, y, z = getElementPosition(element) local v = createVehicle(551, x, y, z) warpPedIntoVehicle(element, v) end end end end)
  5. You should use client instead of source in the addEventHandler.
  6. You should reinstall the server, I use this link below. https://nightly.multitheftauto.com/mtasa_x64-1.6-rc-22410-20240301.exe
  7. Add a larger column to the database: VARCHAR(64)
  8. if sha256(pass) == result[1]["password"] then print("Sikeres bejelentkezés!") else print("Hibás jelszó!") end
  9. https://wiki.multitheftauto.com/wiki/CreateColCuboid
  10. getAccountsBySerial(serial)
  11. Dynus

    Hotkey

    We have these buttons: escape backspace tab lalt ralt enter space pgup pgdn end home insert delete lshift rshift lctrl rctrl [ ] pause capslock scroll ; , - . / # \ =
  12. Dynus

    Hotkey

    The accepted keys: https://wiki.multitheftauto.com/wiki/Key_names
  13. Dynus

    Hotkey

    Where do you need help?
  14. dbExec(connection,"UPDATE interiors SET megujitva = CURRENT_TIMESTAMP(6) WHERE id = ?",idd)
  15. Can you show the database structure?
×
×
  • Create New...