Jump to content

Captain Cody

Members
  • Posts

    2,753
  • Joined

  • Last visited

  • Days Won

    18

Everything posted by Captain Cody

  1. Look on community. If not, here's your ultimate resource for MTA scripting - https://wiki.multitheftauto.com/wiki/Main_Page
  2. Well to make it fit you simply down size the textures. A massive chunk of SA textures were originally up to 2k before optimizations.
  3. A large chunk of servers are PvE (Atleast outside of events)
  4. I would recommend using recreating the rendertarget when you switch to MTAs window https://wiki.multitheftauto.com/wiki/OnClientRestore
  5. Relates to the fighting style. https://wiki.multitheftauto.com/wiki/SetPedFightingStyle
  6. A: B.L.A.S.T appears to have died out Q: Why has B.L.A.S.T died out
  7. You cannot, however I'll be releasing a new editor soon that'll solve this
  8. #1 Loading time for VC is 2.7 minutes (I'm working on dropping it) #2 I'd highly recommend waiting until MTA Edit is done to even touch editing on the map.
  9. https://github.com/CodyJL/mta-edit MTA Edit (Editor 2) Alpha, there are many things I need to finish up however it's Chirstmas eve and I'm done with it for the year so there it is. Does not have saving or loading, however that'll come next month. I've worked countless nights trying to get it done by Christmas but there's just so much and I still have a few weeks / months worth of work to put into it.
  10. I'd recommend you just use that map in Default MTA.
  11. Yes it will be public, also; there's already a MTA:VC however it's got no players.
  12. Black Anomaly is an MTA bug, no way I can fix it. Bridge copy is a LOD issue I don't know how to remove it. Link bridge sign is due to the quaternion to Euler porting, I'll fix it when my new editor is done. (Infact I'll be fixing a bunch of bugs as soon as my new editor is done, including those that were in VC to begin with)
  13. Only issue that is not present in VC is the non transparent window bug. Other then that it's almost exactly how VC was (Minus the open world interiors)
  14. You cannot load the map in the editor, I have a new editor coming Chirstmas that'll load it though. Also' what glitches?
  15. First of all, download OBJs from JStreamer and put that in your resources folder. Start it Next, put [VC] in your resources folder and start VC2 (And VCMini)
  16. First of all, Secondly; please take up the 'Stolen' accusations in private.
  17. JStreamer, and there are multiple maps such as VC, LC, ect
  18. I actually fully agree with Vaz, current GUI system is very outdated. While yes you can change skin or whatever many people don't know how to do that; plus CEGUI is slow and lacking a lot of features.
  19. Element data is not that bad when used properly; for a beginner when used with caution element data is just fine. That being said; in the future it's better to make your own element data system to improve performance when systems needing element data start growing.
  20. timers = {} function Salir() if isElement(tableVehicles[source]) then destroyElement(tableVehicles[source]) if timers[source] then killTimer(timers[source]) end timers[source] = setTimer ( removeVehicle, 1000, 1, source ) end end function removeVehicle(player) destroyElement(tableVehicles[player]) tableVehicles[player] = nil end addEventHandler("onPlayerVehicleExit",getRootElement(),Salir) Also, next time please use https://forum.multitheftauto.com/forum/71-scripting/ or the corresponding scripting section for your language (Which from what I can tell is obviously not English.)
×
×
  • Create New...