mgsweet / Apex-NoRecoil-2021

Scripts to reduce recoil for Apex Legends. (auto weapon detection, support multiple resolutions)

Geek Repo:Geek Repo

Github PK Tool:Github PK Tool

Hemlok!!!!

Eternally6 opened this issue · comments

Why isn't my Hemlock working?

cause its no longer care package , change it in script it will work, its easy to understand

how to make change

I don't know what hitch3ns do to fix it but, for me, all I need to do is copy the Hemlok script from line 442 and paste it next to line 407
or just copy paste this

} else if (check_point_color == HEAVY_WEAPON_COLOR) {
    if (CheckWeapon(FLATLINE_PIXELS)) {
        current_weapon_type := FLATLINE_WEAPON_TYPE
        current_pattern := FLATLINE_PATTERN
    } else if (CheckWeapon(PROWLER_PIXELS)) {
        current_weapon_type := PROWLER_WEAPON_TYPE
        current_pattern := PROWLER_PATTERN
    } else if (CheckWeapon(RAMPAGE_PIXELS)) {
        current_weapon_type := RAMPAGE_WEAPON_TYPE
        current_pattern := RAMPAGE_PATTERN
    } else if (CheckWeapon(CAR_PIXELS)) { 
        current_weapon_type := CAR_WEAPON_TYPE 
        current_pattern := CAR_PATTERN 
        is_gold_optics_weapon := true
    } else if (CheckWeapon(P3030_PIXELS)) {
        current_weapon_type := P3030_WEAPON_TYPE 
        current_pattern := P3030_PATTERN
    } else if (CheckWeapon(HEMLOK_PIXELS)) {
        current_weapon_type := HEMLOK_WEAPON_TYPE
        current_pattern := HEMLOK_PATTERN
        if (is_single_mode) {
            current_weapon_type := HEMLOK_SINGLE_WEAPON_TYPE
            current_pattern := HEMLOK_SINGLE_PATTERN
        }
    } 

this is exactly what i did, i mainly move the weapons to its new slot per ammo type that's it

Поправил автоматическую стрельбу на Hemlok и P2020 на версии 1.3.12 если нужно держите.
apexmaster.zip

Поправил автоматическую стрельбу на Hemlok и P2020 на версии 1.3.12 если нужно держите. apexmaster.zip

У меня никакой разницы эта версия не делает, скрипт всё так же определяет хемлок как 3030.

this is exactly what i did, i mainly move the weapons to its new slot per ammo type that's it

When I do that for hemlok, AHK just says that functions cant contain functions and points to the is_single_mode function line.

vengefulcrop

check for { } errors. you mightve added 1 too many or took out one.