Jump to content

Katak

Members
  • Posts

    4
  • Joined

  • Last visited

  • Days Won

    1

Katak last won the day on January 9 2023

Katak had the most liked content!

Previous Fields

  • Favorite pizza topping
    cheese
  • Why do you want to join DarkMatters?
    to download files
  • Country
    France

Katak's Achievements

Leaden Juggernaut

Leaden Juggernaut (2/20)

3

Reputation

  1. I'm trying to make a script which display a countdown overlay when I press my potion button. It works fine outside of the game, it even works on the menu screen. But ingame the script can't catch my input, I don't know why. I'm playing Windowed mode. Here's the code : ; https://autohotkey.com/board/topic/1815 ... ding-time/ ;On-screen display (OSD) CustomColor = 99AA55 Gui +LastFound +AlwaysOnTop -Caption +ToolWindow Gui, Color, %CustomColor% Gui, Font, s32 ; Set a large font size (32-point). Gui, Add, Text, vMyText cBlue, 00 WinSet, TransColor, %CustomColor% Gui, Show, x0 y80 NoActivate return t:: ; hotkey t will start or reset counting counter:=0 SetTimer, UpdateOSD, -10 ; to update immediately SetTimer, UpdateOSD, 1000 return UpdateOSD: counter++ time_display:=70-counter if (time_display=0) SetTimer, UpdateOSD, off GuiControl,, MyText, %time_display% return esc::exitapp I'm sure people tried messing around with Autohotkey in the forum. I would be grateful if anyone can provide assistance to make it work ! Cheers P.S.: you need to make an executable of the script (right click, compile) and run the .exe as admin, otherwise it won't work, even on the title screen.
  2. That's so refreshing to see new Sacred 2 content shared after so many years, thanks a lot for that ! Would you be willing to share your script ? This will indeed be very helpful to keep track of the buff, since there's no icon or timer in game. And relying on swirling thingy visual cue is not really helpful when playing a christmas tree look alike toon (source warden 3 buffs). Text form is fine.
  3. Thanks a lot for taking the time, I was dreading the answer. I don't like changing the behaviour of my OS that much but I guess I'll just have to live with it. Windowed it is
  4. Hello people, Been playing Sacred 1 & 2 since I was a teenager and now I'm an old man and still playing. At the beginning fullscreen was fine, but with the release of newer and newer hardware and Operating systems the game is more and more unstable. I pretty much abandonned Fullscreen, since more often than not the game would act up, if not outright crash, and I do like reading my forums. Tried Windowed, it's fine... until I click outside of the frame by mistake (happens regularly)). Then the game goes in background and my windows taskbar hides the UI. If anyone managed to run the game borderless I need your assistance. I tried 3rd party software, like I usually do in these situations. Visually it works fine, but the UI is misaligned, basically the item is considered a few pixel higher than my cursor, even though visually I'm pointing right at it. Cheers !
×
×
  • Create New...
Please Sign In or Sign Up