NutBoi Posted May 7, 2021 Posted May 7, 2021 I'm trying to save the script in GECK but no matter waht I do It won't save something has got to be wrong with the script. I wouldn't know because I'm shit. scn Sheeeh int bIsSheeehPressed Begin GameMode if bIsSheeehPressed != IsKeyPressed 50 set bIsSheeehPressed to IsKeyPressed 50 if bIsSheeehPressed playsound zSheeehfx 1 endif endif End
Neutron_rus Posted May 8, 2021 Posted May 8, 2021 scn Sheeeh int bIsSheeehPressed Begin GameMode if IsKeyPressed 50 && bIsSheeehPressed == 0 set bIsSheeehPressed to 1 endif if bIsSheeehPressed playsound zSheeehfx 1 set bIsSheeehPressed to 0 endif End or scn Sheeeh int bIsSheeehPressed int iSomeKey1 Begin GameMode set iSomeKey1 to 50 ;good for creating mcm menu and editing hotkeys from there if IsKeyPressed iSomeKey1 && bIsSheeehPressed == 0 set bIsSheeehPressed to 1 endif if bIsSheeehPressed playsound zSheeehfx 1 set bIsSheeehPressed to 0 endif End "IsKeyPressed" is also a nvse command, so you need to launch GECK with nvse enabled(launch nvse_loader.exe with -editor command) or download geck extender from nexus that already have patched exe + some extra features
peterpan13 Posted May 8, 2021 Posted May 8, 2021 scn Sheeeh int bIsSheeehPressed Begin GameMode if bIsSheeehPressed != IsKeyPressed 50 set bIsSheeehPressed to IsKeyPressed 50 playsound zSheeehfx 1 endif End
Recommended Posts
Archived
This topic is now archived and is closed to further replies.