• Home
  • Index
  • Search
  • Download
  • Server Rules
  • House Roleplay Laws
  • Player Utilities
  • Player Help
  • Forum Utilities
  • Returning Player?
  • Toggle Sidebar
Interactive Nav-Map
Tutorials
New Wiki
ID reference
Restart reference
Players Online
Player Activity
Faction Activity
Player Base Status
Discord Help Channel
DarkStat
Server public configs
POB Administration
Missing Powerplant
Stuck in Connecticut
Account Banned
Lost Ship/Account
POB Restoration
Disconnected
Member List
Forum Stats
Show Team
View New Posts
View Today's Posts
Calendar
Help
Archive Mode




Hi there Guest,  
Existing user?   Sign in    Create account
Login
Username:
Password: Lost Password?
 
  Discovery Gaming Community Discovery General Discovery RP 24/7 General Discussions
« Previous 1 … 48 49 50 51 52 … 778 Next »
multiple keymaps - possible ?

Server Time (24h)

Players Online

Active Events - Scoreboard

Latest activity

multiple keymaps - possible ?
Offline ronillon
08-17-2017, 11:14 AM,
#34
Copper Storage Depot
Posts: 563
Threads: 19
Joined: Oct 2012

(08-17-2017, 01:15 AM)maddog_dave Wrote: That will switch the keys, when freelancer is the active window, but I'm after a toggle, so that I can change them back and forth when I want. Your script won't do that.

I need to be able to switch between the two on a keypress, and I can't get that working.

I think my script is close, but obviously not right.

Heeeeeeeeeeelp. Wink

Well, ofcourse not, that was not my intention at that point. The previous script switches the keys just fine and it works for steering in game.

The trouble is, that althought what you want seems rather simple, it is in fact not that easy to achieve. Or at least, I have not figured the way yet.

The following AHK script does switch WASD and Arrow Keys in Freelancer and can be toggled On/Off by F12.
The trouble here is, that although it does work correctly when in the chatbox, the game does not recognize the keys for ship movement. Obviously, this will need some more work.
[+]Spoiler
Code:
#IfWinActive ahk_class Freelancer
{
; Disable Hotkeys on Autohotkey start.
Hotkey, w, Off
Hotkey, a, Off
Hotkey, s, Off
Hotkey, d, Off
Hotkey, Up, Off
Hotkey, Left, Off
Hotkey, Down, Off
Hotkey, Right, Off

; Toggles Hotkey On/Off
F12::
Hotkey, w, Toggle
Hotkey, a, Toggle
Hotkey, s, Toggle
Hotkey, d, Toggle
Hotkey, Up, Toggle
Hotkey, Left, Toggle
Hotkey, Down, Toggle
Hotkey, Right, Toggle
return


; Hotkey configuration
$w::
Send {Up}
return

$a::
Send {Left}
return

$s::
Send {Down}
return

$d::
Send {Right}
return

$Up::
Send {w}
return

$Left::
Send {a}
return

$Down::
Send {s}
return

$Right::
Send {d}
return
}





[+]Signature:
►BattleZones
►Ore Mining
►Sci Data Anomaly "Mining"
►Sci Data Rewards
►POB
►POB Rules
►Bretonia ►Gallia ►Kusari ►Liberty ►Rheinland | ►Model/Name/Move
►MultiMonitor Setup - noBorderWindow
►BBCode
Reply  


Messages In This Thread
multiple keymaps - possible ? - by Stabby_Dave - 08-02-2017, 06:19 PM
RE: multiple keymaps - possible ? - by Sombs - 08-02-2017, 06:31 PM
RE: multiple keymaps - possible ? - by Stabby_Dave - 08-02-2017, 06:34 PM
RE: multiple keymaps - possible ? - by DragonRider - 08-02-2017, 07:21 PM
RE: multiple keymaps - possible ? - by Stabby_Dave - 08-02-2017, 11:53 PM
RE: multiple keymaps - possible ? - by DragonRider - 08-03-2017, 07:18 AM
RE: multiple keymaps - possible ? - by Antonio - 08-03-2017, 08:46 AM
RE: multiple keymaps - possible ? - by Agetneor - 08-10-2017, 06:29 PM
RE: multiple keymaps - possible ? - by Stabby_Dave - 08-03-2017, 02:32 PM
RE: multiple keymaps - possible ? - by DragonRider - 08-03-2017, 02:38 PM
RE: multiple keymaps - possible ? - by Stabby_Dave - 08-03-2017, 06:29 PM
RE: multiple keymaps - possible ? - by Stabby_Dave - 08-10-2017, 04:59 PM
RE: multiple keymaps - possible ? - by Biggles - 08-10-2017, 05:07 PM
RE: multiple keymaps - possible ? - by Stabby_Dave - 08-10-2017, 05:30 PM
RE: multiple keymaps - possible ? - by Biggles - 08-11-2017, 11:35 PM
RE: multiple keymaps - possible ? - by DannyDelicious - 08-10-2017, 05:39 PM
RE: multiple keymaps - possible ? - by Stabby_Dave - 08-10-2017, 05:41 PM
RE: multiple keymaps - possible ? - by DannyDelicious - 08-10-2017, 05:43 PM
RE: multiple keymaps - possible ? - by Stabby_Dave - 08-10-2017, 06:28 PM
RE: multiple keymaps - possible ? - by Stabby_Dave - 08-10-2017, 06:40 PM
RE: multiple keymaps - possible ? - by DragonRider - 08-10-2017, 06:50 PM
RE: multiple keymaps - possible ? - by Stabby_Dave - 08-10-2017, 07:02 PM
RE: multiple keymaps - possible ? - by DragonRider - 08-10-2017, 07:22 PM
RE: multiple keymaps - possible ? - by Stabby_Dave - 08-10-2017, 07:31 PM
RE: multiple keymaps - possible ? - by DragonRider - 08-10-2017, 07:38 PM
RE: multiple keymaps - possible ? - by Stabby_Dave - 08-10-2017, 07:41 PM
RE: multiple keymaps - possible ? - by DragonRider - 08-10-2017, 08:00 PM
RE: multiple keymaps - possible ? - by Stabby_Dave - 08-10-2017, 08:11 PM
RE: multiple keymaps - possible ? - by Stabby_Dave - 08-15-2017, 03:46 PM
RE: multiple keymaps - possible ? - by ronillon - 08-15-2017, 08:22 PM
RE: multiple keymaps - possible ? - by Stabby_Dave - 08-17-2017, 01:15 AM
RE: multiple keymaps - possible ? - by ronillon - 08-17-2017, 11:14 AM
RE: multiple keymaps - possible ? - by DannyDelicious - 08-17-2017, 01:49 AM
RE: multiple keymaps - possible ? - by Stabby_Dave - 08-17-2017, 03:25 AM
RE: multiple keymaps - possible ? - by Laz - 08-17-2017, 12:12 PM
RE: multiple keymaps - possible ? - by Laz - 08-17-2017, 12:12 PM
RE: multiple keymaps - possible ? - by ronillon - 08-17-2017, 10:28 PM
RE: multiple keymaps - possible ? - by Stabby_Dave - 08-18-2017, 02:13 PM

  • View a Printable Version
  • Subscribe to this thread


Users browsing this thread:
1 Guest(s)



Powered By MyBB, © 2002-2025 MyBB Group. Theme © 2014 iAndrew & DiscoveryGC
  • Contact Us
  •  Lite mode
Linear Mode
Threaded Mode