-
Posts
4,961 -
Joined
-
Last visited
Everything posted by Jaysds1
-
Can you download and run this MTADiag then post the generated MTA:PasteBin url here please.
-
Sorry, but this isn't part of MTA, please reply to the "main" topic for this program. viewtopic.php?f=108&t=33905
-
Do you start map editor through MTA Client or do you start up a server and started "editor"? This would also be helpful. BTW, please download and run this MTADiag, then post the generated MTA:PasteBin url here please.
-
Well, there is a similarity with the upload speed and the working upload size, as he did say 1mb uploaded but anything above wont work
-
Here: local mapName = "" addEvent ( "onClientMapStarting", true ) addEventHandler ( "onClientMapStarting", root, function ( mapInfo ) mapName = mapInfo.name setTimer(function() mapName = "" end,3000,1) --this would set a timer for 3 seconds to set the map name back to nothing end ) addEventHandler ( "onClientRender", root, function ( ) --if the mapName doesn't equal/contain nothing then show the map name if mapName~="" then dxDrawText ( "Map: ".. mapName, 50, 50 ) end end )
-
Use these: dxDrawText --Draw a text on the screen mapInfo = getElementData(root,"info.mapInfo") --gets the map info example: name,version,type, etc...
-
You mean this: http://www.raspberrypi.org/ ? Have you tried the Linux version of MTA? Linux: http://linux.multitheftauto.com
-
Just asking... Anyways, Does it?
-
Have you tried running OBS while MTA is in windowed mode?
-
wait, run the MTADiag again, we could see what's running.
-
Sorry, I don't get what you're saying... What's the problem?
-
For the Ethernet Driver, try this: http://www.4shared.com/zip/pPD6WH_L/ins ... 22013.html For the USB Driver: http://www.intel.com/p/en_US/support/detect
-
Run this and download any required drivers: http://www.nvidia.com/Download/Scan.aspx?lang=en-us
-
Please download and run this MTADiag, then post the generated MTA Pastebin url here please.
-
Well in the script you would first need to loop through the map file with all the vehicles being spawned, while looping through it, you could get the positions of them, store them in to a table and destroy the vehicle. After that's done, when ever a player joins the server and they're the police then use this: local x,y,z = unpack(tableName[math.random(1,#tableName)] --The table would basically look like this: local tableName = {{x,y,z}} to get the random position of a police car, after just send them to that position and warp them into the car.
-
Ya it is, but you will still need to script this
-
For the antivirus, just use Microsoft security, it's free and it updates the definition list( basically the viruses that are not allowed) everyday.
-
Hmmm, try installing this latest nightly: https://nightly.multitheftauto.com/?mtasa-1.3.3-rc-latest
-
Actually, MTA is compatible with them, but it might be some issue on your end of the vps... Please note, when changing your computer's/vps's OS, you would need to install MTA again
-
Hmmm, try deleting the gta_sa.set file again... Then run GTASA in single player so it will create the file again, and set up your options while in GTASA, after try running MTASA
-
No, I'm asking does the same thing happen when you try to run GTASA for single player, not in MTA.
-
try this: addEventHandler("onResourceStart",resourceRoot,function() if source~=resource then return end local policeTeam = createTeam ( "Police", 0, 0, 255 ) setTeamFriendlyFire ( policeTeam, false ) local players = getPlayersInTeam ( getTeamFromName ( "Police" ) ) if #players == 0 then return end --ends the script if there's no players on the police team for _, player in ipairs ( players ) do createBlipAttachedTo ( player , 0 , 2 , 0 , 0 , 255 , 255 ) end end)
