Jump to content

DOWNLOAD MODS

Are you looking for something shiny for your load order? We have many exclusive mods and resources you won't find anywhere else. Start your search now...

LEARN MODDING

Ready to try your hand at making your own mod creations? Visit the Enclave, the original ES/FO modding school, and learn the tricks of the trade from veteran modders...

JOIN THE ALLIANCE

Membership is free and registering unlocks image galleries, project hosting, live chat, unlimited downloads, & more...

Zabre

Allies
  • Posts

    184
  • Joined

  • Last visited

  • Days Won

    1

Zabre last won the day on January 10 2011

Zabre had the most liked content!

About Zabre

  • Birthday December 27

Profile Information

  • Gender
    Male
  • Location
    Delawere...
  • Interests
    A Lot..

Recent Profile Visitors

The recent visitors block is disabled and is not being shown to other users.

Zabre's Achievements

Disciple

Disciple (5/11)

3

Reputation

  1. Feels good to be modding again This script is supposed to give the player (I do not want the ring to fire when equipped on NPC's) that is equipping the ring (which this script is attached to) a massive boost to their stamina regen WHEN they are attacked with less than 10% of their max stamina. The effect is supposed to cancel when the player is attacked with more than 10% stamina. Currently, the script does not work. I'm not sure if I've messed up with the actual script, or if attaching it to the item (ring) is the wrong thing to do. Any help would be fantastic. Scriptname aaaHarmonyEnchant {Enchantment for the Amulet of Harmony} float fCurrentStamina = Game.GetPlayer().GetAVPercentage("Stamina") float fStaminaRate = Game.GetPlayer().GetAV("StaminaRate") float fStaminaRateO = 0 int bEquipped = 0 Event OnEquipped(Actor akActor) if akActor == Game.GetPlayer() bEquipped = 1 fStaminaRateO = Game.GetPlayer().GetAV("StaminaRate") EndIf EndEvent Event OnUnequipped(Actor akActor) if akActor == Game.GetPlayer() bEquipped = 0 game.GetPlayer().SetAV("StaminaRate", fStaminaRateO) Endif EndEvent event OnHit() if bEquipped == 1 if fCurrentStamina <= .1 game.GetPlayer().SetAV("StaminaRate", (fStaminaRate + 1000)) else game.GetPlayer().SetAV("StaminaRate", fStaminaRateO) endif endif EndEvent
  2. Sorry to bump... I still haven't figured this out :/
  3. Zabre

    Zabre's Stuff

    My stuff
  4. Hiya Willie. My friend doesn't have a legitimate copy of the game, and he asked me to make a mod for him because he lacks the Creation Kit. He wanted me to make a ring that increases the movement speed of the player during night. The conditions for the "only at night" part are easy to do in the enchantment menu, however I have no idea how to increase movement speed.
  5. Is there a way to modify the player's speed through magic effects? I've tried creating a new magic effect that changes "SpeedMult," however nothing happened. Any ideas?
  6. Happy Birthday .. :pints:

  7. Happy Birthday my yellow friend. :)

  8. Quite a silly question, is the Triggerzone attached the script?
  9. Currently on my fourth(?) playthrough of Bastion. As stated, worth every dollar.
  10. Wow! Dunmer look really nice this game. Might play one Of course I have to play Argonian most of the time
  11. Sounds like a feature you would see in a combat overhaul Great ideas, You I've actually put this script on the backburners. Been busy with my English classes.
×
×
  • Create New...