Jump to content

Captain Cody

Members
  • Posts

    2,753
  • Joined

  • Last visited

  • Days Won

    18

Everything posted by Captain Cody

  1. After looking at it, the object itself is a vehicle. Try selecting everything and exporting it with (Skip COL) selected, but not the vehicle parts thing.
  2. Well first of all that's Gostown 6, secoundly; Heretrics is running a custom streaming system, also it's a very updated version of the original map. Also this is just a map generated with a convertor, any one could do it. Just not to the extent of how I did it.
  3. I'll check it in a bit, 3ds max takes a while to start
  4. That's what I said previously.
  5. Only some of it was google translate.. I live in state where there's thousands of Spanish speaking people. (My God I hate it)
  6. How much memory does your PC have?
  7. Are you able to open up SA itself and play in single player?
  8. Por favor, puesto esto en la subsección español
  9. Reinstall MTA and see if that helps.
  10. Have you tried turning it off, then back on again?
  11. It's for storage, you can store tables, info, etc. There's a few tutorials as to how to use it scattered around the fourm.
  12. Well as I said it was just an example. and probably doesn't work. Build you code off of this. If you cannot I'll get in SA later and make something that actually works.
  13. Check debug. Make sure the values are right etc.
  14. Quick one, doesn't take into account a lot of things (really not to sure if it works..) but here.. Stuff = {} width = 100 -- "Replace" height = 10 -- "Replace" amountOfDots = 50 -- "Replace" spacing = 2 -- "Replace" widthOfDash = 2 -- "Replace" startPos = 0 startPos2 = 0 function prepStuff () -- PrepTheTables current = 0 currentb = widthOfDash for i=0,amountOfDots do table.insert(Stuff,{current,currentb}) if i == currentb + spacing then current = i currentb = i+ widthOfDash end end end prepStuff () function drawThem() for i,v in pairs(Stuff) do local start = v[1] local tend = v[2] dxDrawLine(startPos+v[1],startPos2,v[1]+v[2],height,tocolor(0,0,0,0)) -- Swap v[1] to startPos2 for vertical end end
  15. Dotted line?? If so I'll have a function for you in a bit.
  16. Not sure if it would be more time efficent or not, but it's possible to create a script that automaticly converts singleplayer code to MTA lua.
  17. Is there a speedometer or something in game? If so, how fast do they go?
  18. https://wiki.multitheftauto.com/wiki/Se ... kedOffBike
  19. Source is predefined. Use another.
  20. Try this then.. local dodo1 = createVehicle ( 593, -3413.4, -65.5, 18, 0, 0, -90 ) function respawn_dodo() setTimer(respawnVehicle, 5000, 1, dodo1 ) end addEventHandler("onVehicleExplode", dodo1, respawn_dodo)
×
×
  • Create New...