The Walking Dead

The Walking Dead

檢視統計資料:
Yuta 2014 年 1 月 1 日 上午 5:53
How to pause?
I couldn't catch up the subtitles - I'm a slow reader. Help?
< >
目前顯示第 1-15 則留言,共 22
Yuta 2014 年 1 月 1 日 上午 6:00 
I pressed Pause/Break, and it didn't work. Don't tell me Esc because it will change the view, and I can't see the subtitles.
最後修改者:Yuta; 2014 年 1 月 1 日 上午 6:16
Turtle 2014 年 1 月 1 日 上午 10:33 
Do you have sound? Why dont you just listen?
Yuta 2014 年 1 月 1 日 下午 8:41 
引用自 TurtleOfDoom
Do you have sound? Why dont you just listen?
Yes, I do have. But English is not my native language. I can read, but I'm not used to listen to. Well, guess there is no pause button. Thanks for replying anyway.
最後修改者:Yuta; 2014 年 1 月 1 日 下午 9:50
76561198020772102 2014 年 1 月 18 日 上午 10:49 
There is a way to suspend the process (pause the game) i use an Autohotkeyscript with Pssuspend.exe my code is :

run WalkingDead101.exe

Sleep, 15000

SetTimer, check_window, 500
return

check_window:
Process, Exist, WalkingDead101.exe
If (ErrorLevel = 0)
ExitApp

f3::suspend

space::
if a!=1
{
a=1
Run, "pssuspend.exe" walkingdead101.exe, , hide
return
}
else
{
a=2
Run, "pssuspend.exe" -r walkingdead101.exe, , hide
}
return

here's a link to a rar file:

{連結已移除}

this contains the autohotkey installer, pssuspend and a script with the code above starting from "space::" .. it doesn't start the game or check if the game is still running so u have to close the script when u are done (or u can change the code .. ). I don't have the steam version of the game but if the steam version has the same "process" name in task manager (walkingdead101.exe) .. then this should work.

I noticed sometimes after u suspend the game the timer's still running but u can press the option u want and when u resume even if u waited too long the game will accept the option u chose.
I hope this helps some of u .. also if u didn't use autohotkey before .. try it it's awesome i used it for many games dmc for example i made a few changes to the controls to switch forms and corresponding weapons with the same button (daemonfrom-daemon weapons, angerlform ...) also used it for a few IMPOSSIBLE to do combos using keyboard/mouse.
最後修改者:alex_ul2009; 2014 年 1 月 19 日 下午 1:01
Yuta 2014 年 1 月 18 日 下午 10:02 
引用自 alex_ul2009
There is a way to suspend the process (pause the game) i use an Autohotkeyscript with Pssuspend.exe my code is :

run WalkingDead101.exe

Sleep, 15000

SetTimer, check_window, 500
return

check_window:
Process, Exist, WalkingDead101.exe
If (ErrorLevel = 0)
ExitApp

f3::suspend

space::
if a!=1
{
a=1
Run, "pssuspend.exe" walkingdead101.exe, , hide
return
}
else
{
a=2
Run, "pssuspend.exe" -r walkingdead101.exe, , hide
}
return
Oh,ok. Thanks.
BOTAKBOT 2014 年 3 月 5 日 上午 7:16 
alex_ul2009 thanks a lot !!!
tomek1ni [PL] 2014 年 7 月 30 日 上午 1:47 
has anybody still have these files?.. I would like to get them also.
tomek1ni [PL] 2016 年 7 月 14 日 下午 12:11 
HA! After two years I've got it to work!!:steamhappy:
tomek1ni [PL] 2016 年 7 月 14 日 下午 12:41 
You need to download AutoHotkey from https://autohotkey.com/ and install it. Then you download PsTools from https://technet.microsoft.com/en-us/sysinternals/pssuspend.aspx.
Unpack pssuspend.exe file from PsTools archive, and place in The Walking Dead folder where the file WalkingDead101.exe is located.
Now we make the autohotkey script file by right clicking in The Walking Dead folder, 'New > AutoHotkey Script'. Name it somehow (twdp.ahk).
Right click on it and "Edit Script". Paste the whole alex_ul2009's script:
run WalkingDead101.exe Sleep, 15000 SetTimer, check_window, 500 return check_window: Process, Exist, WalkingDead101.exe If (ErrorLevel = 0) ExitApp f3::suspend space:: if a!=1 { a=1 Run, "pssuspend.exe" walkingdead101.exe, , hide return } else { a=2 Run, "pssuspend.exe" -r walkingdead101.exe, , hide } return
save and exit.
Now important: lunch the pssuspend.exe file by double clicking it. It will install it self or something. Without that action the script had not worked properly.
Lunch the twdp.ahk script file (double clicking on it) and the game should start.
You freeze the game when you press Space button on you keyboard.
After exiting the game you need to stop the script. You do it by right clicking on H icon next to your clock on your taskbar, and Exit.
最後修改者:tomek1ni [PL]; 2016 年 7 月 14 日 下午 12:45
neoghoul 2016 年 11 月 8 日 下午 2:39 
引用自 tomek1ni PL
You need to download AutoHotkey from https://autohotkey.com/ and install it. Then you download PsTools from https://technet.microsoft.com/en-us/sysinternals/pssuspend.aspx.
Unpack pssuspend.exe file from PsTools archive, and place in The Walking Dead folder where the file WalkingDead101.exe is located.
Now we make the autohotkey script file by right clicking in The Walking Dead folder, 'New > AutoHotkey Script'. Name it somehow (twdp.ahk).
Right click on it and "Edit Script". Paste the whole alex_ul2009's script:
run WalkingDead101.exe Sleep, 15000 SetTimer, check_window, 500 return check_window: Process, Exist, WalkingDead101.exe If (ErrorLevel = 0) ExitApp f3::suspend space:: if a!=1 { a=1 Run, "pssuspend.exe" walkingdead101.exe, , hide return } else { a=2 Run, "pssuspend.exe" -r walkingdead101.exe, , hide } return
save and exit.
Now important: lunch the pssuspend.exe file by double clicking it. It will install it self or something. Without that action the script had not worked properly.
Lunch the twdp.ahk script file (double clicking on it) and the game should start.
You freeze the game when you press Space button on you keyboard.
After exiting the game you need to stop the script. You do it by right clicking on H icon next to your clock on your taskbar, and Exit.

Yeah, I'm necro-posting the ♥♥♥♥ out of this.
@tomek1ni First, thanks it works....kinda. I can pause now whenever I wish, but in dialog selection segments my pause always results in Lee saying nothing:/ Do you guys have the same problem?
最後修改者:neoghoul; 2016 年 11 月 8 日 下午 2:40
Turtle 2016 年 11 月 8 日 下午 3:01 
cmon this is near 3 year old threat stop reviving it xD
Spockus 2016 年 11 月 8 日 下午 4:51 
引用自 Turtle
cmon this is near 3 year old threat stop reviving it xD

lol ikr
Geek In Peace 2017 年 8 月 10 日 上午 11:35 
Works like a charm with the script ! Thanks a lot !
Ayurai 2018 年 1 月 6 日 下午 4:22 
cheat engine works in the same way.
Thanatos 2018 年 1 月 19 日 下午 5:53 
Quite apropos that a game featuring the revived dead having threads being revived continuously from the dead.
< >
目前顯示第 1-15 則留言,共 22
每頁顯示: 1530 50