Jump to content

MatreN

Members
  • Posts

    35
  • Joined

  • Last visited

Everything posted by MatreN

  1. https://imgur.com/a/xG0MAqN Hello dear racers & players, I’m happy to share a few important updates about our project and its next big step. The project is progressing very well overall. A lot of time and effort has gone into developing and polishing the gamemodes. At the start of the Beta, the server will include the following gamemodes: DM / DD / Race / Shooter / Hunter / Trials / Garage / Training More content and improvements are already planned for the future, but for now, our focus is on making the Beta as stable and enjoyable as possible. I’m excited to announce that the Beta will officially start next Saturday at 20:00 CET. Please keep in mind that this is a Beta version, so bugs and issues may occur. If you encounter any problems, feel free to report them here on our Discord so we can fix them as quickly as possible. Thank you all for your support and patience — we can’t wait to see you on the server! With love
  2. It does not record the time I get in Toptime. but when I Register/Login, the time is recorded in Toptime Help me please!!!
  3. Hello Friends, I bought a VDS server but everything is fine on the server, but the maps are loading very slowly. Gamemode: Race DM
  4. Hello guys, how do i rotate car 360 degrees so endlessly?
  5. I'm sorry, I am very careless in these jobs. XD
  6. The collision on the object is true, but it is passed through inside the object. function replaceObject() txd = engineLoadTXD ( "MRoadTwist15DegR.txd" ) engineImportTXD ( txd, 4150) dff = engineLoadDFF ( "MRoadTwist15DegR.dff", 4150) engineReplaceModel ( dff, 4150) col = engineLoadCOL( "MRoadTwist15DegR.col", 4150) engineReplaceCOL ( dff, 4150) end addEventHandler ( "onClientResourceStart", getResourceRootElement(getThisResource()), replaceObject)
  7. its working, but it goes through the object. @Tut
  8. 1. I extract cs_ebridge.txd from the gta3.img file and changed the name of the file, I did Example MRoadTwist15DegR.txd. 2. And then I wrote it into meta.xml and scripts.lua. I then tried it in another way. MRoadTwist15DegR.col MRoadTwist15DegR.dff cs_ebridge.txd I tried as. But it didn't work.
  9. i try to it did not work @gubi
  10. no .txd files, only .dff, .col.
  11. Hi guys, I uploaded samp objects to my own mapping server, but they look white.
  12. guys need samp 0.3 objects, where can I find it
  13. Help me pls!
  14. Hello Friends I wrote an Invisible object script. But invisible objects are not visible, there is no function. https://www.imageupload.net/image/Lz6wb Gamemode : [DM] Race local invisibles = {} local enabled = true local airport = { 8171, 8172, 8355, 8356, 8357, 3458, 8838, 8558, 8557 } function onMapStarted() invisibles = {} setTimer(getInvisibleObjects, 2000, 1) end addEventHandler("onClientMapStarting", getRootElement(),onMapStarted) function getInvisibleObjects() for i, o in ipairs(getElementsByType("object")) do if(getObjectScale(o) == 0 or getElementAlpha(o) == 0)then table.insert(invisibles, o) else local oid = getElementModel(o) for k, id in ipairs(airport)do if(oid == id)then table.insert(invisibles, o) end end end end update() end bindKey("f10", "up", function() --if not getElementData(localPlayer,"login") then return end enabled = not enabled if(enabled)then create("Invisible Objects are now","visible", 0, 255, 0) else create("Invisible Objects are now","invisible", 255, 0, 0) end update() end ) function update() if(enabled)then for i, o in ipairs(invisibles)do setObjectScale(o, 1) setElementAlpha(o, 255) setElementDoubleSided(o, true) end else for i, o in ipairs(invisibles)do setObjectScale(o, 0) setElementAlpha(o, 0) setElementDoubleSided(o, false) end end end
  15. Hello friends, I don't have see a water script.
  16. I want to add a marker to this, but I don't know @stPatrick
  17. Hello guys, I want to switch black and white screen, but I don't know how to do it, can you help me? I want it to work when we touch the marker.
  18. Thank you bro
  19. Would you rewrite this to me? I really did not understand anything. I also couldn't run what was Marker. @XaskeL
  20. ty
  21. Look 46 second
  22. Hello friends I want to give 3d glitch effect when the marker is touched. How will I do.
  23. I have a water script but water is showing that way. What should I do.
  24. I am not aware, I have to be careful with this. ?
×
×
  • Create New...