Jump to content

cloakedbolt

Members
  • Posts

    20
  • Joined

  • Last visited

Nexus Mods Profile

About cloakedbolt

cloakedbolt's Achievements

Apprentice

Apprentice (3/14)

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

Recent Badges

0

Reputation

  1. Note that some worlds have multiple versions... so it's possible you're putting them in a world that Oblivion doesn't use or will only use later (such as the Imperial City on the last main quest).
  2. How would one get rid of the charge counter on enchanted weapons? I have made a mod that grants infinite charge to the equipped weapon but I'd like to know if it would be possible to completely remove the counter for aesthetic purposes.
  3. Make sure there's not a separate mesh or texture pack separately (check the page where you downloaded your mod). If they exist you may need to download those.
  4. They are just placeholders. I guess I didn't notice you supplied the IDs. I don't even know if the script works. It's mostly based on the example on the official CS wiki. Anyway, if it works and you want to use it, go ahead. It's an "object" script in case you're wondering. P.S.: I don't know much about Runescape.
  5. I'm going to try my hand at this but I'm not sure I will come up with anything. EDIT: Try using OBSE functions.
  6. ScriptName ChoiceChest short SHOrunonce short SHOchoice Begin OnActivate If ( SHOrunonce == 0 ) MessageBox "Which god do you worship?", "Mercury", "Jupiter", "Venus", "Mars" Set SHOrunonce to 1 Elseif ( SHOrunonce == 2 ) Activate Endif Set SHOrunonce to 2 End Begin GameMode If ( SHOrunonce == 1 ) Set SHOchoice to GetButtonPressed If ( SHOchoice == -1 ) Return Elseif (SHOchoice == 0 ) player.additem MercuryStaff player.additem MercuryCape Elseif (SHOchoice == 1 ) player.additem JupiterStaff player.additem JupiterCape Elseif (SHOchoice == 2 ) player.additem VenusStaff player.additem VenusCape Elseif (SHOchoice == 3 ) player.additem MarsStaff player.additem MarsCape Else Return Endif Endif End
  7. Sounds easy but I can't model or anything. Anyway. Steps to make it would be: -Make a mesh. -Make a texture or borrow one. -Enchant the cross with "Turn Undead".
  8. I'm going to try and help you as best as I can: (oldPoison:ref) reference.SetEquippedWeaponPoison nuPoison:ref (oldPoison:ref) <- This means this command will return a value. If there was a poison already applied when you use this function it will return it's ID so you can store it in a variable. Basically you can stock the data of what poison was applied before you replaced it. I doubt it will be useful to you. reference <- In your case, you want to probably type "player". SetEquippedWeaponPoison <- The actual function, nothing to change. nuPoison:ref <- It means to specify the editor ID of the poison. Example script below. I will use a poison bottle with the editor ID PSNhealthdmg. Poison effect PSNhealthdmgeffect. ScriptName PoisonSpellTestScript Begin ScriptEffectStart If player.GetItemCount PSNhealthdmg >= 1 player.SetEquippedWeaponPoison PSNhealthdmgeffect player.removeitem PSNhealthdmg 1 Endif End That script will apply the effect of the poison on the equipped weapon and will remove one poison bottle (but it's specific) and if you don't have poison bottles the spell will do nothing. More info there: http://cs.bethsoft.com/constwiki/index.php...pedWeaponPoison
  9. Proc is a chance to activate. He wants that instead the enchanting effects occurs 100% of the time he wants it to drop to 5% so charges don't waste too quickly.
  10. Thanks to you I could complete my mod. Kudos to you.
  11. Thanks. However the CS won't let me save the corrected script because that FormID doesn't exist. EDIT: I found out I could reference the spell with the spell ID rather than the FormID. Fixed, thanks.
  12. Hello, I'm working on a custom ability type spell. I have been trying to test the spell in the game. However I can't seem to be able to add the spell since it doesn't exist, even if I loaded my mod. I'm using the player.addspell command in the console. My spell's FormID is 01000ED5. So the proper command would be "player.addspell 01000ED5", right? Anyway it doesn't work and I would like to know why.
  13. Hello detectives, I'm looking for vanilla Oblivion armor and weapon retextures. Preferably shinier textures. Please note that I'm not looking for additional weapons, just retextures of the existing ones. Thanks in advance.
×
×
  • Create New...