Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

Recent content by jur13n

  1. jur13n

    Gunz 1.5 Repack By jur13n #1 & #2

    Ya'll are mental for still using this.
  2. jur13n

    Who's still here?

    Hello my name is jur13n.
  3. jur13n

    Custom Quest problem

    Well, It's been a while since I posted something, but here I am with a problem. I am working on a custom quest and I have 2 problems; - All added quest items have no icon. - Quest item can't find combination.. Here's some info: zquestitem.xml: <ITEM id="200600" name="A Mysterious Ring"...
  4. jur13n

    [WEB]Newduel Project!

    I'm not ashamed, as I can pretty much proof I've learned from douchebags like myself back in those days. Still not the actual meaning of MVC... holla @ me
  5. jur13n

    [WEB]Newduel Project!

    Do you even learned to program? MVC doesn't mean it's protected, it's a way of organising and programming. Are you stupid? That's not what I meant you stupid, I was asking about the way you want to store it, and css is fired BEFORE jquery, so if you want to disable the transition with jquery...
  6. jur13n

    Habbo Crush v1.0

    You must be registered for see element.
  7. jur13n

    [WEB]Newduel Project!

    Learn English Get A Grade on English Test Re-read what I said. You create a button to disable or enable a css transition? So you're echoing the css with php? Then what is it programmed in? So you take too long on finishing a website because you are thinking about protecting it but not...
  8. jur13n

    [WEB]Newduel Project!

    You must be registered for see element. wow. AJAX is not doing effects, but it can handle requests. showing a fadein on each fcking page load is annoying as poop. I wonder how secure this is..
  9. jur13n

    HTML - How to make the element responsive?

    300% = 3 times it's parent, just saying,
  10. jur13n

    PHP too .exe file

    You can't convert a php file to .exe You must be registered for see element.
  11. jur13n

    [R] Fix

    I don't think you understand it at all...
  12. jur13n

    Limit ID login time.

    set a session for the user with an array. $_SESSION['user'] = array("username"=>$username, "logintime" => time()); Then you know when he logged in. when you want him online for 6 hours. you check the logintime each time. $sixhours = 60*60*6; if($_SESSSION['user']['logintime'] <...
  13. jur13n

    PokeDev MMO Release [Impact Engine] Javascript

    said a leecher lol anyways, I haven't looked into the code itself, but it looks promising.
  14. jur13n

    [PHP] CSRF Protection

    PHP CSRF Protection. Add this token (stored in the session) to each form and validate on each POST. <?php class HazeCSRF { public static function setCSRFToken() { $session_id = session_id(); $user_ip = $_SERVER['REMOTE_ADDR']; $time = time(); $token =...
  15. jur13n

    Redirection Loop

    You are redirecting the user for not logging in, but it also checks if the user is not logged in when the person is already on "index.php" so it's redirecting because the user is not logged in. What you could do, making the redirection a function like: function redirect($to = "/index.php") {...
Back
Top