Jump to content

Chris_Canfield

Members
  • Posts

    7
  • Joined

  • Last visited

Chris_Canfield's Achievements

Newbie

Newbie (4/54)

0

Reputation

  1. mhm but in a youtube video I saw them replacing wheels, so therefor, it is possible.
  2. So I would do: function installAuto ( startedResource ) if ( startedResource == getThisResource() ) then txd = engineLoadTXD ( "data/wheeltexture.txd" ) engineImportTXD ( txd, idofwheelhere ) dff = engineLoadDFF ( "data/wheeltexture.dff", andhere ) engineReplaceModel ( dff, alsohere ) end end addEventHandler ( "onClientResourceStart", getRootElement(), installAuto ) ?
  3. I found out the problem, I didnt have mapmanager in the admin group so it kept denying map change
  4. Ok so I have car mods and skin mods but how would I replace rims? (aka tires) Eg of skin mod function onResourceStart() --BREEN BREEN = engineLoadTXD ( "skins/113.txd" ) engineImportTXD ( BREEN, 113 ) end addEventHandler("onClientResourceStart", getResourceRootElement(getThisResource()), onResourceStart) Eg of car mod function installAuto ( startedResource ) if ( startedResource == getThisResource() ) then txd = engineLoadTXD ( "data/copcarvg.txd" ) engineImportTXD ( txd, 598 ) dff = engineLoadDFF ( "data/copcarvg.dff", 598 ) engineReplaceModel ( dff, 598 ) end end addEventHandler ( "onClientResourceStart", getRootElement(), installAuto ) So what would I do to make a tire mod?
  5. Wait do I need to have MTA:SA Race? Like the server mode?
  6. Trying to host... and ive tried it on all versions.
  7. Ok so I try to run race, all good, start up all the stuff, all good, select a map, fail! It starts a map then stops and says "ERROR loading map, no meta.xml... BUT THERE IS A META.XML!!!!! Why won't it run? please help.
×
×
  • Create New...