Jump to content

Jaysds1

Members
  • Posts

    4,961
  • Joined

  • Last visited

Everything posted by Jaysds1

  1. Jaysds1

    I need Help!

    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.
  2. Jaysds1

    Streaming MTA

    What program are you using to stream MTA?
  3. 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.
  4. Jaysds1

    I need Help!

    Did any previous versions work?
  5. Are you trying to find another host to pay with paypal?
  6. There's no other way
  7. Jaysds1

    MTA SA SERVER

    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.
  8. Jaysds1

    MTA SA SERVER

    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.
  9. Jaysds1

    MTA SA SERVER

    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
  10. Did you try searching the mta community site? https://community.multitheftauto.com
  11. 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.
  12. 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.
  13. I'm good, I don't have PS4 anyways... Maybe I could resell it though...Hmmm... I commented
  14. Well I don't know, maybe you could probably try the IRC if you want answers right away.
  15. Jaysds1

    namtags

    You would need to search the community page. https://community.multitheftauto.com
  16. Jaysds1

    Buying a host

    Check this out: http://www.multitheftauto.com/hosters/
  17. Jaysds1

    Internet Speed

    My school's internet speed:
  18. Jaysds1

    Hello!

    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.
  19. Jaysds1

    namtags

    This is actually part of scripting, there's no command for this.
  20. You can take it how you want, but it actually means what @venadHD said.
  21. 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:
×
×
  • Create New...