Jump to content

The last poster wins


TheCalliton

Recommended Posts

 

Oblivion.esm

etc.

You forgot one - http://www.nexusmods.com/oblivion/mods/43879/? athankyou! :wink:

 

I actually been meaning to download it =P just haven't gotten around to it.

 

And does anyone else hate the radio? I was already feeling sad, and I thought good ol' rock 'n roll would help me out. Nope :D

Link to comment
Share on other sites

If you're feeling sad and want the good ol' days back Youtube is your best bet, type in one you know and you will get some familiar suggestions even some you totally forget about which is great for novelty retro value :) radio...and tv is s#*! and will never make you happy.

Link to comment
Share on other sites

Well... one of those days where if it can go wrong, it will. My tv is broke, all my moniter are no good, my computer motherboard is starting to go bad, I can't get my IRS crap to get my own house, had a few customers b&@*$ me out (I NEVER get bitched out. Not in the 4 months since I started working). And I only woke up 3 hours ago.
Link to comment
Share on other sites

Bash the TV, bash the motherboard, bash the IRS, bash the customers and then bash your bed. You will feel victorious! :yes:

 

 

EDIT: Hey guys, check out this Kickstarter game - Umbra. It looks pretty cool!

Edited by billyro
Link to comment
Share on other sites

I had to leave work early. Too stressed and was coughing up blood. Sucks when your emotions can literally kill you anymore. If I dont maintain a tight control, I risk cardiac arrest or worse x_x

 

And while I was away, AVAST! decided to stop working entirely til I reregistered my FREE subscription. Thanks AVAST! now my clock still reads 2048 and wont change back.

Link to comment
Share on other sites

Avast changes your clock settings? I never knew that. Maybe there are some settings that can fix it?

 

Also I just checked my Avast Registration and I've only got 27 days left until it runs out, apparently. Oh well.

Link to comment
Share on other sites

ScriptName WerneArmorRepairEffectScript
 
Int RepairSkill
Float RepairPerc
Float Health
Float BaseHealth
Ref Weapon
Ref TitBoy
Ref Armor
Short SlotID
 
Begin ScriptEffectStart
 
    Set RepairSkill to Player.GetActorValue Repair
    If (RepairSkill < 25)
        Set RepairPerc to 0.15
    ElseIf (RepairSkill >= 25 && RepairSkill < 50)
        Set RepairPerc to 0.20
    ElseIf (RepairSkill >= 50 && RepairSkill < 75)
        Set RepairPerc to 0.25
    ElseIf (RepairSkill >= 75)
        Set RepairPerc to 0.30
    EndIf
 
    Set Weapon to Player.GetEquippedObject 5
    Set TitBoy to Player.GetEquippedObject 6
 
    Label 69 ;)
    If (SlotID <= 19)
        Set Armor to Player.GetEquippedObject SlotID
        If (Armor != Weapon && Armor != TitBoy)
            Set Health to Player.GetEquippedCurrentHealth SlotID
            Set BaseHealth to GetBaseHealth Armor
            Set Health to Health + (BaseHealth * RepairPerc)
            If Health > BaseHealth
                Set Health to BaseHealth
            EndIf
            Player.SetEquippedCurrentHealth Health SlotID
        EndIf
        Set SlotID to SlotID + 1
        Goto 69
    Else
        Return
    EndIf
 
End

Not satisfied with the end result but at least the armor repairing part works the way I want it to. I'll make it better tomorrow. :smile:

Link to comment
Share on other sites

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

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