Aller au contenu

bryhud

GamerLine
  • Compteur de contenus

    97
  • Inscription

  • Dernière visite

Messages posté(e)s par bryhud

  1. 5 hours ago, miki91 said:

    any help for the ahk file?

     

    Not sure what you are looking for here but here is my basic ahk script.

     

    This will rotate the screen

    Then it sets the cursor using the script I posted above

    Then it will launch the game

    Esc will close the game, rotate the monitor back and sets the cursor to what you had previously

     

    It also maps some of my cabinet keys to game functions

     

    Again I use the trackball to move the cursor

    n is left click

    5 will add coins, normally c

    m will add 50 coins, normally i

     

    #SingleInstance Force
    Run, C:\HyperV\Emulators\sonicdashextreme\exe\rotate.exe 270 1080 1920
    Run, C:\HyperV\setcursor.exe
    Sleep 1000
    Run, "C:\HyperV\Emulators\CandyCrush\Candy_Crush_Arcade.exe"
    return
    ESC::
    Process, Close, cmd.exe
    Run, C:\HyperV\Emulators\sonicdashextreme\exe\rotate.exe 0 1920 1080
    Process, Close, Candy_Crush_Arcade.exe
    ExitAPP
    
    n::LButton
    5::c
    m::i

     

  2. this game works well with a trackball on my vertical cabinet, just set one of my buttons to be left click to grab the jewel. I also found a script online to swap out the mouse cursor when running this game. Replace the cursor with a peppermint candy. Looks awesome

     

    One question I had, is there any way to set the levels back to 1. If you are playing and get to lets say level 5 and then exit. When I start the game back up it is on level 5 still.

     

    Thanks

    Here is the code for changing the cursor and the cursor I used. Just add it to an AHK and run before starting the game. When you exit it sets the cursor back to whatever you had.

     

    Cursor = C:\HyperV\Busy.cur
        CursorHandle := DllCall( "LoadCursorFromFile", Str,Cursor )
    
        ; change cursor size
        IMAGE_BITMAP := 0x0
        IMAGE_CURSOR := 0x2
        IMAGE_ICON := 0x1
    
        ; size
        cx := 48, cy := cx
    
        ; fuFlags
        LR_COPYFROMRESOURCE := 0x4000
    
        CursorHandle := DllCall( "CopyImage", uint,CursorHandle, uint,IMAGE_CURSOR, int,cx, int,cy, uint,0 )
    
        ; replace cursor
        Cursors = 32512,32513,32514,32515,32516,32640,32641,32642
                 ,32643,32644,32645,32646,32648,32649,32650,32651
        Loop, Parse, Cursors, `,
            DllCall( "SetSystemCursor", Uint,CursorHandle, Int,A_Loopfield )
    
    return ; end of auto-execute section
    
    
    $Esc:: ; restore system cursor
        SPI_SETCURSORS := 0x57
        DllCall( "SystemParametersInfo", UInt,SPI_SETCURSORS, UInt,0, UInt,0, UInt,0 )
        ExitApp
    
    return

     

    Busy.cur

  3. 3 hours ago, danielferr said:

    Hello, anyone get the Flappy Tickets and Shooty Skies running in portrait mode?

    I try the option of the manual (ALT-P in keyboard) but dosent work.

    I use a rotate monitor and rotate the windows screen too but no sucess on this 2 games

    Tanks

     

    There are registry settings for these games that seem to get overwritten back to 1080 1080

    they are located in the below registry

    HKEY_CURRENT_USER\Software\Sarbakan

     

    You want to update Screenmanager Resolution Height_h2627697771 to 1920

    I basically have updated the registry and then exported it and then use an ahk script to call irotate to rotate the screen 270 and then import the reg export from above before starting the game. Seems to work just fine every time

     

    FYI for setting options in all three games

    o brings up test mode

    numpad 1 = up

    numpad 3 = down

    numpad 2 = enter

     

  4. 1 hour ago, nohero said:

     

    Here it goes away after first screen ( the wallpaper ), so for me it's not a problem.

     

    CHEERs

     

    For me the box remains during gameplay as well. It will disappear if I go into test menu and back out.

     

    I have same issue as Jayinem as well in regard to calibration sticking. Seems it is off again after closing the game and restarting. As he mentioned hopefully I am saving the calibration wrong or something.

  5. On 2/13/2020 at 2:56 AM, fire10 said:

    I created a custom resolution in windows 10 as 854 x 480 like DJ expert told me. This allows windows to change the games res to that res when you set it in rhloader in the following instructions. I then set in settings 1 in rhloader 1st window tab to 640 x 480 and on the same tab ticked monitor resolution at the bottom and set it to 854 x 480. I hope that helps, thanks again djexpert, so much better seeing the game unstretched

    Thank you.  You using these steps with the original exe or one of the HD exes?  Thanks

×
×
  • CrĂ©er...