Arran
MTA Contributors-
Posts
599 -
Joined
-
Last visited
Everything posted by Arran
-
X, Y, Z = getElementPosition(getLocalPlayer()) col = createColCircle(X, Y, 150) outputDebugString(tostring(#getElementsWithinColShape(col, "player"))) Returns 0 when it should clearly return 1, the local player. But it does not until the player has moved, so I suppose we're going to have to add a timer on every temporary col shape check and hope they moved during that time?
-
Do you know the most used resolution currently in MTA SA? 800x600. Obviously they don't have very good computers then. Some people cant even get 10 fps in MTA SA let alone GTA IV. Few people would play MTA IV. The player count of MTA SA is only rising, so the development should continue more than ever on it. In my view GTA IV is rubbish, it doesn't even have anti-aliasing so you have to drive around this really nicely detailed city and watch it get ruined by jagged lines on everything you look at. And the multiplayer made by rockstar was just a sick joke. It might be an old game but that doesn't stop it from being great fun.
-
Its called MTA monitor... http://monitor.mtasa.com/
-
Your friends are in the same hamachi network, and are trying to connect to your hamachi IP?
-
Don't think I need to say anything more.
-
Very, very good result for MTA. Next year though, think of where MTA will be then: The player count is constantly going up and the average player count will be less like 3000 max, and more like 4000+ max. The mod will have developed even more. Keep it up developers, and MTA will win next year!
-
http://www.piriform.com/recuva Might help.
-
Couldn't it be provided in a zip file, or wouldn't that help? Also maybe a warning to people downloading like "Your antivirus protection may detect MTA as a virus but don't worry its not, thousands of people play MTA every day."
-
What do you mean by attaching a GUI to a vehicle? when somebody enters it?
-
Better than element data: exports You can use an exported function to return a variable. local somevar = 1000000 function getSomeVariable() return somevar end And in the meta.xml just add: Then call it like: exports.resourceNameHere:getSomeVariable()
-
Assuming this is for race. Look for "exports.scoreboard:addScoreboardColumn('checkpoint')" in race/race_server.lua (its on line 809) for me. Remove than line. Then restart race resource and it won't be added to scoreboard.
-
You can. Maybe it doesn't work cause you've got that third arg in getElementData, something I've never used.
-
Yes and the addEventHandler("onMarkerHit", house[current], someFunc) works, as I made a housing system yesterday.
-
house[current] = createMarker(....) addEventHandler("onMarkerHit", house[current], someFunc)
-
Was probably due to the missing source arg in the setTimer function and the setTimer arg as im quite sure they're needed.
-
You dont respawn because you never added anything to that script to actualy detect that a player died. addEventHandler("onPlayerWasted", root, function() outputChatBox("Respawning in 5 seconds...", source) setTimer(function(source) spawnPlayer(source, 1959.55, -1714.46, 17) fadeCamera(source, true) setCameraTarget(source, source) end ,5000,1,source) end) end) Also had to add "source" into setTimer and that function inside setTimer.
-
You can if you quickly do aclReload() its worked for me before.
-
The players would probably break before the server.
-
Basically he is saying nobody understands your question. Based on previous experience, it is much better to put resources in their own folders rather than trying to different things in one, unless they're tiny and doesn't matter if restarted.
-
Which hardly, if at all, works. Because this sobeit detector is picking them all up and the MTA anticheat didn't. Atleast 90% of cheaters use sobeit.
-
This is how I'd have done the table: local soundsTable = { "richt1.mp3", "richt2.mp3", "richt3.mp3", "richt4.mp3", "richt5.mp3", "richt6.mp3", "richt7.mp3", "richt8.mp3", "richt9.mp3", "richt10.mp3", "richt11.mp3", "richt12.mp3", "richt13.mp3", "richt14.mp3", "richt15.mp3", } You don't even have to specify the index because its added automatic. math.random(#soundsTable) to get one, and then to use it playSound(soundsTable[math.random(#soundsTable)], false)
-
I see nothing wrong there. So its either img/pokazlogo.png is not there or its not put in the meta.xml ( )
-
Just be grateful the MTA team even choose to work on MTA, you haven't payed them anything so you have no right to complain.
-
I remember a 1.0 public beta, to get a slot we had to keep trying quick connect it got full up so quickly when the password was removed. But to get 500+ players, a lot harder to do I imagine.
