I played some game recently (forget which) which really abused that pause, and it was tiresome getting through dialog. Beware.
This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.
Show posts MenuQuote from: DoorKnobHandle on Tue 13/05/2014 17:24:10Honestly, and I'm pretty sure this is controversial to some, I don't think I agree. He's sorta funny (although not particularly in my opinion, he seems to force it a bit) and, most importantly, he seems to be really hard to interact with (ironically). He doesn't even pay attention to what the interviewer/other person says half the time. I know this is not exactly a normal situation and I'm not going to judge him based on that bit of gameplay alone but I can't say that this video made me think: "What a cool boss to have", quite the opposite!Keep in mind there's not really an "interviewer", it's the same camera crew who have been filming him and everyone in his office for months.
GameWidth = 320
GameHeight = 200
GameExe = Game.exe
GameCfg = acsetup.cfg
scrX = %A_ScreenWidth%
scrY = %A_ScreenHeight%
IniWrite, 1, %GameCfg%, misc, windowed
IniWrite, center, %GameCfg%, misc, renderstyle
IniWrite, %scrX%, %GameCfg%, misc, screenwidth
IniWrite, %scrY%, %GameCfg%, misc, screenheight
if (scrX >= GameWidth*4 and scrY >= GameHeight*4) {
IniWrite, StdScale4, %GameCfg%, misc, gfxfilter
}
else if (scrX >= GameWidth*3 and scrY >= GameHeight*3) {
IniWrite, StdScale3, %GameCfg%, misc, gfxfilter
}
else if (scrX >= GameWidth*2 and scrY >= GameHeight*2) {
IniWrite, StdScale2, %GameCfg%, misc, gfxfilter
}
else {
IniWrite, None, %GameCfg%, misc, gfxfilter
}
Run, %GameExe%, , , OutputVarPID
WinWait, ahk_pid %OutputVarPID%
WinSet, Style, -0xC00000, ahk_pid %OutputVarPID%
WinWaitActive, ahk_pid %OutputVarPID%
MouseMove, %GameWidth% / 2, %GameHeight% / 2
ExitApp
By continuing to use this site you agree to the use of cookies. Please visit this page to see exactly how we use these.
Page created in 0.061 seconds with 17 queries.