-
Posts
4,961 -
Joined
-
Last visited
Everything posted by Jaysds1
-
Hmm, I'm not sure. If you format your PC that just means everything got wiped off, and if you installed everything like new again then everything should be running properly. Unless you try to copy the same files like GTASA and MTASA off a usb or something back onto your pc.
-
What program are you using to stream MTA?
-
It's kind of what ever, but if it was my choice, I wouldn't let you kids play here... Just going to state my opinion and that's it.
-
Are you trying to find another host to pay with paypal?
-
Basically what we're showing you is that the players can download the resources, and then connect to the game and while they're moving around the mods are being downloaded in the background; whereas if you don't use the engineSetAsynchronousLoading, then the player will have to wait 5 mins depending on their connection speed and the server connection speed also how big the file is which might make the waiting time longer and all of this would go to waste because players would see that the waiting time is long and would just go to another server by the time the download reach 10% complete. Just use engineSetAsynchronousLoading and done.
-
Only to a certain extent. Either way, your clients wont like loading that much, unless you allow them to choose what mods they want loaded.
-
impossible, no such thing of a "best freeroam server"... There's such thing as a funnest freeroam server, a creative freeroam server... and some other things In MTA you can't really have a "best" freeroam server
-
Did you try searching the mta community site? https://community.multitheftauto.com
-
Login Instability on Forums
Jaysds1 replied to Dealman's topic in Site/Forum/Discord/Mantis/Wiki related
It depends on what site you're linking towards, like I use "https://forum.multitheftauto.com" and every time I visit the site I'm logged in and everything is cool. You must be using "https://forum.multitheftauto.com" and it links you back to the link above. -
MTA SA community stats system?
Jaysds1 replied to Xierra's topic in Site/Forum/Discord/Mantis/Wiki related
Well I've tried to make a standalone system for popular servers to use but it kind of failed because of the use of players glitching the system. I WILL be back soon to make a stable and much and improve system... Just going to school for programming right now. -
Already did! I hope i win too
-
I'm good, I don't have PS4 anyways... Maybe I could resell it though...Hmmm... I commented
-
Well I don't know, maybe you could probably try the IRC if you want answers right away.
-
You would need to search the community page. https://community.multitheftauto.com
-
Check this out: http://www.multitheftauto.com/hosters/
-
Welcome TheIntimidator, I hope you enjoy MTA like most of us, and about that creative part; you have to be creative to make MTA more creative but like I always say "Test the waters" lol.
-
This is actually part of scripting, there's no command for this.
-
You can take it how you want, but it actually means what @venadHD said.
-
Multi Theft Auto 0.6 Nightly 1 Released
Jaysds1 replied to SugarD-x's topic in Multi Theft Auto 0.5r2
Got em: https://bugs.projectredivivus.com/ -
Email Activation Link generating error
Jaysds1 replied to BLonwei's topic in Site/Forum/Discord/Mantis/Wiki related
To be honest, you need to indent that; it'll help a lot! This is how it looks indented: <?php include("header.php"); ?> <link href="css/login-form.css" type="text/css" rel="stylesheet" /> <div id="main-wrapper"> <div id="lib_top"> <center><h2>Account Activation</h2></center> <?php if (!isset($_GET['userid']) or ! isset($_GET['token'])){ //<- Left this outside ?> <form id="register_form" onsubmit="ajax_resend_activation_email(); return false;" method="post" action="" onkeypress="resetError();"> <br> <table border=0 align="center" class="login-form" cellpadding="2"> <tr> <td style="text-align: center;"> <input type="text" id="reg_username" placeholder="Enter Username" maxlength="30" value="<?php echo $_GET['username']; ?>" required/> <div> <br><b>Prove you're human:</b><br> <a href="" onclick="ajax_reload_captcha(); return false;"><div id="img_captcha"><img src="captcha/captcha.php" /></div></a> <input type="text" id="reg_captcha" placeholder="Enter the text above" maxlength="5" required style="width: 146px;" /> </div> <input type="submit" id="submit_reg" value="Activate" style="margin-top: 20px; "/> </td> <tr> <td> <div id="error_reg" style="padding-top: 10px; color:red;font-style: italic;font-size: 11px;"></div> </td> </tr> <tr> <td align="center" > <div id="reg_status"></div> </td> </tr> </table> </form> <?php }else{ require_once './classes/mysql/Database.class.php'; $db = new Database("MTA"); $db->connect(); $account = $db->query_first("SELECT id, username, activated FROM accounts WHERE id='" . $db->escape($_GET['userid']) . "' "); if ($account and $account['id'] and is_numeric($account['id'])){ $token = $db->query_first("SELECT * FROM tokens WHERE userid='" . $db->escape($_GET['userid']) . "' AND token='" . $db->escape($_GET['token']) . "'"); if ($token and $token['id'] and is_numeric($token['id'])){ $update = array(); $update['activated'] = 1; if ($db->query_update("accounts", $update, "id='" . $token['userid'] . "'") and $db->query("DELETE FROM tokens WHERE id='" . $token['id'] . "'")){ echo "<p>Your account '" . $account['username'] . "' has been sucessfully activated!</p>"; }else{ echo "<p>Opps, sorry. We couldn't activate your account '" . $account['username'] . "'." . "<p>Please try again later.</p>"; } } }else{ echo "<p>Opps, sorry we're unable to process your request.</p>" . "<p>The account you're trying to activate does not exist.</p>"; } $db->close(); } ?> </div> <div id="lib_mid" ></div> <div id="lib_bot"></div> </div> <div class="content_wrap"> <div class="text_holder"> <div class="features_box"></div> <?php include("sub.php"); include("footer.php"); ?> <script type="text/javascript" src="js/ajax_register.js"/></script> Try this: -
That's true.