Sphere

Forum Replies Created

Viewing 5 posts - 31 through 35 (of 35 total)
  • Author
    Posts
  • in reply to: Guild Wars 2 FPS Scenery Mode #105369
    Sphere
    Participant

    I now made the code more responsive by a little bit.
    I also now made it so that when the combat mode disables, it also checks to see if you are using the right mouse button at the time of combat mode ending, and if it does see this, it assumes you want to have free camera mode enabled. Just wait for the combat mode to end and your screen to zoom into your character, and then let go of the right mouse button. Easy right?

    Before it would wait until combat mode ended, and then wait for 1 second of the right mouse button being held down before registering free camera mode. Now it’s a lot better I think. Enjoy~

    And here is the new code below:

    ==============================

    As the title says.

    The intent of this app is for the use of FPS mode, which you can activate normally in the game’s options. When you run this app along side the game, you play in FPS, until you do combat, where the game will zoom out, and after combat, zoom back in.

    This app also supports free camera mode, where you don’t need to hold down the right mouse button to move the camera. It works where you hold down the right mouse button for one second, and then it registers that you wish to free camera mode. Clicking the right mouse button again will free you from this mode. Free camera mode will deactivate while in combat, allowing you to use ground select skills. It will however not reactivate after combat, unless you are holding down the right mouse button.

    This app is very useful for virtual reality Guild Wars 2. You will need to have installed vorpX to play Guild Wars 2 in VR. Remember while playing this game with virtual reality, for best effect, set in the options of the game the Field of View to maximum, the slider all the way to the right.

    Features:
    * Zoom out for combat, FPS in non-combat.
    * Can use the regular zoom feature of the mouse wheel at anytime.
    * Free camera mode available to use. No need to hold down right mouse click.
    * Insert + Delete key closes the application.
    * Added support for vorpX virtual reality. Zoom in and out of the VR experience. Must press the numpad + key at the start of your VR experience to calibrate screen. Calibration will allow you to more easily see the skill icons, boons, etc… This feature was designed to be run at 1080p. Press numpad + for use. VorpX also has their own type of zoom feature as well. To use the vorpX zoom feature, press the scroll click on your mouse for effect. Both zooms work in a different way.

    You will now notice that I include the time it was last updated in the code. I hope that helps.

    Say hello to some mediocre code that runs as advertised.
    You will need AutoIt3

    
    ; Updated Last: 09/08/2016 dmy, 2:34 PM AEST
    #include <Misc.au3>
    $dll = DllOpen("user32.dll")
    Opt("TrayIconHide", 1)
    ToolTip("FPS Scenery", 268, 0)
    
    $esc = 0
    $combat = 0
    $right = 0
    $right_on = 0
    $cnt = 0
    $combat_on = 0
    $zoom = 0 ; 0 is zoomed in, 1 is zoomed out
    
    Do
    	If _IsPressed("2D", $dll) and _IsPressed("2E", $dll) Then ; escape [Insert + Delete]
    		MouseUp("right")
    		DllClose($dll)
    		Exit
    	EndIf
    	
    	If _IsPressed("6B", $dll) Then ; num+ on number pad to zoom in and out of VR [vorpX supported]
    		If($zoom = 0) Then
    			$zoom = 1
    			Send("{shiftdown}")
    			Sleep(100)
    			MouseWheel("down",30)
    			Sleep(400)
    			Send("{shiftup}")
    		Else
    			$zoom = 0
    			Send("{shiftdown}")
    			Sleep(100)
    			MouseWheel("up",5)
    			Sleep(400)
    			Send("{shiftup}")
    			Sleep(100)
    			MouseWheel("up",20)
    		EndIf
    	EndIf
    	$cnt = $cnt + 1 ; 1 second code handler
    	If($cnt >= 100) Then
    		$cnt = 0
    		If($combat > 0) Then
    			$combat = $combat + 1
    		EndIf
    		If($right >= 40) and ($combat = 0) Then
    			If($right_on = 0) Then
    				$right_on = 1
    				Sleep(100)
    			Else
    				$right_on = 0
    				$right = 0
    			EndIf
    		Else
    			$right = 0
    		EndIf
    	EndIf
    	
    	If($right_on = 1) and ($right >= 40) and _IsPressed("02", $dll) = False Then ; activate free camera here
    		Sleep(25)
    		MouseDown("right")
    		$right = 0
    	EndIf
    	If($right_on = 1) and ($right < 40) and _IsPressed("02", $dll) = False Then ; cancel free camera mode
    		$right_on = 0
    		$right = 0
    	EndIf
    	
    	; start skill detection
    	If _IsPressed("30", $dll) or _IsPressed("31", $dll) or _IsPressed("32", $dll) or _IsPressed("33", $dll) or _IsPressed("34", $dll) or _IsPressed("35", $dll) or _IsPressed("36", $dll) or _IsPressed("37", $dll) or _IsPressed("38", $dll) or _IsPressed("39", $dll) Then
    		$combat = 1
    	EndIf
    	If _IsPressed("02", $dll) and ($combat = 0) and ($right_on = 0) Then
    		$right = $right + 1
    	EndIf
    	Sleep(2)
    	
    	; zooming
    	If($combat = 1) and ($combat_on = 0) Then
    		$right_on = 0
    		$right = 0
    		MouseClick("right")
    		MouseWheel("down",20)
    		$combat_on = 1
    	EndIf
    	If($combat = 6) Then
    		$combat = 0
    		$combat_on = 0
    		MouseWheel("up",20)
    		If _IsPressed("02") Then
    			$right = 40
    		EndIf
    	EndIf
    	
    Until $esc = 1
    
    in reply to: Guild Wars 2 FPS Scenery Mode #105177
    Sphere
    Participant

    VorpX allows another method to zoom in and out. It is activated by the scroll click button on your mouse. This is not a complete replacement of the zoom that this app provides. In fact the zoom feature can be used to calibrate the screen to allow for viewing skill icons, boons, etc, while in VR mode.

    in reply to: GTX 1080s in use yet? (Skyrim/Fallout) #105172
    Sphere
    Participant

    I need a lot more money before I consider upgrading to a Pascal Titan. That and I also need to get a waterblock for the card too, so the cost will be up there. $1200 USD when converted to AUD, won’t be the same when sold here. I expect the card to be definitely over $2000 here in Australia. That’s a good chunk of money. You could buy a good laptop with that money. On top of that cost is the waterblock that I mentioned before.

    I am also curious about this topic, and would like to see what others have experienced.

    in reply to: Guild Wars 2 FPS Scenery Mode #105143
    Sphere
    Participant

    Updated.

    As the title says.

    The intent of this app is for the use of FPS mode, which you can activate normally in the game’s options. When you run this app along side the game, you play in FPS, until you do combat, where the game will zoom out, and after combat, zoom back in.

    This app also supports free camera mode, where you don’t need to hold down the right mouse button to move the camera. It works where you hold down the right mouse button for one second, and then it registers that you wish to free camera mode. Clicking the right mouse button again will free you from this mode. Free camera mode will deactivate while in combat, allowing you to use ground select skills. It will however not reactivate after combat, unless you are holding down the right mouse button.

    This app is very useful for virtual reality Guild Wars 2. You will need to have installed vorpX to play Guild Wars 2 in VR. Remember while playing this game with virtual reality, for best effect, set in the options of the game the Field of View to maximum, the slider all the way to the right.

    Features:
    * Zoom out for combat, FPS in non-combat.
    * Can use the regular zoom feature of the mouse wheel at anytime.
    * Free camera mode available to use. No need to hold down right mouse click.
    * Insert + Delete key closes the application.
    * Added support for vorpX virtual reality. Zoom in and out of the VR experience. Must press the numpad + key at the start of your VR experience to calibrate screen. Designed to be run at 1080p. Press numpad + for use.

    Say hello to some mediocre code that runs as advertised.
    You will need AutoIt3

    #include <Misc.au3>
    $dll = DllOpen("user32.dll")
    Opt("TrayIconHide", 1)
    ToolTip("FPS Scenery", 268, 0)
    
    $esc = 0
    $combat = 0
    $right = 0
    $right_on = 0
    $cnt = 0
    $combat_on = 0
    $zoom = 0 ; 0 is zoomed in, 1 is zoomed out
    
    Do
    	If _IsPressed("2D", $dll) and _IsPressed("2E", $dll) Then ; escape [Insert + Delete]
    		MouseUp("right")
    		DllClose($dll)
    		Exit
    	EndIf
    	
    	If _IsPressed("6B", $dll) Then ; num+ on number pad to zoom in and out of VR [vorpX supported]
    		If($zoom = 0) Then
    			$zoom = 1
    			Send("{shiftdown}")
    			Sleep(100)
    			MouseWheel("down",30)
    			Sleep(400)
    			Send("{shiftup}")
    		Else
    			$zoom = 0
    			Send("{shiftdown}")
    			Sleep(100)
    			MouseWheel("up",5)
    			Sleep(400)
    			Send("{shiftup}")
    			Sleep(100)
    			MouseWheel("up",20)
    		EndIf
    	EndIf
    	$cnt = $cnt + 1 ; 1 second code handler
    	If($cnt >= 100) Then
    		$cnt = 0
    		If($combat > 0) Then
    			$combat = $combat + 1
    		EndIf
    		If($right >= 40) and ($combat = 0) Then
    			If($right_on = 0) Then
    				$right_on = 1
    				Sleep(100)
    			Else
    				$right_on = 0
    				$right = 0
    			EndIf
    		Else
    			$right = 0
    		EndIf
    	EndIf
    	
    	If($right_on = 1) and ($right >= 40) and _IsPressed("02", $dll) = False Then ; activate free camera here
    		Sleep(100)
    		MouseDown("right")
    		$right = 0
    	EndIf
    	If($right_on = 1) and ($right < 40) and _IsPressed("02", $dll) = False Then ; cancel free camera mode
    		$right_on = 0
    		$right = 0
    	EndIf
    	
    	; start skill detection
    	If _IsPressed("30", $dll) or _IsPressed("31", $dll) or _IsPressed("32", $dll) or _IsPressed("33", $dll) or _IsPressed("34", $dll) or _IsPressed("35", $dll) or _IsPressed("36", $dll) or _IsPressed("37", $dll) or _IsPressed("38", $dll) or _IsPressed("39", $dll) Then
    		$combat = 1
    	EndIf
    	If _IsPressed("02", $dll) and ($combat = 0) and ($right_on = 0) Then
    		$right = $right + 1
    	EndIf
    	Sleep(5)
    	
    	; zooming
    	If($combat = 1) and ($combat_on = 0) Then
    		$right_on = 0
    		$right = 0
    		MouseClick("right")
    		MouseWheel("down",20)
    		$combat_on = 1
    	EndIf
    	If($combat = 6) Then
    		$combat = 0
    		$combat_on = 0
    		MouseWheel("up",20)
    	EndIf
    	
    Until $esc = 1
    in reply to: Guild Wars 2 FPS Scenery Mode #105141
    Sphere
    Participant

    I am currently in the process of updating this app to support more features. However the app is being designed for a resolution of 1080p. A shame this forum does not let users edit their posts.

Viewing 5 posts - 31 through 35 (of 35 total)

Spread the word. Share this post!