I'm just trying to start learning scripting for Oblivion. I've picked a project that is short but probably not that straight forward to learn from, basically I find it annoying that after every fight I look like a human pincushion, so I'd like to try and add a script for the player and NPC's / Creatures to vanish a percentage of the arrows that hit you based on your armor type. But I'm starting one small step at a time. Just now all I'd like to do is register a message when you are hit by an arrow.
I noticed that there are a number of blocktypes that ar ebasically functions that get called when an in game event is encountered, and that there were a couple that looked useful particularly 'OnHit' and 'OnHitWith'. I've been trying various ways to get either of these blocks to be called from within the game but nothing I've tried so far has worked. I've found an example of a script that is doing something similar but for blocking, but I don't know how this would be attached to the player in my mod?
Scriptname MartialArtsBlockParryScriptshort PCIsBlockingfloat timershort bMagicEffectBegin OnMagicEffectHit set bMagicEffect to 1EndBegin OnHit if (bMagicEffect == 0) && (timer > 0) && (timer <= 0.5) MessageBox "Normally I'd Parry right now, but this is just a test." endifEndBegin GameModeset bMagicEffect to 0;If the player has just started blocking, set the variable to track;this state and begin timerif (player.IsBlocking) && (PCIsBlocking == 0) Set PCIsBlocking to 1 Set timer to 0endif;If the player is currently blocking, increment the timerif (player.IsBlocking) && (PCIsBlocking == 1) set timer to timer + getSecondsPassedendif;If the player has stopped blocking, reset state and timerif (player.IsBlocking == 0) && (PCIsBlocking == 1) Set PCIsBlocking to 0 Set timer to 0endifEnd
It would be great if someone could tell me.
PS. The other bit of my title was about references as I'm going to have to get the references for the arrows stuck in the player at some point. Ideally they would be accessable from within onHitWith using a function but I doubt it's that straight forward
