Jump to content

script [OneTap/OTC3]CSGO "anti-kick" script


Recommended Posts

This script makes your name to blank, so people maybe not kick you.

var currentTick = 0;
var lastTick = 0;
var special = false;
var speed = 22;
var ctag = 0;
function Draw() {
  currentTick = parseInt(Globals.Curtime() * 1e3);
  if (currentTick - 1e4 / speed >= lastTick) {
    switch (ctag % 1) {
      case 0:
        {
          Local.SetClanTag("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
          break;
        }
      case 1:
        {
          Local.SetClanTag("\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n\n");
          break;
        }
      
    }
    if (ctag == 1) {
      ctag = 0;
    } else {
      ctag = ctag + 1;
    }
    lastTick = currentTick;
  }
}
Cheat.RegisterCallback("Draw", "Draw");

 

  • Like 11
Link to comment
Share on other sites

  • 4 weeks later...

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Restore formatting

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

 Share

×
×
  • Create New...