Jump to content

4eli6

Members
  • Posts

    10
  • Joined

  • Last visited

Everything posted by 4eli6

  1. im sorry 

    i have learned my lesson

    this is my first time trolling in mta discord server

    and this is the last time

    and this was the first time doing this , can you give me another chance (please) ? 

    and I'm so sorry 🌹

    i didn't read the last part sorry 

    Read more  
  2. get the txd file of the model and then get the dff file of the model and the col of the model (i dont think you realy need to get the col file of the model) then make a resource put your files in the resource and add them in the meta.xml etc: ```<meta> <script src="client.lua" type="client" /> <file src="your_dff_file_name.dff" /> <file src="your_txd_file_name.txd" /> </meta> ``` then make the client file and paste this into it function onClientResourceStartReplaceModels() local modelsToReplace = { { -- replace object (all object IDs here: https://dev.prineside.com/en/gtasa_samp_model_id/) colFile = "your_col_file_name.col", -- if there is not col file then delete this part txdFile = "your_txd_file_name.txd", dffFile = "your_dff_file_name.dff", modelID = 1337, -- go to the map editor or try to get the tree model id alphaTransparency = false, filteringEnabled = true, } } for assetID = 1, #modelsToReplace do local modelData = modelsToReplace[assetID] local modelCol = modelData.colFile local modelTxd = modelData.txdFile local modelDff = modelData.dffFile local modelID = modelData.modelID if (modelCol) then local colData = engineLoadCOL(modelCol) if (colData) then engineReplaceCOL(colData, modelID) end end if (modelTxd) then local filteringEnabled = modelData.filteringEnabled local txdData = engineLoadTXD(modelTxd, filteringEnabled) if (txdData) then engineImportTXD(txdData, modelID) end end if (modelDff) then local dffData = engineLoadDFF(modelDff) if (dffData) then local alphaTransparency = modelData.alphaTransparency engineReplaceModel(dffData, modelID, alphaTransparency) end end end end addEventHandler("onClientResourceStart", resourceRoot, onClientResourceStartReplaceModels) read this script then past it and thats it i think this should work
  3. hello there ! im here to help you you can try using anti-virus or scan your pc for viruses or [removed by staff]
  4. get the lua script and luac it again i dont think there is any other way
  5. hello there ! i am here to help you you can delete an account by using : removeAccount This function is used to delete existing player accounts. Note : Server-side function want more info about it ? check the mta wiki website : removeAccount - Multi Theft Auto: Wiki
×
×
  • Create New...