-
Posts
99 -
Joined
-
Last visited
Everything posted by vx89
-
What about the wiki-suggested setWorldSoundEnabled?
-
You don't need XP to change serial and IP.
-
Are you sure you are the author of this?
-
Umm.. if it's encrypted - then how it gets unencrypted on the server again? there needs to be a secure phase somewhere kept, and if someone hacks the server then...
-
You could just try copy-paste the race directory and give the copied one a different name.
-
Single player SA still works properly, right?
-
Hello. Could it be possible to decrease forum search delay for registered users? E.g to 1 second or less. I'm having a habit to open "view your posts" and "view new posts" in separate background tabs and often need to search multiple times if keywords haven't found any results. Just letting you know.
-
Thanks, 50p. I've used Sublime for some time now (also for MTA). It's a very good option against the full fetched IDEs, because usually the game is running alongside and takes a bunch of resources already. Thank you!
-
You can now test it live on my server "LETS RACE" mtasa://37.187.158.16:22023
-
Hi Mellnik Just curious, (if you're using windows) cd to your most demanding resource and run: @echo off & for /f %a in ('dir /s /b') do echo %~fa %~za This will list all the files (including files in subdirectories) and file size in bytes. Which filetypes are the largest ones?
-
local Whitelist = { "080209AF2E09E389F6C55AFB6B5A5A54" } Hope that was the right syntax. http://lua-users.org/wiki/TablesTutorial
-
Hey, Raceboard is a revamped scoreboard for race servers. The resource has been upload a while ago actually, but haven't advertised it yet: https://community.multitheftauto.com/in ... ls&id=9061 It's currently missing some exported functions (for custom columns in your server) and a GUI for client-side configuration (can be used with simple commands though). If anyone adds it to his/her server let me know, so I could come and check it out how it works out with a bunch of real players. Images and more info on the resource page.
-
There's some confusion here. I'm saying that the chance of getting some specific value more than other values is not high. You said that there is 80% chance to get 1 out of 0,1 and 2:
-
Theoretically, the chance to get any number is same every time. I'm not sure what did you base your example on, but here's a quick javascript oneliner to prove it wrong (just run it in your browser console). var numbers = []; numbers[0] = 0; numbers[1] = 0; numbers[2] = 0; for (i = 0; i < 1000; i++) { var r = Math.floor(Math.random() * 3); numbers[r]++; } console.log("0:"+numbers[0] + ", 1:"+numbers[1] +", 2:"+numbers[2])
-
OFFTOPIC: Random that isn't random reminded me this article: http://labs.spotify.com/2014/02/28/how- ... fle-songs/
-
It seems yadi.sk doesn't show images if you have Disconnect extension enabled in Google Chrome.
-
You could check out my resource source: https://community.multitheftauto.com/in ... ls&id=9061 or the default dxscoreboard which is distributed with the MTA client already.
-
Let's assume your game resolution is a minimum one, so it's 800x600. Then x1 = screenx/2 = 800/2 = 400 y1 = screeny/2 = 600/2 = 300 and x2 = 300 y2 = 300 where x2 is the "right" argument and y2 is the "bottom" argument. However, you probably wanted x1+300 and y1+300, so instead you should put x2 = 400+300 = 700 y2 = 300+300 = 600 These numbers work for 800x600 resolution and just illustrates the issue.
-
You should be a marketing guy
-
Plus one to this one. Not a big deal, of course.
-
Nope, you're correct, that you need to fill all the parameters to get to the one you want give a non-default value for.
-
To whom is it a career? As far as it seems to me, there really is no considerable amount of money moving around for resource writers. Maybe for some mta core bug bounties, but these aren't enough for a career too. I haven't personally seen a resource so good (read: advanced), that it shouldn't be free, except the map creator and some AI scripts which are being built. But, whatever you do, if you do it good and invest your time in it, then it's probably useful to somebody. Even if it's NSA for MTA. Sorry if sounding like a douchebag.
-
priority is basically the order, so if you want your new column as 2nd, then put 2. Or try neighbouring integers if that was a little off. If you are calling these functions server-side, then you can choose, if all players should see same columns, or some of them should see different columns, thats' what forElement is for. If you want all players to see same columns as everybody else, then just don't add forElement argument at all.
