Jump to content

Jaysds1

Members
  • Posts

    4,961
  • Joined

  • Last visited

Everything posted by Jaysds1

  1. OK WHAT DID YOU DO? (ANY SCRIPT FOR VEHICLE LIKE (onPlayerVehicleEnter).....)
  2. HERE: MySQL https://wiki.multitheftauto.com/wiki/Mysql Account https://wiki.multitheftauto.com/wiki/Account XML https://wiki.multitheftauto.com/wiki/Xml
  3. t's ok I'll just make it!!!
  4. Jaysds1

    Problems

    OK Does anyone know how to create a marker in an interior in Lua File (.lua)?
  5. Jaysds1

    Problems

    NOW IT WORKS, THANKS Solidsnake AND THANKS FOR THOSE WHO TRIED TO HELP!!!
  6. Jaysds1

    Problems

    like I said I got it from another resource!!!
  7. Jaysds1

    Problems

    I actually got most of it from another resource!!!
  8. Jaysds1

    Problems

    are you sure you don't need to put a "then" after ???AND EVEN WHEN I PUT IT, IT STILL DOESN'T WORK!!!
  9. Jaysds1

    Problems

    I am using my brain I'm trying to learn scripting easier by using examples from the wiki. if you looked at my Login GUI resource then you could see that I used wiki...... AND THE (f) button DOESN'T WORK WHEN I TRY TO TURN OFF THE ENGINE!!!
  10. ok!!! WHAT DO YOU WANT ME TO USE: MYSQL ACCOUNT XML ???
  11. So you want me to make a system that saves gangs?
  12. no, you don't need any interior resource, it only shows when you go close to it. Ya I went in it to it's actually good, I'll make a resource for you....
  13. GIVE ME 1 Week for both resources!!!
  14. I downloaded it to and I figured where the first bank was but the resource didn't let/allow me to add more locations!!!
  15. I will make resources for free!!! JUST TELL ME WHAT YOU WANT, THEN I'LL TRY MAKING IT!!!!
  16. here is a resource that i got from the community, you could create a gate in-game and use the buttons to move it (right, left, rotate, up, down) I used it and it works fine for meeee. HERE: https://community.multitheftauto.com/index.php?p=resources&s=details&id=614 sorry I couldn't get the lua code be cuz I have to go now.... Later I'll get you da lua code......
  17. I just needed help bindkeys right now... plus I just want to be a admin on your server..... not a scripter.
  18. wooowww, I never heard or new about this......
  19. i think when a player crashes into the car then it is hitted...????
  20. ok do you want it in xml file, lua file?
  21. Jaysds1

    Problems

    thnx, My light and engine script doesn't work. WHY? addEvent ( "bindKeys",true ) addEventHandler ( "bindKeys", getRootElement(), function() -- Initilize Player Element Data local players = getElementsByType ( "player" ) for k,p in ipairs(players) do if player == source then bindKey ( "f", "down", engineOffOn ) bindKey( "l", "down", changeLightsState ) end end end ) addEvent ( "unbindKeys",true ) addEventHandler ( "unbindKeys", getRootElement(), function() -- Initilize Player Element Data local players = getElementsByType ( "player" ) for k,p in ipairs(players) do if player == source then unbindKey ( "f", "down", engineOffOn ) unbindKey( "l", "down", changeLightsState ) end end end ) function engineOffOn() local vehicle = getPedOccupiedVehicle( source ) if leftseat == 1 then setVehicleEngineState ( vehicle, false ) else setVehicleEngineState ( vehicle, true ) end end function changeLightsState() local vehicle = getPedOccupiedVehicle( source ) if leftseat == 1 then setVehicleOverrideLights( vehicle, 2 ) else setVehicleOverrideLights( vehicle, 1 ) end end
  22. Jaysds1

    Problems

    Do you have to put addEventHandler ( ....., getRootElement(), ......) after every function?
×
×
  • Create New...