diff --git a/EVE-X-Preview.json b/EVE-X-Preview.json index 727326e..9a3bd4f 100644 --- a/EVE-X-Preview.json +++ b/EVE-X-Preview.json @@ -1,5 +1,109 @@ { "_Profiles":{ + "3":{ + "Client Possitions":{ + "PhatPhuckDave":{ + "IsMaximized":0, + "height":1440, + "width":2560, + "x":0, + "y":0 + }, + "Primorium":{ + "IsMaximized":0, + "height":1440, + "width":2560, + "x":0, + "y":0 + }, + "Secundamen":{ + "IsMaximized":0, + "height":1440, + "width":2560, + "x":0, + "y":0 + } + }, + "Client Settings":{ + "AlwaysMaximize":0, + "Dont_Minimize_Clients":[ + "Example Name1", + "Example Name2", + "Example Name3" + ], + "MinimizeInactiveClients":0, + "TrackClientPossitions":1 + }, + "Custom Colors":{ + "cColorActive":"0", + "cColors":{ + "Bordercolor":[ + "FFFFFF" + ], + "CharNames":[ + "PhatPhuckDave" + ], + "IABordercolor":[ + "FFFFFF" + ], + "TextColor":[ + "FFFFFF" + ] + } + }, + "Hotkey Groups":{ + "Daves":{ + "AutoForwardOnKeypress":1, + "AutoForwardToggle":1, + "AutoForwardToggleHotkey":"SC029", + "BackwardsHotkey":"+Tab", + "Characters":[ + "PhatPhuckDave", + "Primorium", + "Secundamen" + ], + "ForwardsHotkey":"Tab" + } + }, + "Hotkeys":[ + { + "PhatPhuckDave":"lalt & 1" + }, + { + "Primorium":"lalt & 2" + }, + { + "Secundamen":"lalt & 3" + }, + { + "Tertiale":"lalt & 4" + }, + { + "Quartio":"lalt & 5" + } + ], + "Thumbnail Positions":{}, + "Thumbnail Settings":{ + "ClientHighligtBorderthickness":4, + "ClientHighligtColor":"#E36A0D", + "HideThumbnailsOnLostFocus":0, + "InactiveClientBorderColor":"#8A8A8A", + "InactiveClientBorderthickness":2, + "ShowAllColoredBorders":0, + "ShowClientHighlightBorder":1, + "ShowThumbnailTextOverlay":1, + "ShowThumbnailsAlwaysOnTop":1, + "ThumbnailOpacity":80, + "ThumbnailTextColor":"#FAC57A", + "ThumbnailTextFont":"Gill Sans MT", + "ThumbnailTextMargins":{ + "x":15, + "y":5 + }, + "ThumbnailTextSize":12 + }, + "Thumbnail Visibility":{} + }, "5":{ "Client Possitions":{ "PhatPhuckDave":{ @@ -268,6 +372,7 @@ } }, "global_Settings":{ + "AutoForwardDelay":10, "CharScreenHotkey":"", "CharacterNameOverlayHotkeyColor":"AAAAAA", "CharacterNameOverlayHotkeySize":14, @@ -281,7 +386,7 @@ "DisableLiveThumbnail":1, "Exclude_Character_Hotkey":"", "Global_Hotkeys":1, - "LastUsedProfile":"Alternate", + "LastUsedProfile":"5", "Minimize_Delay":100, "Reload_Script_Hotkey":"+SC029", "Suspend_Hotkeys_Hotkey":"!SC029", diff --git a/Lib/DefaultJSON.ahk b/Lib/DefaultJSON.ahk index e5d80b8..d6de3f9 100644 --- a/Lib/DefaultJSON.ahk +++ b/Lib/DefaultJSON.ahk @@ -30,7 +30,8 @@ "CharacterNameOverlayTextColor": "FFFFFF", "CharacterNameOverlayTextBold": true, "CharacterNameOverlayHotkeySize": 14, - "CharacterNameOverlayHotkeyColor": "AAAAAA" + "CharacterNameOverlayHotkeyColor": "AAAAAA", + "AutoForwardDelay": 0 }, "_Profiles": { "Default": { diff --git a/src/Main_Class.ahk b/src/Main_Class.ahk index 1a13961..1115546 100644 --- a/src/Main_Class.ahk +++ b/src/Main_Class.ahk @@ -650,6 +650,9 @@ This.AutoForwardTimerPending := false This.AutoForwardTimer := 0 + if (This.AutoForwardDelay > 0) + Sleep(This.AutoForwardDelay) + try { ActiveTitle := This.CleanTitle(WinGetTitle("A")) for groupIdx, Arr in This.AutoForwardGroups { diff --git a/src/Propertys.ahk b/src/Propertys.ahk index 39195ca..0d47108 100644 --- a/src/Propertys.ahk +++ b/src/Propertys.ahk @@ -119,6 +119,11 @@ class Propertys extends TrayMenu { set => This._JSON["global_Settings"]["CharacterNameOverlayHotkeyColor"] := value } + AutoForwardDelay { + get => This._JSON["global_Settings"]["AutoForwardDelay"] + set => This._JSON["global_Settings"]["AutoForwardDelay"] := value + } + ;######################## ;## Profile ThumbnailSettings