Jump to content

Any way to bind console commands?


Jman1070

Recommended Posts

Posted

Does anyone know of a way for me to bind something such as (player.additem f 100) to a hotkey. I don't like autohotkeyer the program is a little bit annoying since it goes through the whole process of pulling console up. Thanks in advance!

Posted

Not that I know, however you can create spells to do the job when casted they give you the item and then link the spell to a hotkey. That's what I did in Oblivion.

Posted

Not that I know, however you can create spells to do the job when casted they give you the item and then link the spell to a hotkey. That's what I did in Oblivion.

I know that is possible, however I wanted to be able to use the key when I am in another form than human (Werewolf/Vampire lord). Neither of which I can use spells when transformed.

Posted

 

Not that I know, however you can create spells to do the job when casted they give you the item and then link the spell to a hotkey. That's what I did in Oblivion.

I know that is possible, however I wanted to be able to use the key when I am in another form than human (Werewolf/Vampire lord). Neither of which I can use spells when transformed.

 

 

As far as I can tell (I have no experience with the Creation Kit, just a longtime player of games in this engine) Vampire Lord has specific spells only available in that form. You might try checking the spells you can use as a VL and make a spell set up like them. Werewolf is harder since there's no favourites menu. Without changing the howl to do something else (which I don't know if that's possible), I don't see a way you could cast or use any hotkeys in werewolf form.

Posted

I have a possible solution. I'm using AutoHotkey. It's a program that allows to capture and send keystrokes.

 

Here is a script for AutoHotkey that runs "player.additem f 100" when you push the F2 key

~F2::
Send {sc029}
Sleep, 10
Send player.additem f 100
Sleep, 10
Send {Enter}
Sleep, 10
Send {sc029}
I'm not sure about the {sc029} part. That is the code for the console key in my keyboard, but maybe it's not an universal code.

 

I hope it helps.

 

Edit: Just saw that you don't like autohotkey lol

Posted

 

I have a possible solution. I'm using AutoHotkey. It's a program that allows to capture and send keystrokes.

 

Here is a script for AutoHotkey that runs "player.additem f 100" when you push the F2 key

~F2::
Send {sc029}
Sleep, 10
Send player.additem f 100
Sleep, 10
Send {Enter}
Sleep, 10
Send {sc029}
I'm not sure about the {sc029} part. That is the code for the console key in my keyboard, but maybe it's not an universal code.

 

I hope it helps.

 

Edit: Just saw that you don't like autohotkey lol

Yea AutoHotkey is a little bit annoying since it has to bring up console to accomplish the task. Thanks anyway!

Archived

This topic is now archived and is closed to further replies.

  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...