Jump to content

xXMADEXx

Members
  • Posts

    2,718
  • Joined

  • Last visited

Everything posted by xXMADEXx

  1. xXMADEXx

    Drivers

    Hey, I recently re-installed windows 7 on my desktop, but now I cannot find the windows 7 drivers. I have an HP Pavilion p6-2376. I need: - Video Driver - Network (Ethernet) Driver - Audio Driver thanks.
  2. setTimer setPlayerWantedLevel
  3. Plain & Simple ((N Server: addEventHandler ( "onPlayerLogin", root, function ( ) triggerClientEvent ( source, 'onplayerclientlogin', source ) end ) --client: addEvent ( 'onplayerclientlogin', true ) addEventHandler ( "onplayerclientlogin", root, function ( ) playSound ( "winsound.mp3" ) end )
  4. Why don't use just put all the setElementData's in the same timer? It'll be more efficient .
  5. If you want, i can help you via a Skype call. Just send me a PM of your skype.
  6. [mta directory]/server/mods/deathmatch/resources
  7. Im not sure, but i really hope it comes back online because I also have a server with them
  8. onClientGUIClick works on all gui elements. (Post your script)
  9. -- Client addEventHandler ("onClientGUIClick", root, function ( ) if ( source == GUIEditor.button[1] ) then local row, col = guiGirdListGetSelectedItem ( GUIEditor.gridlist[1] ) if ( row ~= -1 and col ~= 0 ) then radio ( ) end end end ) function radio ( ) triggerServerEvent ( "StartTheSound", localPlayer ) end addEvent ( "StartTheSound_C", true ) addEventHandler ( "StartTheSound_C", root, function ( ) if not isElement ( sound ) then local x, y, z = getElementPosition ( localPlayer ) sound = playSound3D( 'http://www.181.fm/playing.php?station=181-party&embed=1', x, y, z ) end end ) -- Server addEvent ( "StartTheSound", true ) addEventHandler ( "StartTheSound", root, function ( ) triggerClientEvent ( root, "StartTheSound_C", root ) end )
  10. Your code really didn't make much scenes. local myMarker = createMarker ( 928, 1590, -16.91, "arrow", 1.0, 255, 255, 0, 0 ) function warpToArena(p , matchingDimension ) if ( getElementType ( p ) == 'player' and matchingDimension) then spawnPlayer (p, 1099.67, 1600.73, 13.05, 0, 0, 0, 0) fadeCamera (p, true) setCameraTarget (p, p) end end addEventHandler("onMarkerHit",myMarker,warpToArena)
  11. You could also use SQLite, it might work a little faster.
  12. cool, good luck with this project.
  13. xXMADEXx

    text

    It could be on the server-side by simply using the player the is logging in. addEventHandler ( "onPlayerLogin", root, function ( ) showChat ( source, true ) end ) addEventHandler ( "onPlayerJoin", root, function ( ) showChat ( source, false ) end )
  14. Use: triggerServerEvent triggerClientEvent
  15. They use the fetchRemote function on the client side. Also, the downloadFile function can be found on the MTA community. (here)
  16. I'd be willing to help, although, are you trying to just create a few scripts/resources or an entire gamemode?
  17. xXMADEXx

    [Question]

    Don't give up because you get frustrated. 1. stop server 2. put this into your ACL.xml <right name="command.mute" access="false"></right> <right name="command.unmute" access="false"></right> 3. start server
  18. hum.. No thanks. I'll do it for real $.
  19. Would it be a domain (such as http://www.revolution-scripts.com) or a free domain? (like http://www.ros.site50.net) RoS runs on PHP, HTML, CSS, JavaScript, and MySQL.
  20. xXMADEXx

    Help

    there is a script on the MTA community website that does this..
  21. xXMADEXx

    Help resource

    so what button are you trying to modify? The Login/Register button or the guest button?
×
×
  • Create New...