-
Posts
46 -
Joined
-
Last visited
Nexus Mods Profile
About jcbq

Profile Fields
-
Country
United States
Recent Profile Visitors
The recent visitors block is disabled and is not being shown to other users.
jcbq's Achievements
-
So im here im rebuilding More interesting loot [remastered] and while i want some of these relics to show up once i am bound by leveld lists to pull them. I know it can be done via scrit and quest but i was curious to see if it could be done just via script
-
- scripting
- leveled lists
-
(and 1 more)
Tagged with:
-
So is the old direct donation system going to be removed Q1 2018 in lieu of this communal pool system?
-
So, Ive found myself in an interesting situation whil working on more interesting Loot Remastered, The Old game's effects while it would make sense that ingredients and some relics would change like the damage STR and LUCK effects others wouldnt change. for example, Chameleon that would still work (Even if the engine says it wont) Long storyshortis therean easy to mimic a new actor value forsomeof these things?
-
yeah... I mean i can dummy up a blank Magic effects or use the base of a ward as this system seems to only register a count if the ward gets broken suprisingly enough. still i really aprecate all the help guys
-
Weapon ItemMysteryCurrent ; Current mystery item Weapon ItemMysteryNext ; Next mystery item to discover GlobalVariable Property gItemXPCurrent Auto ; Current Level of XP with current Myster Item Int Property XPChanceGain Auto ; % chance to gain XP Int Property XPRequiredGain Auto ; XP required to next Mystery Item Spell Property SpellCastXPEnemy Auto ; spell to cast on enemy with successful gain of XP Spell Property SpellCastXPSelf Auto ; spell to cast on self with successful gain of XP Message Property MsgNextItem Auto ; Message to display when item levels up Int XPCurrent ; get current level of experience with this item EVENT OnEffectStart(Actor akTarget, Actor akCaster) XPCurrent = gItemXPCurrent.GetValue() as Int ;debug.notification("Current XP = " + XPMainCurrent) If(Utility.RandomInt(0, 100) <= XPChanceGain) XPCurrent += 1 gItemXPCurrent.SetValue(XPCurrent) ;debug.notification("XP Gained! XP Level = " + XPCurrent ) ; --> need to cast spell on enemy If(SpellCastXPEnemy!= None) SpellCastXPEnemy.Cast(akCaster, akTarget) EndIf ; --> need to cast spell on self If(SpellCastXPSelf!= None) SpellCastXPSelf.Cast(akCaster, akCaster) EndIf ; ==== Check for Level-Up==== ; --> if xp > needtolevel, then remove item; give new item; equip new item If(XPCurrent >= XPRequiredGain) Game.GetPlayer().RemoveItem(ItemMysteryCurrent, 1, true) Game.GetPlayer().AddItem(ItemMysteryNext, 1, true) Game.GetPlayer().EquipItem(ItemMysteryNext, false, true) ;debug.notification("Woot! You have discovered a weapon power.") If(MsgNextItem != None) MsgNextItem.Show() EndIf Else EndIf Else ;debug.notification("XP not gained. XP Level = " + XPCurrent ) EndIf ENDEVENT Event OnEffectFinish(Actor akTarget, Actor akCaster) ;debug.notification("effect finished") ENDEVENT trying to flip this so that it can work if yougethit instead of youhittinga valid target
-
so i'm seeking help with trying to write a script for Armor so that it can evolve via a global variable so that upon a weapon strike the armor would count upward. the issue im having is that i cant even get it to fire. A few people have been trying to help me reverse engineer the weapon system which works via a mag effect and once that mag effect fires add one to the global until it hits the threshold. but that works when it strikes something what im trying to do is reverse it so that when it gets struck, it works. the same way were at a road block and are seeking any form of help TLDR; trying to make a real learn by doing evolving system, got weapons and jewelry working Armor'snot working and need help
-
well, this idea plays into an idea I have of learning just where Kohnriik was burried as well several missing pieces of his accrotruments. (As well pairing them off with the priestly order) I can send you the notes I have on this if your curious
-
https://drive.google.com/open?id=0BwAiqEbbvlaSck16TVk3cmJUQVk Heres the files (Loose) for ya, tell me if i missed anything
-
Ok, so ive done the final tests and from what i can see on my side the standalone process working with the pure VANILLA models. Im packing it up now and i dod do a few minor tweaks and changes to it (one of the more noticable ones is I changed Bonemold to dragonmold for this set and kt does recognize them in the console for item adds) but do you want it in loose files or in a .bsa archive?
-
I sent/posted a message to blackasm on the mod page to clarify partly because i want to get the right armor models the first time. Regardless of the model it can be done as i suspect that their both replacers and as such SHOULD use the same texture files as vanilla. So I will keep updating this as i learn more
-
Hmm... so to clarify, all of the vanilla bonemold models are the only affected models. NOT any of the amidian born stuff? If thats the case then yes i will forward you the changes in a postable .esp. if not i will still send it to you but as far as i know that one cant be posted
-
So... a retex standalone... see, this is do able, easy even with the right tools. While i can create a standalone easily i just need to clearly know what models/.nifs need the retex and can do that for you
-
Yes it is entirely possible, you just need to daisy chain the phone to the laptp for a transfer than perfoam a manual install frankly I did it for quit some time
-
So as I'm working on a mod for skyrim 32bit (And eventually 64bit when certain mods get ported over) called The Lost Legacy of the Nine ( http://www.nexusmods.com/skyrim/mods/79168/? ) and the scripted Quest Version requires a more... themeatic armor for the rest of Auri-el's stuff (I have ghosu's swords and crossbows) and was looking for a set of armor that would fit both the weapons/bow/shield. Im aware of a set on th nexus that is suposedly his armor but feels... too dark for the god of the sun. I lack the knowledge, and tools to actually make the armor and so Ive come here to see if anyone is up to the task or if a set actually exists (the internet is a large place and a google search doesn't really help) TLDR; Looking for an armor set that fits with Auri-el's shield and if one doesnt exist if someone knows/could (please with credit) make the st it would be aprecated