Jump to content

Captain Cody

Members
  • Posts

    2,753
  • Joined

  • Last visited

  • Days Won

    18

Everything posted by Captain Cody

  1. Gostown, 100% custom map.
  2. Dropping through here.
  3. There should be a config client side, C:\Program Files (x86)\MTA San Andreas 1.5\mods\deathmatch\resources\scoreboard There's a file called settings.xml, reset scale to 1.
  4. I'll be releasing a custom map editor along with quite a few map conversions some time soon.
  5. Please first of all use debugscript 3 and find which error message is popping up to narrow it down; then secondly post in the scripting section of the forums for support.
  6. [3DSMax] Radiosity Advanced Lighting. - Tutorials - GTAForums Here's a quite good tutorial.
  7. I'd recommend you prelight them; gives them a more natural look and makes them blend a bit better.
  8. AllowedTeams = {} AllowedTeams["TeamName"] = true function gluePlayer(slot, vehicle, x, y, z, rotX, rotY, rotZ) if getPlayerTeam(source) then if AllowedTeams[getTeamName(getPlayerTeam(source))] then attachElementToElement(source, vehicle, x, y, z, rotX, rotY, rotZ) setPlayerWeaponSlot(source, slot) end end end addEvent("gluePlayer",true) addEventHandler("gluePlayer",getRootElement(),gluePlayer) function ungluePlayer() detachElementFromElement(source) end addEvent("ungluePlayer",true) addEventHandler("ungluePlayer",getRootElement(),ungluePlayer)
  9. Just walkin on through here.
  10. addCommandHandler ( "remove", function ( ) local theVehicle = getPedOccupiedVehicle ( localPlayer ) if ( theVehicle ) then setVehicleComponentVisible(theVehicle, "bump_front_dummy" , false) end end ) .....
  11. Not enough people in the MTA team currently. Is the usual response.
  12. Actually @Simple01 this is very optimized people get better FPS on my server's map then they get in standard SA.
  13. Weapon customization is easy; you just have to make your own weapon system.
  14. Bad weapon sync is due to bad pings.
  15. Anything is possible in regular SA; just requires lots of work. Here's a good example of what's possible these days in MTA.
  16. Replace line 17 with guiGridListSetItemColor(listatodoslosgrupos, row, i, 0, 0, 255)
  17. Here's an ancient test of my first attempt back in 2015
  18. Looks like it requires a change in ambient lighting, which MTA does not support atm.
  19. Doesn't it need an administrator email thing set i the config?
  20. LC has hundreds of shared models with SA.
  21. As in do one preload instead of dynamicly loading them on the go. Also for LODS you can assign them using createObject with lod enabled, and setLowLODobject?
  22. Tomorrow I'll write a script to automatically do it (You just need to make sure to save the map as a .map file for this to work)
  23. Why don't they just have a static for object count and what not, but have it so for stuff like the water (Where not all servers will be using it) on join restart the MTA client.
  24. LC uses the same models as SA, so just replace ids in the .map file with SAs ids.
  25. That's compiled of hundreds of cols and DFFs, assigned to aprox 76 TXDs.
×
×
  • Create New...