-
Posts
1296 -
Joined
-
Last visited
Everything posted by Lanceor
-
Store bought Oblivion or downloaded?
Lanceor replied to MikeCobalt's topic in Oblivion's Mod troubleshooting
There shouldn't be any differences in the software. Both options have their pros and cons. If you choose to go digital, I'd suggest GoG.com because the Galaxy software is optional once you have installed the game, unlike Steam which has to be always on. -
Check out pale_rider's mods. He is a fan of Gothic 2 and I saw at least three Gothic inspired armour sets there.
-
Seconded. Windows has security features that prevents most changes to the Program Files folders. Wrye Bash would not be able to do its thing in there.
-
It compiles and saves fine for me when using CSE, but not using the vanilla CS. Are you launching the CS with OBSE? If so, it's possible that the mod is dependent on CSE.
-
Scripting question
Lanceor replied to WalkerInShadows's topic in Oblivion's Oblivion Construction Set and Modders
Maybe try something like this just to see exactly what is breaking: if (GetStage povssbravilquest == 20) set SleepingStatus to povssdroshanjiref.GetSleeping messagebox "Stage is 20 and Sleeping status is %.0f", SleepingStatus if (povssdroshanjiref.GetSleeping == 3) SetStage povssbravilquest 25 endif endif -
Chaos Damage in Oblivion
Lanceor replied to bomo99's topic in Oblivion's Oblivion Construction Set and Modders
To ensure all possibilities have equal chance, simply roll again if the result is 96 - 99. From a practical perspective, would any player actually notice if some options are 1% more likely, even if they tally results with a pen and paper? -
Chaos Damage in Oblivion
Lanceor replied to bomo99's topic in Oblivion's Oblivion Construction Set and Modders
Ah, I didn't realise this needed to be OBSE free. In that case, rather than dividing, I'd just stick to integers: set n to GetRandomPercent if n < 12 (fire damage) elseif n < 24 (frost damage) etc Each possibility has 12/100 chance of happening. There will be 4/100 left over which you can distribute to whichever result you want to be slightly favour. -
Chaos Damage in Oblivion
Lanceor replied to bomo99's topic in Oblivion's Oblivion Construction Set and Modders
I noticed that you're dividing by 12.5 - shouldn't you be dividing by 8 since you have eight possibilities? To answer your question, while GetRandomPercent always outputs an integer, you could divide the output and store it either as a float to retain the decimal places or a short/long for it to be rounded (not sure whether down or nearest). Float will be more accurate, but you are going to have to use < instead of ==. Short/long may have rounding errors so not all results will have an equal chance of happening. A simpler option might be to use rand instead: set n to rand 0 8 if n < 1 (just fire damage) elseif n < 2 (just frost damage) ... etc Probably the simplest would be for Fire, Frost and Shock damage each having a 1/3 chance of occurring, independent of each other. :) -
A mod that lets you avoid doing the KotN questline
Lanceor replied to GeorgeCorbul's topic in Oblivion's Mod Ideas
Ah, but then I'd be missing the new locations, npcs and items added by it. Most of the new locations can't be accessed without doing the questline. There is literally nothing to do in the few that you can access. Except for a handful of generic priests, none of the new NPCs will appear without doing the questline. Vanilla enchanted elven battleaxes are the only item that is available without doing the questline. Seriously, just deactivate the DLC if you really dislike it. -
Simple script to require a pickaxe in inventory in order to mine ore?
Lanceor replied to a topic in Oblivion's Mod Ideas
I think someone a long, long time ago said don't start your EditorIDs or scriptnames with a number, and nobody has questioned it since. The only explanation I can find is in the CS Wiki: If it's just your own personal scripts and everything is working fine, then there's no pressing need to fix the naming scheme. But if it's something for release, best to update them. :) -
My CS shuts down instantly. It may have something to do with the Construction Set Extender.
-
Simple script to require a pickaxe in inventory in order to mine ore?
Lanceor replied to a topic in Oblivion's Mod Ideas
You mean those rock-looking containers that contain ore? Put this script on them: BEGIN ONACTIVATE PLAYER if ( GetItemCount [Pickaxe] > 0) || ( GetItemCount [Recently Used Pickaxe] > 0 ) Activate else Messagebox "You need a pickaxe to mine ore." endif ENDI typed this out at work so I haven't got the Editor ID for "Pickaxe" and "Recently Used Pickaxe", nor has the script been compiled to detect possible typos or errors. -
Ultra lite horse saddlebags (store stuff on horse)
Lanceor replied to a topic in Oblivion's Mod Ideas
There's no weight limit - you're just opening the chest at Chestnut Handy Stables remotely, giving the illusion that you're accessing saddlebags. That chest doubles as a failsafe in case something goes awry with your horse - e.g. they run off never to be found again. I don't think wild horses can be mounted without mods. As for your random teleport idea, I could easily write a script that teleports you to two or three random markers placed in the world, and then you can expand that by adding as many markers as you like since you know how to use the CS. :) It *might* be possible to generate random world co-ordinates to teleport to, but this will require significantly more R&D and testing that I have time for at the moment. -
Ultra lite horse saddlebags (store stuff on horse)
Lanceor replied to a topic in Oblivion's Mod Ideas
Done :) https://www.nexusmods.com/oblivion/mods/37744 I've tested it a little and it appears to work fine. Let me know if you encounter any problems with it. -
Ultra lite horse saddlebags (store stuff on horse)
Lanceor replied to a topic in Oblivion's Mod Ideas
I already have something like this in one of my mods (with custom assets of course). I can easily adapt it to vanilla horses. Caveat: it will conflict with other mods that also modify vanilla horses. Or alternatively, I could create a unique horse with saddlebag functionality and place it somewhere in the world. (Let me know what stats and appearance.) Let me know if this interests you - if so, I can upload it in a day or two. :smile: -
Well, I don't think you need the horse armor or the Orrery. There's plenty of player house mods that blow the DLC ones out of the water. That leaves Mehrunes Razor... but there's plenty of good dungeon mods available. Think of it as having saved yourself a few dollars. :)
-
Regarding posting a mod about a mod's problem
Lanceor replied to Worldsong's topic in Oblivion's Classic Discussion
If you can't get in touch with the author, the text file idea is allowable. A better way might be to make a patch for Enhanced Cyrodiil - Wayshrines. If you use the Construction Set Extender, you can use an esp as a master and all your changes go into a "patch". Or best of all, make an entirely new mod using Enhanced Cyrodiil - Wayshrines as an inspiration. :) -
Make custom conjuration follow caster
Lanceor replied to netramz's topic in Oblivion's Oblivion Construction Set and Modders
Instead of specifying an actor to follow, perhaps you could specify an object instead. The object needs to be a persistent reference of course. Maybe placing the object in the caster's inventory will do the trick. If not, make the object invisible and static and use scripting to move it to the caster's location. I've never tried this before so it will need some investigating on your part. :) -
Thanks! New modders resource coming soon. :)
-
Hello, I've been away for a while. I'm planning to upload a modder's resource that would be suitable for Skyrim, Oblivion AND Morrowind. What's the rules regarding uploading the same file to multiple sites?
-
how do i download mods from this site with NMM
Lanceor replied to ArabWarFighter's topic in Skyrim's Skyrim LE
As it's name suggests, Nexus Mod Manager can only download from Nexus. You can download mods manually from elsewhere and put the downloaded archives into your NMMMods folder, and NMM can attempt to install it from there. -
Any mod groups who would take a newbie
Lanceor replied to Delain123456's topic in Oblivion's Classic Discussion
Although some of the high profile mods were made by mod groups, the majority of modders are solo. Modding isn't a paid job - it's a hobby and a very time consuming one at that. Very few people can sustain 20+ hours per week over several years to to be a meaningful part of a large project. Given the commitment required, mod groups tend to accept only modders that they already know well, modders who have proven their skill and dedication to finishing the job even if it takes years. The best bet is to start solo, but of course get help from the community whenever you are stuck. After all, most of the best mods were indeed made by individuals and not groups. -
Are there any easy mods a beginner can do
Lanceor replied to Delain123456's topic in Oblivion's Mod Ideas
House mods! The easiest IMHO. Here's an easy tutorial that introduces you to the CS and will have you up and running in one weekend. http://tesalliance.org/forums/index.php?/forum/82-esiv-oblivion-school/