Difference between revisions of "Key input"
Jump to navigation
Jump to search
imported>Wrye (Deprecated article. Use OBSE instead.) |
imported>Antares |
||
Line 41: | Line 41: | ||
:::[[User:DragoonWraith|<font face="Oblivion,Daedric" size=3>D</font>ragoon <font face="Oblivion,Daedric" size=3>W</font>raith]] [[User_talk:DragoonWraith|<font face="Oblivion,Daedric" size=2>TALK</font>]] 20:26, 30 May 2006 (EDT): I have my right-click set to Cast and middle-click (the mousewheel) set to block. | :::[[User:DragoonWraith|<font face="Oblivion,Daedric" size=3>D</font>ragoon <font face="Oblivion,Daedric" size=3>W</font>raith]] [[User_talk:DragoonWraith|<font face="Oblivion,Daedric" size=2>TALK</font>]] 20:26, 30 May 2006 (EDT): I have my right-click set to Cast and middle-click (the mousewheel) set to block. | ||
::That should work perfectly, thank you. As for dual swords.. I needed that too, but just planned to make sword #2 a shield (yet in the story they are both used as sheilds/weapons as needed...). If you come up with anything let me know. :) --[[User:Bky|Bky]] 17:45, 30 May 2006 (EDT) | ::::That should work perfectly, thank you. As for dual swords.. I needed that too, but just planned to make sword #2 a shield (yet in the story they are both used as sheilds/weapons as needed...). If you come up with anything let me know. :) --[[User:Bky|Bky]] 17:45, 30 May 2006 (EDT) | ||
With the new [[:Category:Oblivion Script Extender|script extender]], you can easily detect key presses. --[[User:Cid88|Cid88]] | |||
:So, As I understand it, this script will detect "switching" inside a 2 second time frame? I am trying to use a timer in a script of my own and am having little luck, just trying to amass as much information as I can and hopefully I will figure it out. I also posted on the [[GetSecondsPassed]] Page if it is more appropriate to reply there. | |||
::--[[User:Antares|Antares]] 10:16, 4 September 2008 (EDT) |
Revision as of 09:16, 4 September 2008
Deprecated Article
Key input is now best handled by Oblivion Script Extender. For further information or discussion, see the Talk page.
Article is a Discussion
This article is actually a discussion which was brought into the Main Wiki because it has interesting or important information. It should be converted into an actual article; if you can do this, it would be appreciated.
I need to know how (and if) I can handle key input via script. I need to have both swords with ranged attacks and guns with night vision, so I need ether an alternate fire or a mode change button... but Oblivion has neither. Is there any way key input can be handled? --Bky 06:40, 30 May 2006 (EDT)
- Dragoon Wraith TALK 12:15, 30 May 2006 (EDT): Nope, there's absolutely no way to detect key presses. Luckily for you (sort of), there wasn't in Morrowind, either, and as you might imagine, this was something a lot of people wanted to do. So, your best bet is to detect something you can detect - Sneaking is easiest. Try something like this:
short sneak short switch float timer /index.php?showtopic=511998&view=findpost Begin GameMode set timer to ( timer + GetSecondsPassed ) if ( timer > 2 ) set timer to 0 set sneak to 0 elseif ( player.IsSneaking == 1 ) && ( sneak == 0 ) set switch to ( switch + 1 ) elseif ( player.IsSneaking == 0 ) && ( sneak == 1 ) set switch to ( switch + 1 ) endif if ( player.IsSneaking == 1 ) set sneak to 1 else set sneak to 0 endif if ( switch == 4 ) set switch to 0 ;switch weapon mode endif End
- Basically, "switch" gets increased every time the player hits the Ctrl key (or whatever they have "Sneak" mapped to), and if they hit it four times (I figure no one would hit Sneak four times unless they were deliberately trying to), you activate your code to switch weapon mode or night vision or whatever you're doing.
- I'm not sure how to do this, or if this is even possible, but maybe with your dual swords idea, you can have right-click set for the left-hand weapon/shield. Does anybody know?TheImperialDragon 17:20, 30 May 2006 (EDT)
- Dragoon Wraith TALK 20:26, 30 May 2006 (EDT): I have my right-click set to Cast and middle-click (the mousewheel) set to block.
- That should work perfectly, thank you. As for dual swords.. I needed that too, but just planned to make sword #2 a shield (yet in the story they are both used as sheilds/weapons as needed...). If you come up with anything let me know. :) --Bky 17:45, 30 May 2006 (EDT)
With the new script extender, you can easily detect key presses. --Cid88
- So, As I understand it, this script will detect "switching" inside a 2 second time frame? I am trying to use a timer in a script of my own and am having little luck, just trying to amass as much information as I can and hopefully I will figure it out. I also posted on the GetSecondsPassed Page if it is more appropriate to reply there.
- --Antares 10:16, 4 September 2008 (EDT)