Jump to content

JR10

Retired Staff
  • Posts

    2,947
  • Joined

  • Last visited

Everything posted by JR10

  1. JR10

    [Web] Scoreboard

    Check dxscoreboard resource, it got one.
  2. You must get the team vehicles variable, ways of doing this: getElementByID -- setElementData getElementData If you have a table with the team vehicles then: function setColors() for i, car in ipairs( teamVehicles ) do setVehicleColor ( car, 255 , 255 , 0 ) end end setColors() --setTimer( setColors, 500, 0 )
  3. Add another one, Is it too hard, to do seconds * 1000? minutes * 60000? hours * 3600000? days * 86400000? Is it hard to use a calculator? Actually, it's milliseconds.
  4. Yea.
  5. Syntax: bool setVehicleColor ( vehicle theVehicle, int r1, int g1, int b1 ) r1, g1, b1: Three integers indicating the red, green and blue components of the first (main) color for the vehicle So yellow is 255 , 255 , 0 local teamGyg = createTeam ( "~GYG~", 255, 255, 0 ) function setColors() for i, car in ipairs( getElementsByType( "vehicle" ) ) do --local col1, col2, col3 = getTeamColor ( teamGyg ) setVehicleColor ( car, 255 , 255 , 0 ) end end setTimer( setColors, 500, 0 )
  6. stole dxscoreboard: https://community.multitheftauto.com/index.php?p= ... ls&id=2965
  7. Not the one in the picture.
  8. car mod https://community.multitheftauto.com/index.php?p= ... ls&id=2942
  9. Thanks.
  10. Thanks. It's one of my early creations, when I was still getting ahead of scripting.
  11. JR10

    IRC Channel Help !

    Choose another server.
  12. Wrong section.
  13. In mtaserver.exe, type delaccount accountName.
  14. JR10

    Problems

    Not a new function. Cadu, I didn't notice your post.
  15. JR10

    Problems

    guiSetEnabled
  16. JR10

    Shaders

    Colors and alpha shader: Self made nitros: eXTreme, what world texture did you apply the shader to?
  17. The resource somehow is fucked up, it outputs more than one message, I don't have the uncompiled version. I don't know why, but I tested it alot in 1.0.5 and 1.1, it worked fine.
  18. Thanks.
  19. There is settings in samap.settings.client.lua, You move with arrows (default), you adjust height with num_add, and num_sub, adjust speed with lalt, and lshift. All that can be edited.
  20. That was a month ago.
  21. It's not much, don't get your hopes too high. You can just move around, adjust height, put new locations.
  22. San Andreas Map v1.0.0 Something I made from a while ago, Allow you to explore the map, you can move with arrows, adjust height. Features: Free movement, with speed adjustment. Locations Selector, with a table for adding more. Zone viewer. Copy coordinates. Notes: The command is /samap, to trigger viewing the map. Screen shots: Download Any Ideas, bugs, questions post them please.
  23. Iniesta. Who won the last African Cup Of Nations?
  24. setPlayerTeam -- Sets the player team createTeam --Creates a team onPlayerLogin --You must use this to move a player in a team. isObjectInACLGroup --Check is user in Admin group.
  25. JR10

    Shaders

    https://wiki.multitheftauto.com/wiki/Shader_examples Download the Texture names resource.
×
×
  • Create New...