Jump to content

xXMADEXx

Members
  • Posts

    2,718
  • Joined

  • Last visited

Everything posted by xXMADEXx

  1. You need to edit the scoreboard code to make your own animation..
  2. xXMADEXx

    Drop Camera

    So, you are trying to make a kill-cam type of script to watch the killer?
  3. I was reading MTA wiki and it says this:
  4. use onPlayerLogin and replace "thePlayer" with "source."
  5. Search MTA community or make it yourself.
  6. xXMADEXx

    Head Rotation

    You need to trigger the client event for all of the players.
  7. You could insert all the players into a database, then on your website select all the players out of the database.
  8. xXMADEXx

    help me pls

    means you are missing an end statement.
  9. xXMADEXx

    Edit boxes

    Still, i've never seen a resource using css.. An example would be nice. Maybe the resource haves an http file and that uses the css?
  10. Usted debe publicar en la sección española.
  11. Don't think so, but if there is it'll be on wiki.
  12. I'm not really sure if you can have the money/health/armor/weapon visible when you change the camera view.
  13. That wouldn't do anything because the server decompresses them, so it'd be the same result..
  14. How about a little more details rather than just "Join my server."
  15. There is a 3D text resource on mta community.
  16. Can't really understand... Something like this?
  17. Well, this is kind of a weird way of doing it but im sure it would work. [[NOT TESTED]] local bankMarkers = { {562.79998779297, -1254.5999755859, 16.89999961853, 284, false}, {1001.700012207, -929.40002441406, 41.799999237061, 278.74658203125, false} } local blips = { } function executeCheck ( ) for i, v in ipairs ( bankMarkers ) do local str = table.concat ( { v[1], v[2], v[3], v[4] }, "," ) if ( v[5] ) then bankMarkers[i][5] = false if ( isElement ( blips[str] ) ) then destroyElement ( blips[str] ) end else bankMarkers[i][5] = true if ( not isElement ( blips[str] ) ) then blip[str] = createBlip ( v[1], v[2], v[3] ) end end end end
  18. use the event onClientRender or onClientPreRender. (onClientPreRender will probably be better.)
  19. You don't need HTML at all... However, you have to have a web host. fetchRemote -- on client side
  20. Hey guys. For some reason whenever I open up server browser my game, it becomes very laggy, probably something like 2FPS. I tried reinstalling MTA but that didn't fix anything. Thanks.
  21. xXMADEXx

    Bass Error

    Use this: function StopR ( ) if ( isElement ( sound ) ) then destroyElement ( sound ) end end
  22. Not sure but I think it could be done in Lua.
×
×
  • Create New...