Jump to content

FileEX

Helpers
  • Posts

    55
  • Joined

  • Last visited

  • Days Won

    4

FileEX last won the day on May 21 2024

FileEX had the most liked content!

1 Follower

Member Title

  • Forum Helper

Details

  • Gang
    Grove Street
  • Location
    Poland
  • Occupation
    Cop
  • Interests
    Computer Science, Programming, Reverse engineering

Recent Profile Visitors

3,254 profile views

FileEX's Achievements

Snitch

Snitch (10/54)

12

Reputation

  1. Stabilize your internet connection
  2. How exactly does the crash manifest? Does MTA just close without a message, or do you get a crash dialog box? If there’s a dialog box, attach a screenshot of it. Try this version of MTA: https://nightly.mtasa.com/mtasa-1.6-rc-23681-20251221.exe
  3. Run mtadiag ( ) and paste results here
  4. FileEX

    How To Fix This?

    It’s likely that the server you’re playing on has an issue with a model that is corrupted.
  5. FileEX

    How can fix this?

    Wait for the update or download older version: https://nightly.mtasa.com
  6. Use setVehicleModelWheelSize or setVehicleWheelScale
  7. FileEX

    gta3.img

    There are no errors with reading the gta3.img file. If there are any, they only affect you, so you'll need to fix it on your own
  8. local function toggleLight(player) local plane = getPedOccupiedVehicle(player) if (plane) then local lightMarker = getElementData(plane, "lightMarker") if (isElement(lightMarker) then -- disable light destroyElement(lightMarker) removeElementData(plane, "lightMarker") return end -- enable light local x,y,z = getElementPosition(plane) local lightMarker = createMarker(x,y,z - 1, 'corona', 1, 255,255,255,150) attachElements(lightMarker, plane, 4, 3, -2) setElementData(plane, "lightMarker", lightMarker, false) end end addEventHandler('onVehicleEnter', root, function(seat,plr) if (seat == 0 and getElementModel(source) == 553) then bindKey(plr, "3", "down", toggleLight) end end) addEventHandler('onVehicleExit', root, function(seat,plr) if (seat == 0 and getElementModel(source) == 553) then unbindKey(plr, "3", "down", toggleLight) end end)
  9. Jak sama nazwa wskazuje numer seryjny (serial) tego urządzenia został zablokowany albo przez MTA albo przez sam serwer.
  10. The ability to use LODs with buildings is pending approval and merging on the MTA repository https://github.com/multitheftauto/mtasa-blue/pull/3371 Buildings are still under work and development
  11. You can also create a bike, set its alpha to 0 and attach it to a plane and turn on the lights via setVehicleOverrideLights
  12. The engineImportTXD function takes only one argument as ID. This is according to the wiki and the source code of this function (https://github.com/multitheftauto/mtasa-blue/blob/1f2c6e75fb71b01f0053f151e766a232ed33692b/Client/mods/deathmatch/logic/luadefs/CLuaEngineDefs.cpp#L608)
  13. I think some resource had it, but I'm not sure. Generally it is possible, but you would need to have ped paths from GTA SA
  14. When it comes to NPCs, these resources will interest you https://community.multitheftauto.com/index.php?p=resources&s=details&id=14650 https://community.multitheftauto.com/index.php?p=resources&s=details&id=15370 As for voice chat, it is available. https://community.multitheftauto.com/index.php?p=resources&s=details&id=18795 https://wiki.multitheftauto.com/wiki/Resource:Voice When it comes to saving information, you can use SQL or MySQL. https://forum.multitheftauto.com/topic/32423-tut-sqlite/ https://forum.multitheftauto.com/topic/112941-tut-how-to-create-id-system-by-database/ In the "tutorials" section you will find a lot of useful information
  15. Sometimes interpolateBetween does some weird rounding. Try manual interpolation money = lastMoney + (newMoney - lastMoney) * progress; Or use what Tekken provided
×
×
  • Create New...