Page 5 of 6 FirstFirst ... 3 4 5 6 LastLast
Results 41 to 50 of 51

Thread: Lms

  1. #41
    Senior Player Relations tristanfosho's Avatar
    Join Date
    Feb 2014
    Location
    Start Trade
    Posts
    1,448
    Quote Originally Posted by mrgadosh View Post
    i think if it's a big number > speed hacking
    I've seen a speed hacker who had 250.random numbers in his jail reason
    I might be wrong tho
    - - - Updated - - -

    "The speed hack isn't broke. I added checks to the Event system so that anybody joining an event will get speed hack tested through the event.

    How it works? we add a weapon to you via the server and store a flag on the server saying what time you received the weapon.
    HTML Code:
    player.addWeapon("SpeedHackerTest");
    player.staff_speedhackcheck = int(timevar2);
    At the same time the weapon is added, your DEVICE will run a script and after 15 seconds have passed on your device it will contact the server. Once it contacts the server, it compares the time it takes your device to contact the server and the time the server detected
    HTML Code:
    temp.realtime = int(timevar2) - player.staff_speedhackcheck; //Server check

    //Client check - the device says it took longer than 13.5 seconds, they have passed (even though the test is 15 seconds)
    temp.passed = (params[1] > 13.5);

    //If they have passed on their device, lets check the server
    if (temp.passed) temp.passed = (temp.realtime >= 13.5);
    So we actually test it with 13.5 seconds- if your device runs a 15 second test in less than 13.5 seconds (WHICH IT SHOULDN'T) then you are hacking. You can't hack time...


    FYI - PING shouldn't impact this. If anything - your PING would make it act as though you're not speed hacking as it will say it took longer to contact the server."


    *According to what SNK told you, you should not have been jailed because your logged time is over 13.5. This clearly means there is something wrong with the script and your absolutely right.

    SNK is currently working on Crypt right now. I am sure he will get back to you when he isnt so busy. He has been very active lately and hopefully this gets his attention. I also pm'd him to take a look at this thread. If I were you I would not bother pming any other PRs except maybe Ace or Anero because they can easily get in trouch with SNK but again this is only an issue that SNK can solve.

    This thread should have had a better title o.o
    For any Jail, Gralat and E-mail related issues, you must submit a ticket to http://support.toonslab.com/ for help.


    Accounts IGN: TristanFoSho/KarrenFoSho
     Spoiler

  2. #42
    How long will it take !! I've been in jail since ages I don't want to miss graaloween this isn't fair and I didn't do no hacking! I want to be released

    - - - Updated - - -

    I want to get released this is not fair!! U have the evidence of I am innocent yet u won't release me. Gonna miss graaloween ;(

  3. #43
    ( ͡° ͜ʖ ͡°) Cross's Avatar
    Join Date
    Nov 2013
    Location
    Canada
    Posts
    157
    Quote Originally Posted by tristanfosho View Post
    - - - Updated - - -

    "The speed hack isn't broke. I added checks to the Event system so that anybody joining an event will get speed hack tested through the event.

    How it works? we add a weapon to you via the server and store a flag on the server saying what time you received the weapon.
    HTML Code:
    player.addWeapon("SpeedHackerTest");
    player.staff_speedhackcheck = int(timevar2);
    At the same time the weapon is added, your DEVICE will run a script and after 15 seconds have passed on your device it will contact the server. Once it contacts the server, it compares the time it takes your device to contact the server and the time the server detected
    HTML Code:
    temp.realtime = int(timevar2) - player.staff_speedhackcheck; //Server check

    //Client check - the device says it took longer than 13.5 seconds, they have passed (even though the test is 15 seconds)
    temp.passed = (params[1] > 13.5);

    //If they have passed on their device, lets check the server
    if (temp.passed) temp.passed = (temp.realtime >= 13.5);
    So we actually test it with 13.5 seconds- if your device runs a 15 second test in less than 13.5 seconds (WHICH IT SHOULDN'T) then you are hacking. You can't hack time...


    FYI - PING shouldn't impact this. If anything - your PING would make it act as though you're not speed hacking as it will say it took longer to contact the server."


    *According to what SNK told you, you should not have been jailed because your logged time is over 13.5. This clearly means there is something wrong with the script and your absolutely right.

    SNK is currently working on Crypt right now. I am sure he will get back to you when he isnt so busy. He has been very active lately and hopefully this gets his attention. I also pm'd him to take a look at this thread. If I were you I would not bother pming any other PRs except maybe Ace or Anero because they can easily get in trouch with SNK but again this is only an issue that SNK can solve.

    This thread should have had a better title o.o
    Well i'm 99% sure that when I got jailed it wasn't the system, but an admin ( ͡° ͜ʖ ͡°).

  4. #44
    Big Cheese Slapjack's Avatar
    Join Date
    Jul 2015
    Location
    Kuwait
    Posts
    1,768
    Quote Originally Posted by tristanfosho View Post
    - - - Updated - - -

    "The speed hack isn't broke. I added checks to the Event system so that anybody joining an event will get speed hack tested through the event.

    How it works? we add a weapon to you via the server and store a flag on the server saying what time you received the weapon.
    HTML Code:
    player.addWeapon("SpeedHackerTest");
    player.staff_speedhackcheck = int(timevar2);
    At the same time the weapon is added, your DEVICE will run a script and after 15 seconds have passed on your device it will contact the server. Once it contacts the server, it compares the time it takes your device to contact the server and the time the server detected
    HTML Code:
    temp.realtime = int(timevar2) - player.staff_speedhackcheck; //Server check

    //Client check - the device says it took longer than 13.5 seconds, they have passed (even though the test is 15 seconds)
    temp.passed = (params[1] > 13.5);

    //If they have passed on their device, lets check the server
    if (temp.passed) temp.passed = (temp.realtime >= 13.5);
    So we actually test it with 13.5 seconds- if your device runs a 15 second test in less than 13.5 seconds (WHICH IT SHOULDN'T) then you are hacking. You can't hack time...


    FYI - PING shouldn't impact this. If anything - your PING would make it act as though you're not speed hacking as it will say it took longer to contact the server."


    *According to what SNK told you, you should not have been jailed because your logged time is over 13.5. This clearly means there is something wrong with the script and your absolutely right.

    SNK is currently working on Crypt right now. I am sure he will get back to you when he isnt so busy. He has been very active lately and hopefully this gets his attention. I also pm'd him to take a look at this thread. If I were you I would not bother pming any other PRs except maybe Ace or Anero because they can easily get in trouch with SNK but again this is only an issue that SNK can solve.

    This thread should have had a better title o.o
    Finally, a proof that we all didn't hack

    That's me when I was jailed for speed hacking

    https://imgur.com/a/22neI


    League Of Legends Player
    Server: Eu West
    Name: SlapjackQ8
    Add me, everyone is welcome

  5. #45
    The Crypt has been released, therefore snk isn't working on the crypt now which means... HE NEEDS TO SORT THIS ISSUE OUT. I want to get released as I didn't do anything... and the proof is all in the forum/thread

  6. #46
    Big Cheese Slapjack's Avatar
    Join Date
    Jul 2015
    Location
    Kuwait
    Posts
    1,768
    We got into many problems just because we were falsely jailed for speed hacking,

    I was jailed 3 times, every time I get out of the jail and win an event I get jailed,

    Also I was about to win multirace when I suddenly got jailed, I recorded everything and what happened,

    I showed them the video (I don't think that they even watched it) and they didn't believe me,

    I was banned from the forums because I made a thread about "thanks for jailing me Judith" when I was

    Jailed for speed hacking, I didn't even get an infraction, I mean, I was suddenly banned and when

    I came back I read the infraction and it was "insulting other members" bro that's stupid

    Ace doesn't seem like he is even trying to help people that were jailed for speed hacking tbh, even

    Tho we have proofs, but they will always say something like "we don't know what were you doing before
    You started recording the video"

    Bro I uploaded the original video, I didn't edit anything in it, you can see by yourself that my SPEED is NORMAL

    But, you know, we all are lying and some admins speed hacked in events before so they must be fired.


    League Of Legends Player
    Server: Eu West
    Name: SlapjackQ8
    Add me, everyone is welcome

  7. #47
    I didn't even speed hack and they jailed me aswell. The admins don't even care they just ignore u and they are not solving this issue. I sent an email a week ago to the support team and no reply, I PM player relation they ignored me. I showed them proof and they said " am sorry but we can't release you despite of the evidence you have" like wtf I have proof but u don't release me.

    - - - Updated - - -

    Quote Originally Posted by Slapjack View Post
    We got into many problems just because we were falsely jailed for speed hacking,

    I was jailed 3 times, every time I get out of the jail and win an event I get jailed,

    Also I was about to win multirace when I suddenly got jailed, I recorded everything and what happened,

    I showed them the video (I don't think that they even watched it) and they didn't believe me,

    I was banned from the forums because I made a thread about "thanks for jailing me Judith" when I was

    Jailed for speed hacking, I didn't even get an infraction, I mean, I was suddenly banned and when

    I came back I read the infraction and it was "insulting other members" bro that's stupid

    Ace doesn't seem like he is even trying to help people that were jailed for speed hacking tbh, even

    Tho we have proofs, but they will always say something like "we don't know what were you doing before
    You started recording the video"

    Bro I uploaded the original video, I didn't edit anything in it, you can see by yourself that my SPEED is NORMAL

    But, you know, we all are lying and some admins speed hacked in events before so they must be fired.


    - - - Updated - - -

    Next time guys take a video when u do the events
    Last edited by Mevish; 10-24-2016 at 08:55 AM.

  8. #48
    Big Cheese Slapjack's Avatar
    Join Date
    Jul 2015
    Location
    Kuwait
    Posts
    1,768
    Quote Originally Posted by Mevish View Post
    I didn't even speed hack and they jailed me aswell. The admins don't even care they just ignore u and they are not solving this issue. I sent an email a week ago to the support team and no reply, I PM player relation they ignored me. I showed them proof and they said " am sorry but we can't release you despite of the evidence you have" like wtf I have proof but u don't release me.

    - - - Updated - - -



    So true admins speed hack aswell I've seen it happening with my own eyes

    - - - Updated - - -

    Next time guys take a video when u do the events
    U didn't understand what I meant,

    Inone, Chex, idk who else were falsely jailed for speed hacking before they were hired,

    And admins shouldn't "speed hack" so if they really speed hacked they must be fired.


    League Of Legends Player
    Server: Eu West
    Name: SlapjackQ8
    Add me, everyone is welcome

  9. #49
    Senior Player Relations tristanfosho's Avatar
    Join Date
    Feb 2014
    Location
    Start Trade
    Posts
    1,448
    Quote Originally Posted by Mevish View Post
    I saw some admins speed hacking.... wish I made a video of it damn it and I got falsely jailed can someone release me now .....
    They have a command function to move really fast....
    For any Jail, Gralat and E-mail related issues, you must submit a ticket to http://support.toonslab.com/ for help.


    Accounts IGN: TristanFoSho/KarrenFoSho
     Spoiler

  10. #50
    Imfao I meant people who did it before they were hired, they got falsely jailed aswell and the people who got falsely jailed before becoming an admin should have took a video so none of us should get falsely jailed then

Tags for this Thread

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •