Kingdoms of Amalur: Re-Reckoning
0 of 0

File information

Last updated

Original upload

Created by

AliasNe0

Uploaded by

AliasNe0

Virus scan

Safe to use

Tags for this mod

13 comments

  1. rogerveee
    rogerveee
    • member
    • 0 kudos
    Sorry to disturb. But I must be slow. I keep double clicking the main exe file (the only one I downloaded) but it doesn't open. Tried opening KOARR but it still requires right click to activate skill. I tried dropping it in Desktop and game folder to no avail. Did I do something wrong?
    1. AliasNe0
      AliasNe0
      • premium
      • 84 kudos
      Hello! Try to run the app as administrator
  2. RyldvirRedbeard
    RyldvirRedbeard
    • premium
    • 0 kudos
    multiple securities flag the exe file as malware
    1. UhuruNUru
      UhuruNUru
      • premium
      • 31 kudos
      FFS, look at optional file, its a python script you can read it in Notepad,
      import time

      from pynput.keyboard import Controller, Key, KeyCode, Listener
      keyboard = Controller()

      from pynput.mouse import Controller, Button
      mouse = Controller()

      keys = [KeyCode.from_char('1'), KeyCode.from_char('2'), KeyCode.from_char('3'), KeyCode.from_char('4'), KeyCode.from_char('5'), KeyCode.from_char('6'), KeyCode.from_char('7'), KeyCode.from_char('8'), KeyCode.from_char('9'), KeyCode.from_char('0')]
      delay = 0.01

      def on_press(key):
      if key in keys :
        time.sleep(delay)
        mouse.press(Button.right)

      def on_release(key):
      if key in keys:
        time.sleep(delay)
        mouse.release(Button.right)

      with Listener(
        on_press=on_press,
        on_release=on_release) as listener:
      listener.join()
      Does exactly what it says, exe just bundles this with Python, in a one click "For noobs" mod.
    2. AliasNe0
      AliasNe0
      • premium
      • 84 kudos
      Yep 👍
  3. bread908070
    bread908070
    • premium
    • 0 kudos
    Nice, but unfortunately makes the Mark of Flame sorcery ability unusable as it's impossible to perform the secondary function as holding down either the number key or RMB just uses the primary function.
    1. AliasNe0
      AliasNe0
      • premium
      • 84 kudos
      I tested now, and it works fine if you hold down a number key.
  4. Nahadoth
    Nahadoth
    • member
    • 0 kudos
    Hello :) I think it is my very first comment on the nexus so I hope I won't mess it.

    First of all, thank you for your work.

    Then, I think I am to dumb to make your mod works... I download the .exe and put it in the game folder, double click on it before starting the game, it opens a console but nothing happen, and then, when I check in game, the ugly mouse button remains. Any tips to make it works please?
    1. AliasNe0
      AliasNe0
      • premium
      • 84 kudos
      Hello,

      Thank you! No worries =) Have you tried to use skills on the action bar? They should work immediately after you press 1,2 .. 9, 0 keys. Note that the mod does not change the game UI in any way, but it just slightly changes the input from your keyboard.
    2. Nahadoth
      Nahadoth
      • member
      • 0 kudos
      Ok, I am an idiot x) I thought it would erase the ugly mouse button. Thank you very much for your mod and your help!
  5. Nyzarion
    Nyzarion
    • member
    • 0 kudos
    Yeah very nice thx mate ! :D
  6. Asmir4us
    Asmir4us
    • supporter
    • 0 kudos
    very nice! thank you
    1. AliasNe0
      AliasNe0
      • premium
      • 84 kudos
      Glad to help!