Skip to content
This repository has been archived by the owner on Nov 10, 2022. It is now read-only.

Commit

Permalink
First release
Browse files Browse the repository at this point in the history
  • Loading branch information
Martinus-1453 committed Jan 10, 2021
1 parent 375eee0 commit 2619a5a
Show file tree
Hide file tree
Showing 2 changed files with 71 additions and 0 deletions.
2 changes: 2 additions & 0 deletions .gitignore
Original file line number Diff line number Diff line change
@@ -0,0 +1,2 @@

*.exe
69 changes: 69 additions & 0 deletions NWN_PolishLetters.ahk
Original file line number Diff line number Diff line change
@@ -0,0 +1,69 @@
#NoEnv ; Recommended for performance and compatibility with future AutoHotkey releases.
; #Warn ; Enable warnings to assist with detecting common errors.
SendMode Input ; Recommended for new scripts due to its superior speed and reliability.
SetWorkingDir %A_ScriptDir% ; Ensures a consistent starting directory.

#IfWinActive ahk_exe nwmain.exe
RAlt & a::
If GetKeyState("Shift","p")
Send, ¥
else
Send, ¹
return

#IfWinActive ahk_exe nwmain.exe
RAlt & n::
If GetKeyState("Shift","p")
Send, Ñ
else
Send, ñ
return

#IfWinActive ahk_exe nwmain.exe
RAlt & l::
If GetKeyState("Shift","p")
Send, £
else
Send, ³
return

#IfWinActive ahk_exe nwmain.exe
RAlt & e::
If GetKeyState("Shift","p")
Send, Ê
else
Send, ê
return

#IfWinActive ahk_exe nwmain.exe
RAlt & c::
If GetKeyState("Shift","p")
Send, Æ
else
Send, æ
return

#IfWinActive ahk_exe nwmain.exe
RAlt & z::
If GetKeyState("Shift","p")
Send, ¯
else
Send, ¿
return

#IfWinActive ahk_exe nwmain.exe
RAlt & s::
If GetKeyState("Shift","p")
Send, Œ
else
Send, œ
return

#IfWinActive ahk_exe nwmain.exe
RAlt & x::
If GetKeyState("Shift","p")
Send, 
else
Send, Ÿ
return

0 comments on commit 2619a5a

Please sign in to comment.