Not a member of Pastebin yet?
Sign Up,
it unlocks many cool features!
- local cpfont = render.create_font("Verdana", 15, 4, true, true, false)
- local cpfont2 = render.create_font("Verdana", 12, 2, true, false, false)
- local sw, sh = engine.get_screen_width(), engine.get_screen_height()
- menu.add_check_box("ENABLE NIGGAYAW")
- menu.add_check_box("NIGGAYAW INDICATORS")
- menu.add_check_box("NIGGAYAW WATERMARK")
- menu.add_color_picker("NIGGAYAW COLOUR MARK")
- local ffi = require "ffi"
- ffi.cdef[[
- typedef int(__fastcall* clantag_t)(const char*, const char*);
- ]]
- local fn_change_clantag = utils.find_signature("engine.dll", "53 56 57 8B DA 8B F9 FF 15")
- local set_clantag = ffi.cast("clantag_t", fn_change_clantag)
- function round(num, numDecimalPlaces)
- local mult = 10^(numDecimalPlaces or 0)
- return math.floor(num * mult + 0.5) / mult
- end
- local animation = {
- " n",
- " ni",
- " nig",
- " nigg",
- " nigga",
- " niggay",
- " niggaya",
- " niggayaw",
- " niggayaw",
- " niggayaw",
- " niggayaw",
- "niggayaw",
- "iggayaw",
- "ggayaw",
- "gayaw",
- "ayaw",
- "yaw",
- "aw",
- "w",
- "",
- "",
- "",
- }
- local old_time = 0
- local anglesforp = {
- 2,
- -2,
- 4,
- -4,
- 6,
- -6,
- 8,
- -8,
- 10,
- -10,
- }
- client.add_callback("on_paint", function()
- local curtime = math.floor(globals.get_curtime()*2)
- if old_time ~= curtime then
- set_clantag(animation[curtime % #animation+1], animation[curtime % #animation+1])
- end
- old_time = curtime
- if not menu.get_bool("ENABLE NIGGAYAW") then return end
- if globals.get_tickcount() % 20 < 1 then
- menu.set_int("anti_aim.yaw_offset", anglesforp[math.random(#anglesforp)])
- menu.set_int("anti_aim.desync_range", 100)
- menu.set_int("anti_aim.lby_type", 3)
- end
- if globals.get_tickcount() % 20 >= 17 then
- menu.set_int("anti_aim.yaw_offset", 0)
- menu.set_int("anti_aim.lby_type", 1)
- end
- menu.set_int("anti_aim.desync_range", -globals.get_tickcount() % 70)
- menu.set_int("anti_aim.target_yaw", 0)
- if menu.get_bool("NIGGAYAW INDICATORS") then
- ballchunks = 1
- render.draw_text(cpfont, sw/2-render.get_text_width(cpfont, "niggayaw")/2, sh/2+28, color.new(255, 255, 255), "niggayaw")
- render.draw_text(cpfont, sw/2-render.get_text_width(cpfont, "drip amount - 100%")/2, sh/2+42, color.new(255, 255, 255, 255), "drip amount - 100%")
- if menu.get_key_bind_state("rage.double_tap_key") then
- render.draw_text(cpfont, sw/2-render.get_text_width(cpfont, "DT")/2, sh/2+42+(14*ballchunks), color.new(0, 255, 10, 255), "DT")
- ballchunks = ballchunks + 1
- end
- if menu.get_key_bind_state("rage.force_damage_key") then
- render.draw_text(cpfont, sw/2-render.get_text_width(cpfont, "DMG OVERRIDE")/2, sh/2+42+(14*ballchunks), color.new(255, 255, 255, 255), "DMG OVERRIDE")
- ballchunks = ballchunks + 1
- end
- end
- if menu.get_bool("NIGGAYAW WATERMARK") then
- textstringwatersex = string.format("niggayaw | %s | %sms", globals.get_username(), globals.get_ping())
- render.draw_rect_filled(8, 10, render.get_text_width(cpfont2, textstringwatersex)+8, 16, color.new(0, 0, 0, 150))
- render.draw_rect_filled(8, 9, render.get_text_width(cpfont2, textstringwatersex)+8, 2, menu.get_color("NIGGAYAW COLOUR MARK"))
- render.draw_text(cpfont2, 12, 12, color.new(255, 255, 255), textstringwatersex)
- end
- end)
Add Comment
Please, Sign In to add comment