http://www.mediafire.com/?qfzpj5lw77gcag9
There you go... incredibly simple, and you can't force first person when your weapon's drawn.
/* POVWeapon for Xenus 87 I'm just wondering, is there any way to bind Sheath/Unsheath weapons + 1st/3rd person toggle to a single key? Basicly I would like it to switch to 1st person when weapons are out and ready for some killing, then for it to switch back to 3rd person when I put them away. Hopefully at the same time have the PoV change still bound to F so that I can switch back manualy to pick up small items and things. After playing New Vegas with the 'New Vegas Camera Control' mod, I really liked playing the game like this, so I can actually see the character I spend hours crafting, and their cool looking gear. That and maybe I'm just too lazy to switch the views all the time manually. :confused: Without the CK, this is the easiest way I can think of doing it, although it could probably done using Script Dragon, but I have no clue at all on how to even start trying to make a script using it.*/#include "common\skyscript.h"void main() { CActor *player = Game::GetPlayer(); while (TRUE) { if (Actor::IsWeaponDrawn(player)) { Game::ForceThirdPerson(); } else { Game::ForceFirstPerson(); } Wait(0); }}Just thought, what happens if you're carrying a torch or have a spell that casts light and want to go in first person

I suppose you could add something like "if equipped weapon has ID of whatever"...
Maybe someone can build on this because I'm not sure how to make the logic so that you can override it with F
