Jump to content

MatreN

Members
  • Posts

    32
  • Joined

  • Last visited

About MatreN

  • Birthday 20/06/1998

Details

  • Location
    Turkey/Istanbul
  • Occupation
    Scripter, Hardware Specialist,
  • Interests
    Software, Scirpt, Desing, Hardware,

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

MatreN's Achievements

Rat

Rat (9/54)

0

Reputation

  1. Hello guys, how do i rotate car 360 degrees so endlessly?
  2. I'm sorry, I am very careless in these jobs. XD
  3. 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)
  4. its working, but it goes through the object. @Tut
  5. 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.
  6. i try to it did not work @gubi
  7. no .txd files, only .dff, .col.
  8. Hi guys, I uploaded samp objects to my own mapping server, but they look white.
  9. guys need samp 0.3 objects, where can I find it
  10. 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
  11. Hello friends, I don't have see a water script.
  12. I want to add a marker to this, but I don't know @stPatrick
  13. 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.
×
×
  • Create New...