Change keybind on .cs file

nijecheater

Active member
Joined
Dec 10, 2022
Messages
35
Reaction score
2
So If i have like .cs script on F10 or whatever
Can i change it to like ALT + F10 for toggle on/off

With SCM Key Changer I only can put one key, I want to point like something + something to toggle off or on
ALT + F10 or whatever
 

Attachments

  • Screenshot_144.png
    Screenshot_144.png
    9.6 KB · Views: 13

Fr0z3n

Well-known member
Joined
Nov 20, 2019
Messages
294
Reaction score
36
Location
Srbija
You edit code, and put multiple keys to activate... SIMPLE!
 

nijecheater

Active member
Joined
Dec 10, 2022
Messages
35
Reaction score
2
@dphome here, if you can put it on ALT + NUMPAD2 or ALT + F10

also @Fr0z3n I really dont know how to do that, and also sry for ping if you are in spam or idk. Thanks
 

Attachments

  • aaaaa.cs
    18.7 KB · Views: 7

dphome

Well-known member
Joined
Mar 21, 2020
Messages
456
Solutions
9
Reaction score
166
Location
Poland
ALT + F10
PHP:
{$CLEO .cs}
{$USE bitwise}
0000:

WHILE TRUE
WAIT 0

IF AND
0AB0:   key_pressed 18 // ALT
0AB0:   key_pressed 121 // F10
THEN
    0B12: 0@ = 0@ XOR 1        
    IF 0039:   0@ == 1
    THEN 0AD1: show_formatted_text_highpriority "~w~Triggerfinger~n~~g~ON" time 1337
    ELSE 0AD1: show_formatted_text_highpriority "~w~Triggerfinger~n~~r~OFF" time 137
    END
    WAIT 137
END

IF 0@ == TRUE
THEN
    IF 0256:   player $PLAYER_CHAR defined
    THEN 
        IF 8118:   actor $PLAYER_ACTOR NO-dead
        THEN
            IF 0AB0:   key_pressed 2 // right mouse button
            THEN
                0A8D: 1@ = read_memory 0xB6F3B8 size 4 virtual_protect 0
                1@ += 0x79C
                0A8D: 2@ = read_memory 1@ size 4 virtual_protect 0
                IF 2@ > 0
                THEN
                    8@ = 0xB73458 
                    8@ += 34 // FIRE_BULLET
                    0A8C: write_memory 8@ size 4 value 255 virtual_protect 0 
                    WAIT 100
                    0A8D: 1@ = read_memory 0xB6F3B8 size 4 virtual_protect 0
                    1@ += 0x79C
                    0A8C: write_memory 1@ size 4 value 0 virtual_protect 0
                END
            END        
        END
    END 
END

END
0A93: terminate_this_custom_script
 

Attachments

  • Triggerfinger.cs
    18.8 KB · Views: 8

dphome

Well-known member
Joined
Mar 21, 2020
Messages
456
Solutions
9
Reaction score
166
Location
Poland
this <<
PHP:
IF 0@ == TRUE
THEN
    IF 0AB0:   key_pressed 2 // right mouse button
    THEN 
        IF 0256:   player $PLAYER_CHAR defined 
        THEN
            IF 8118:   actor $PLAYER_ACTOR NO-dead
            THEN
 

Attachments

  • TriggerfingerFix.cs
    18.8 KB · Views: 16

nijecheater

Active member
Joined
Dec 10, 2022
Messages
35
Reaction score
2
@dphome thanks a lot,

one stupid question. Are they same undetectable for all anticheats'?
Is there any difference between Normal Trigger Finger And This Trigger Finger
 
Top