Translate

Views

Wednesday, March 26, 2025

How to hack crosshair csgo, no VAC-BAN 1000% ?

 

How to hack crosshair csgo, no VAC-BAN 1000% ?




After add code to folder, we press ~ and write: exec namefilecode -> enter -> complete

I use space to sitdown so you should setting ctrl

unbind "SPACE"
bind "SPACE" "+recoil_hold"

alias "+recoil_hold" "+duck; cl_crosshair_recoil 1; alias check_recoil"
alias "-recoil_hold" "-duck; cl_crosshair_recoil 0"

// Optional: Thêm dòng này nếu game bị delay khi thả phím
alias "check_recoil" "cl_crosshair_recoil 1"

#Con day la code neu ban muon bat tat giat tam bang phim =
# unbind =
# bind = "toggle_recoil"

# alias recoil_on "cl_crosshair_recoil 1; echo Follow Recoil: ON; bind = recoil_off"
# alias recoil_off "cl_crosshair_recoil 0; echo Follow Recoil: OFF; bind = recoil_on"
# alias toggle_recoil "recoil_on"

# recoil_on

Shortest Solution UVA 11629 - Ballot evaluation

 

  Problem  VerdictLangTimeBestRankSubmit Time
 | discuss11629 - Ballot evaluation AcceptedPython0.2800.00014092 hours ago


def f(total, com, rs):
    if com == ' <= ':
        return total <= rs
    elif com == ' >= ':
        return total >= rs
    elif com == ' = ':
        return total == rs
    elif com == ' < ':
        return total < rs
    else:
        return total > rs

p, q = map(int, input().split())
d = {}
for _ in range(p):
    x, y = input().split()
    d[x] = int(float(y)*10)
   
cnt = 1
b = [' < ', ' > ', ' <= ', ' >= ', ' = ']
for _ in range(q):
    a = list(input().split(' + '))
    com = None
    rs = 0
    for c in b:
        if (c in a[-1]):
            rs = int(a[-1].split(c)[1])*10
            a[-1] = a[-1].split(c)[0]
            com = c
    total = 0  
    for x in a:
        total += d[x]
    if f(total, com, rs):
        print(f"Guess #{cnt} was correct.")
    else:
        print(f"Guess #{cnt} was incorrect.")
    cnt += 1