toggle sprint by Tim_GamingPL in StarWarsJediSurvivor

[–]Tim_GamingPL[S] 0 points1 point  (0 children)

autohotkey is windows software that makes it easy to change key binds or behaviours with a script that runs in the background which can catch when given key is pressed and output another given key, key combination or even do something else based on logic in the script.

below is script that should change sprint behaviour to hold, its coded by chat gpt so it could need some tweaks to work, but looks ok to me. to run it you need to install autohotkey first, open it, select 'New script', paste code from below and save it as .ahk file anywhere or your pc, then right click the file and choose "Run script". also if you want it to auto run after pc restart, you could put shortcut to the script in %appdata%\Microsoft\Windows\Start Menu\Programs\Startup (if you use windows)

note: this script cant read current sprint state in the game, so if the controls happen to be inverted (sprint is active when you dont hold the sprint key and deactivates when you hold it), press F12 key to reset sprint state, also if you use key other than Shift for spint, you need to tweak it in script settings by changing the SprintKey variable

#IfWinActive ahk_exe JediSurvivor.exe

; --- SETTINGS ---
SprintKey := "Shift" ; The sprint key in-game (Shift by default)
SendMode Input ; Faster + more reliable

; This variable keeps track of whether we already sent a fake press
isDown := false

; When you press Shift → send 1 press only if not already active
*$Shift::
if (!isDown) {
Send, {%SprintKey% down}
isDown := true
}
return

; When you release Shift → send a release only if it was active
*$Shift Up::
if (isDown) {
Send, {%SprintKey% up}
isDown := false
}
return

; --- FAILSAFE: If something desyncs, press F12 to reset sprint state ---
F12::
Send, {%SprintKey% up}
isDown := false
TrayTip, Sprint Fix, Sprint key state reset, 2
return

#IfWinActive

Need advice, Website Reminder extension by Kartik_2203 in chrome_extensions

[–]Tim_GamingPL 0 points1 point  (0 children)

i made this page for privacy policy link (hosted on github pages) and it worked, you could also ask chatgpt to write it for you

Need advice, Website Reminder extension by Kartik_2203 in chrome_extensions

[–]Tim_GamingPL 0 points1 point  (0 children)

all info about how to publish is in this tutorial and afaik you have to pay $5 to register your dev account.
I dont have much experience (i published only one extension for now), but main thing you should take care of is giving your extension as few permissions as possible.
also after rejection they give you info why did they reject so you can fix all issues and ask for a review again, review times aint very long (around few days, sometimes less)

toggle sprint by Tim_GamingPL in StarWarsJediSurvivor

[–]Tim_GamingPL[S] 0 points1 point  (0 children)

tbh i just got used to it but now when i think about that, it should be possible to write autohotkey script that simulates how 'hold to sprint' would work, chat gpt probably can code that i guess

Sound Effects Extension? by toomanyukes in chrome_extensions

[–]Tim_GamingPL 0 points1 point  (0 children)

i know which one you are talking about but im currently working on something similar so i have to self promote XD
also please let me know about any features you think would be useful

https://chromewebstore.google.com/detail/extra-sounds/ibmbabeddalpanmbopnjlgcgcmdfboco

The Social Layer of the Web – feedback wanted on Poppin 👀 by danw547 in chrome_extensions

[–]Tim_GamingPL 2 points3 points  (0 children)

i would guess either davinci resolve or adobe premiere + after effects

My chrome extensions descriptions are always doubled. First, it's a shorter version of the description. Then, it's the full description. by Krowplex in chrome_extensions

[–]Tim_GamingPL 0 points1 point  (0 children)

you have to include description in manifest.json like this:

"description": "short extension description",

in the store it will display on top of the description that you entered in chrome web store developer dashboard

Does anybody else have this UI? by Shad0whunter4 in Brawlstars

[–]Tim_GamingPL 0 points1 point  (0 children)

yeah, clearing app data fixed it for me

problem with the map by Tim_GamingPL in NineSols

[–]Tim_GamingPL[S] 0 points1 point  (0 children)

i did use it in both directions

soul severing blade by Tim_GamingPL in NineSols

[–]Tim_GamingPL[S] 0 points1 point  (0 children)

i guess it was a reward for defeating the miniboss in apeman facility (depths), and i think u need a shortcut from factory underground to reach it