-
Posts
4,961 -
Joined
-
Last visited
Everything posted by Jaysds1
-
You could download CCleaner and see which program "eats" up your "start time". CCleaner: https://www.piriform.com/ccleaner
-
I don't think GTASA "Hot Coffee" is compatible with MTA... try running mta on a fresh new gtasa copy (no hot coffee).
-
Sorry, but you would need to expand more on this...
-
Exercises, tutorials
Jaysds1 replied to rain_gloom's topic in Site/Forum/Discord/Mantis/Wiki related
um... viewforum.php?f=148 That should be good enough for them, anything else they could just read up as scripting does require more reading than watching... Other than that, they could watch Scripting tut's from Greenie: viewtopic.php?f=148&t=58890 -
Lol, we're still waiting
-
lol, actually, I don't think those would be made fairly easily... As it might take them atleast 2 months to even implement this as they are working on the whole mtasa site... demo: https://server.mtasa.com
-
Looks really interesting, can't wait till it comes out
-
lol, I've already made one of this video: https://forum.multitheftauto.com/viewtopic.php?f ... ilit=video
-
I swear I saw that video some where??? hmmm, either way, nice
-
Check this out: https://forum.multitheftauto.com/viewtopic.php?f ... Forwarding
-
You could learn lua, as I don't know any resources on the community site with those features.
-
Nice, I like it
-
Maybe your ISP put a limit on how much to upload. Try running http://www.speedtest.net , then post the result here.
-
Maybe you could time how long the fire takes before it goes out, then automatically create a new one.
-
Actually, nah, they wouldn't make it a random weather system, because they wouldn't put a sandstorm in grove street or in a city, unless they are in the desert... Anyways, GTASA made it depending on where CJ is.
-
https://community.multitheftauto.com/in ... ls&id=3185 This isn't needed anymore as MTA has the functions DONE
-
lol, no, I don't know how it goes but, it also depends where CJ is in SP, as the sandstorm would only come through while in the desert ...
-
lol, Can you type in "/debugscript 1" in-game and take screenshot then post it here please.
-
ok, try reading this: http://www.checkupdown.com/status/E413.html
-
Here: local host = "" -- mysql host url local username = "" -- your sql login username local password = "" -- your sql login password local database = "" -- yoru sql database name -- To Connect to main database, use -- -- exports['MySQL']:connectMain(source) ------ Nothing Below Here Needs To Be Edited. ----- function getHost() return host end function getUser() return username end function getPass() return password end function getDatabase() return database end function connectMain() return dbConnect("mysql", "dbname="..database..";host="..host, username, password, "autoreconnect=1") end function customConnect(cdata,chost,cuser,cpass) return dbConnect("mysql", "dbname="..cdata..";host="..chost, cuser, cpass, 'autoreconnect=1') end Please read here next time: https://forum.multitheftauto.com/viewto ... b05aa262f3 Anyways, What do you need help with?
-
Ya, in the mtaserver.conf file, remove that ip and leave it blank, then start your server and type in "openports". Post a screenshot of what it after it shows the results.
-
1. Make sure you didn't put your IP in the mtaserver.conf Type in "openports" in the console/window (the black window), then post a screenshot of it 2. You could already warp players into your/a car.
-
oh, your right, let me change that then
-
try this: function fixScript( hitPlayer, matchingDimension ) if ( hitPlayer == localPlayer ) then local vehicle = getPedOccupiedVehicle ( hitPlayer ) if not ( vehicle ) then outputChatBox ( "You need to be in a vehicle!", 255, 0, 0 ) return end local vehicleHealth = getElementHealth ( vehicle ) if vehicleHealth <= 950 then fadeCamera ( false ) --toggleAllControls ( false ) setElementFrozen ( vehicle, true ) setTimer ( function ( ) fixVehicle ( vehicle ) --toggleAllControls ( true ) setElementFrozen ( vehicle, false ) fadeCamera ( true ) takePlayerMoney(250) outputChatBox ( "Your vehicle was fixed for $250!", 255, 0, 0 ) end , 2000, 1 ) end end end addEventHandler ( "onClientMarkerHit", UKMarker, fixScript ) addEventHandler ( "onClientMarkerHit", USAMarker,fixScript) addEventHandler ( "onClientMarkerHit", RUSMarker,fixScript) addEventHandler ( "onClientMarkerHit", GERMarker,fixScript)
-
ok, Type in what Solidsnake14 posted again and see if anything comes up, if it doesn't work, then please download and run this MTADiag, then post the generated MTA:Pastbin url here please.