Dönüşe özel nixware lua

  • Konuyu Başlatan Konuyu Başlatan tello31
  • Başlangıç tarihi Başlangıç tarihi

tello31

Banned
Katılım
6 Ara 2025
Mesajlar
3,221
Beğeniler
1,150
-- bmwm50stutu.lua | Nixware High Performance Script
local font_main = render.setup_font("Verdana", 16, 600)
local font_speed = render.setup_font("Tahoma", 22, 700)

-- Menü Ayarları
local enable_script = ui.add_checkbox("bmwm50stutu Enable", "stutu_enable")
local peek_key = ui.add_keybind("BMW Quick Peek", "stutu_peek")
local bhop_boost = ui.add_slider("M50 Turbo Boost", "stutu_boost", 0, 100)
local fast_dt = ui.add_checkbox("M50 Fast Double Tap", "stutu_dt")

-- Peek Değişkenleri
local peek_pos = nil
local is_returning = false

local function on_paint()
if not ui.get_bool("stutu_enable") then return end

local screen_size = render.get_screen_size()
local local_player = entity_list.get_local_player()

-- SAĞ ÜST: İstediğin yazı (Mavi tonda)
render.text(font_main, Vector2.new(screen_size.x - 160, 40), Color.new(0, 0.5, 1, 1), "bmwm50stutu.lua")

-- Hız Göstergesi (Kadran)
if local_player and local_player:is_alive() then
local velocity = local_player:get_prop("m_vecVelocity")
local speed = math.floor(math.sqrt(velocity.x^2 + velocity.y^2))

-- Hızlandıkça renk kırmızıya döner (Redline)
local r = speed / 300
render.text(font_speed, Vector2.new(screen_size.x / 2 - 30, screen_size.y - 100), Color.new(r, 1-r, 0, 1), speed .. " KM/H")
end
end

local function on_create_move(cmd)
if not ui.get_bool("stutu_enable") then return end

local local_player = entity_list.get_local_player()
if not local_player or not local_player:is_alive() then return end

-- M50 Hızlı Bunny & Strafe
local flags = local_player:get_prop("m_fFlags")
if bit.band(flags, 1) == 0 then
local boost_val = ui.get_int("stutu_boost")
cmd.forwardmove = 450 + (boost_val / 2)
-- Auto Strafe
if cmd.mousemove.x > 0 then cmd.sidemove = 450 elseif cmd.mousemove.x < 0 then cmd.sidemove = -450 end
end

-- BMW Quick Peek (Hızlı Sağ-Sol)
if ui.get_keybind_state("stutu_peek") then
local origin = local_player:get_prop("m_vecOrigin")
if peek_pos == nil then peek_pos = origin end

if is_returning then
-- Başlangıca dönme komutu
-- (Hızla geri çekilme mantığı)
end

if bit.band(cmd.buttons, 1) ~= 0 then is_returning = true end
else
peek_pos = nil
is_returning = false
end

-- Double Tap Turbo
if ui.get_bool("stutu_dt") then
exploits.force_shift(14)
exploits.allow_recharge()
end
end

callbacks.register("paint", on_paint)
callbacks.register("create_move", on_create_move)
.lua olarak kaydedersiniz

-- bmwm50stutu.lua | Nixware High Performance Script
local font_main = render.setup_font("Verdana", 16, 600)
local font_speed = render.setup_font("Tahoma", 22, 700)

-- Menü Ayarları
local enable_script = ui.add_checkbox("bmwm50stutu Enable", "stutu_enable")
local peek_key = ui.add_keybind("BMW Quick Peek", "stutu_peek")
local bhop_boost = ui.add_slider("M50 Turbo Boost", "stutu_boost", 0, 100)
local fast_dt = ui.add_checkbox("M50 Fast Double Tap", "stutu_dt")

-- Peek Değişkenleri
local peek_pos = nil
local is_returning = false

local function on_paint()
if not ui.get_bool("stutu_enable") then return end

local screen_size = render.get_screen_size()
local local_player = entity_list.get_local_player()

-- SAĞ ÜST: İstediğin yazı (Mavi tonda)
render.text(font_main, Vector2.new(screen_size.x - 160, 40), Color.new(0, 0.5, 1, 1), "bmwm50stutu.lua")

-- Hız Göstergesi (Kadran)
if local_player and local_player:is_alive() then
local velocity = local_player:get_prop("m_vecVelocity")
local speed = math.floor(math.sqrt(velocity.x^2 + velocity.y^2))

-- Hızlandıkça renk kırmızıya döner (Redline)
local r = speed / 300
render.text(font_speed, Vector2.new(screen_size.x / 2 - 30, screen_size.y - 100), Color.new(r, 1-r, 0, 1), speed .. " KM/H")
end
end

local function on_create_move(cmd)
if not ui.get_bool("stutu_enable") then return end

local local_player = entity_list.get_local_player()
if not local_player or not local_player:is_alive() then return end

-- M50 Hızlı Bunny & Strafe
local flags = local_player:get_prop("m_fFlags")
if bit.band(flags, 1) == 0 then
local boost_val = ui.get_int("stutu_boost")
cmd.forwardmove = 450 + (boost_val / 2)
-- Auto Strafe
if cmd.mousemove.x > 0 then cmd.sidemove = 450 elseif cmd.mousemove.x < 0 then cmd.sidemove = -450 end
end

-- BMW Quick Peek (Hızlı Sağ-Sol)
if ui.get_keybind_state("stutu_peek") then
local origin = local_player:get_prop("m_vecOrigin")
if peek_pos == nil then peek_pos = origin end

if is_returning then
-- Başlangıca dönme komutu
-- (Hızla geri çekilme mantığı)
end

if bit.band(cmd.buttons, 1) ~= 0 then is_returning = true end
else
peek_pos = nil
is_returning = false
end

-- Double Tap Turbo
if ui.get_bool("stutu_dt") then
exploits.force_shift(14)
exploits.allow_recharge()
end
end

callbacks.register("paint", on_paint)
callbacks.register("create_move", on_create_move)
.lua olarak kaydedersiniz
Türkçe kısımlarıda silin
 
[elsalwador]: bravo
Sen kumru ai mısın ya

LAN AGAPRO ATIYIMMI LAN 2 TANE DAHA İÇERİ

// Nixware Rage Config - Optimized for SCAR/SSG08

[Aimbot]
Enabled=1
Silent=1
AutoFire=1
AutoWall=1
Hitchance_Auto=55
MinDamage_Auto=25
Hitchance_Scout=75
MinDamage_Scout=70
Hitchance_AWP=85
MinDamage_AWP=100
MultiPoint=1
PointScale=0.60
TargetSelection=Crosshair

[AntiAim]
Enabled=1
Pitch=Down
Yaw=Static
YawAdd=180
Desync=1
DesyncAmount=58
FakeLag=1
FakeLagAmount=14
ManualLeft=Key_Left
ManualRight=Key_Right
ManualBack=Key_Down

[Exploits]
DoubleTap=1
DoubleTapSpeed=Quick
HideShots=1
Teleport=1

[Visuals]
EnemyBox=1
EnemyName=1
EnemyWeapon=1
EnemyHealth=1
ChamsEnemy=1
ChamsVisibleColor=255,0,0
ThirdPerson=1
ThirdPersonKey=V
FOV=110

[Misc]
AutoBunnyhop=1
AutoStrafe=1
RankReveal=1

CFG EFENİM
 
Sen kumru ai mısın ya

LAN AGAPRO ATIYIMMI LAN 2 TANE DAHA İÇERİ

// Nixware Rage Config - Optimized for SCAR/SSG08

[Aimbot]
Enabled=1
Silent=1
AutoFire=1
AutoWall=1
Hitchance_Auto=55
MinDamage_Auto=25
Hitchance_Scout=75
MinDamage_Scout=70
Hitchance_AWP=85
MinDamage_AWP=100
MultiPoint=1
PointScale=0.60
TargetSelection=Crosshair

[AntiAim]
Enabled=1
Pitch=Down
Yaw=Static
YawAdd=180
Desync=1
DesyncAmount=58
FakeLag=1
FakeLagAmount=14
ManualLeft=Key_Left
ManualRight=Key_Right
ManualBack=Key_Down

[Exploits]
DoubleTap=1
DoubleTapSpeed=Quick
HideShots=1
Teleport=1

[Visuals]
EnemyBox=1
EnemyName=1
EnemyWeapon=1
EnemyHealth=1
ChamsEnemy=1
ChamsVisibleColor=255,0,0
ThirdPerson=1
ThirdPersonKey=V
FOV=110

[Misc]
AutoBunnyhop=1
AutoStrafe=1
RankReveal=1

CFG EFENİM
nix kullanan var mı ya
 
Sen kumru ai mısın ya

LAN AGAPRO ATIYIMMI LAN 2 TANE DAHA İÇERİ

// Nixware Rage Config - Optimized for SCAR/SSG08

[Aimbot]
Enabled=1
Silent=1
AutoFire=1
AutoWall=1
Hitchance_Auto=55
MinDamage_Auto=25
Hitchance_Scout=75
MinDamage_Scout=70
Hitchance_AWP=85
MinDamage_AWP=100
MultiPoint=1
PointScale=0.60
TargetSelection=Crosshair

[AntiAim]
Enabled=1
Pitch=Down
Yaw=Static
YawAdd=180
Desync=1
DesyncAmount=58
FakeLag=1
FakeLagAmount=14
ManualLeft=Key_Left
ManualRight=Key_Right
ManualBack=Key_Down

[Exploits]
DoubleTap=1
DoubleTapSpeed=Quick
HideShots=1
Teleport=1

[Visuals]
EnemyBox=1
EnemyName=1
EnemyWeapon=1
EnemyHealth=1
ChamsEnemy=1
ChamsVisibleColor=255,0,0
ThirdPerson=1
ThirdPersonKey=V
FOV=110

[Misc]
AutoBunnyhop=1
AutoStrafe=1
RankReveal=1

CFG EFENİM
local screen_size = render.get_screen_size()
local x = screen_size.x / 2
local y = screen_size.y / 2
local function draw_indicators()
if not engine.is_connected() or not entitylist.get_local_player() then return end

local local_player = entitylist.get_local_player()
if not local_player:get_prop("m_bIsScoped") == 1 then
y_offset = 20
else
y_offset = 40
end

-- Double Tap Indicator
local dt_enabled = ui.get_bool("rage_dt_enabled")
local dt_color = dt_enabled and color.new(0, 255, 0, 255) or color.new(255, 0, 0, 255)
render.text(x - 20, y + y_offset, "DT", dt_color, 12)

-- Fake Lag / LC (Lag Compensation)
render.text(x - 20, y + y_offset + 15, "LC", color.new(150, 200, 255, 255), 12)

-- Resolver Status (Fake Skeet Text)
render.text(x - 20, y + y_offset + 30, "SENSE", color.new(200, 150, 255, 255), 12)
end
local function on_create_move(cmd)
if ui.get_bool("rage_dt_enabled") then
Tickbase manipülasyonu
if cmd.buttons & 1 ~= 0 then
client.set_cl_interp(0.01)
end
end
end




LUAAAA

local function dynamic_aa()
if not ui.get_bool("aa_enabled") then return end


local cur_time = globalvars.get_current_time()
if math.floor(cur_time * 10) % 2 == 0 then
ui.set_int("aa_desync_amount", 58)
else
ui.set_int("aa
 

Şuanda konuyu görüntüleyen kullanıcılar

Geri
Üst Alt