Jump to content

audiogarden21

Premium Member
  • Posts

    37
  • Joined

  • Last visited

Nexus Mods Profile

About audiogarden21

Profile Fields

  • Country
    United States

audiogarden21's Achievements

Explorer

Explorer (4/14)

  • First Post
  • Collaborator Rare
  • Conversation Starter
  • Week One Done
  • One Month Later

Recent Badges

0

Reputation

  1. That looks like that will do for my purposes, thanks. I'll be sure to give a ring otherwise. Special thanks to you both. Any time I've searched for answers to my questions, Ishara is there more often than not with the right one, and dyl helped me out with my last question.
  2. Thanks all. I'll look into that when I get the chance. Currently debugging some other things at the moment so I can't check just yet.
  3. Is it possible and how exactly does one go about accessing the script on the magic effect from outside? I know you can do it from a magic effect script to a quest script by pointing at the quest but I'm not sure - if at all possible - how to go about doing the reverse. Can anyone shed some light on this please?
  4. Might I also recommend adding "GetKey" to your target logic to prevent people from being able to unlock stuff that requires a key, assuming you don't want them to of course. If (akTarget.GetKey == None), as an example.
  5. I concur with Max. You need to simply expose yourself more to the CK and experiment with changing things to see how they behave, and read read read all of the information you can on the wiki. As you become more and more accustomed to using the CK and spells/magic effects, etc, things become much easier. Everyone starts somewhere. Just keep at it. If you get frustrated, sometimes it's best to just step back and give it a rest for a little bit and not get yourself too worked up if something isn't working right. Let your brain work on it while you relax and then come back to it with a calm, clear head. And remember, when it comes to modding, there's most often multiple ways to skin a cat, meaning you can usually accomplish the same goal in a multitude of ways.
  6. @link182 I forgot that you were trying to apply a spell via script to yourself but a "Spell" added via script grants one that the player can cast, where as an "Ability" like a permanent enchantment. That's where the issue lied. The best way to handle stuff like that in the future is to instead use a Perk and use the entry "Apply Combat Hit Spell" which will cast the spell automatically when you attack something with a weapon, and the script will add a perk instead of a spell. Since you provided us with very little information to go off of we really couldn't help you as much as we otherwise could have. If you want help in the future try to be as verbose as possible about your entire procedure. We're not mind readers. :geek: I've attached the esp with the loose files. Don't say I never did nothin' for ya. Took me all of 10 minutes so it wasn't a big deal. P.S. - The damage is set to 10 atm so you may want to adjust that. Enjoy.
  7. @link182 I don't see the magic effect anywhere. Change it to a Spell instead of an Ability. EDIT: Also, read up on this. Take note of this section:
  8. What exactly did you do when you changed it to "fire and forget"? Did you just change the magic effect and call it a day, because that won't work. Why don't you provide a screenshot of the magic effect and the spell data for us so we can look at it directly, like I did in my previous post?
  9. The reason you're taking damage is because you changed it from buffing unarmed damage on the player as a constant effect, to applying a damage effect to the player as a constant effect. You need to change it from "Constant Effect > Self" to "Fire And Forget > Contact" - this will take it from an ability that applies a constant buff to yourself to an ability that you have that applies a single shot of the spell to the target your claws make contact with. You'll have to do this to the magic effect itself first, then you can change it on the Spell/Ability. You can't change it on a spell or ability if it already contains a magic effect, you may have to remove the effect prior to being able to change the spell as well. The spell will be locked into that magic effect's casting type and delivery of the first magic effect you apply to it. These are important distinctions as they define how a magic effect is applied. Constant effect means it is unaffected by duration and is constant, like enchantments. Concentration effects are really only used for channeled spells like Flames and Healing (the starter heal) are constantly cast while the attack button is held. Fire and Forget is for everything else that you apply to a target in a single cast with a cast time, like a buff, nuke, heal, or a potion. Delivery is for whom it affects. Self targets the caster. Contact means it doesn't contain a projectile like Fireball would but applies on a hit like a weapon hit or a poison on your weapon or a weapon enchant. Aimed is for your standard projectile like Fireball. Target Actor is similar to Contact in that it contains no projectile per se, however as long as the actor is in the crosshair the spell will affect them. Target Location is used for spells that cast on the ground like Wall of Flames or any of the various rune destruction spells, as well as all the Conjuration summon spells. Read more about magic effects here.
  10. I looked yesterday. The PlayerWerewolfChangeScript points to WerewolfBeastRace in its properties. It's also used by a few NPCs. You would also want to change the effect from buffing your unarmed damage to just dealing straight up damage to health in this case, but since that will apply to all users of the spell I guess that's moot, but knowledge is power! According to the CK, there's no differentiation between players or NPCs "Werewolf Armor" so it looks like a player reference alias is the best method for his goals. Create Quest > Quest Alias Tab > New Reference Alias > Unique Actor > Select Player > Add your script on the right > Bob's your uncle. To iterate on Max's code; Scriptname NameMeWhateverYouWantHereScript extends ReferenceAlias Import Game Race Property WerewolfBeastRace auto Spell Property WerewolfPoisonClaw Auto EVENT OnRaceSwitchComplete() Actor Player = Game.GetPlayer() If (GetActorReference().GetRace() == WerewolfBeastRace) ; Adds the spell when players is a Werewolf Player.AddSpell(WerewolfPoisonClaw) ElseIf (GetActorReference().GetRace() != WerewolfBeastRace) ; Removes the spell when players is not a Werewolf Player.RemoveSpell(WerewolfPoisonClaw) EndIf ENDEVENT That should be all you need to get started. Just be sure to change "NameMeWhateverYouWantHereScript" to whatever you named the script file itself and fill the quest properties in the CK. I think your English is fine. =) It's probably a damn sight better than my whateveryournativelanguage is, believe me.
×
×
  • Create New...