fork download
  1. -- ตัวอย่างการกำหนดค่าความไว (Sensitivity)
  2. local headshot_sensitivity = 100
  3. local aim_lock = true
  4.  
  5. function setup_aim()
  6. if aim_lock == true then
  7. print("Aim Lock System: Activated")
  8. -- ในระบบจริงตรงนี้ต้องเชื่อมต่อกับ Memory Address ของเกม
  9. else
  10. print("System: Deactivated")
  11. end
  12. end
  13.  
  14. setup_aim()
  15.  
Success #stdin #stdout 0s 5320KB
stdin
Standard input is empty
stdout
Aim Lock System: Activated