-
Posts
2204 -
Joined
-
Last visited
Nexus Mods Profile
About maxarturo
Profile Fields
-
Country
Greece
-
Currently Playing
My own game
-
Favourite Game
Skyrim - Borderlands - Metro
Recent Profile Visitors
maxarturo's Achievements
Grand Master (14/14)
1
Reputation
-
[LE] Turning script spells into AOE?
maxarturo replied to darkwolf0218's topic in Skyrim's Creation Kit and Modders
"How is radius/area calculated in SAE?" Unfortunately I can't help you here, I would need to check CK to remember again those things, but I don't have installed the game and neither its tools. "but has started dealing damage despite no damage on the MGEF" Remove the damage applied by the explosion itself, it should be the first or second option in the explosion editor menu. -
[LE] Turning script spells into AOE?
maxarturo replied to darkwolf0218's topic in Skyrim's Creation Kit and Modders
Magic Effect are hard coded to respond ONLY when they "Touch" an actor, with the exception of a few, which again they are hard coded to work only inside their parameters. What you want to do and what Ishara tried to explain you is that: - In order to have a spell's projectile to have an 'Area' of influence, you need to: a) Create a magic effect and the enchantment holding the damage b) Create an explosion and insert the enchantment into the explosion's parametrs c) According with the radius of the area impact effect of the explosion that is what your actual enchantment's 'area of damage effect' will be. But again your magic effect will ONLY respond to actors, if you want to respond to object, then you will need to extend your set up, plus your script to a point that it becomes a little bit more complicated than having just 2 lines of code. EDIT: It should be 'Enchantment' and not spell in my post. Replaced all. -
In my case was one corrupted 'face gen' nif of an npc that was placed right at the center of the worldspce, and I could only move at the perimeter of the worldspace before ctd if that cell with the npc got loaded.
- 3 replies
-
- help
- worldspace
-
(and 2 more)
Tagged with:
-
SSE Ck shortcut - Hide object and children of objects
maxarturo replied to yojeff's topic in Skyrim's Creation Kit and Modders
I haven't touched CK in years, but I don't remember CK having such function. But in the other hand I could be wrong. -
SSE Ck shortcut - Hide object and children of objects
maxarturo replied to yojeff's topic in Skyrim's Creation Kit and Modders
First select the object or objects, and then hit plain '1' (no shift) 1 time makes the object semi-visible 2 times hides the object completely * Press F5 to refresh window and to reveal the hidden objects. -
[LE] Help with a simple script
maxarturo replied to DJTurnMeUp's topic in Skyrim's Creation Kit and Modders
Checked one of my scripts and the actual name is: IdleVampireTransformation But just as a note, the animation does not actually transforms the actor, the 'IdleVampireTransformation' is to be played on the humanoid actor, then a secondary IDLE is played on the Vampire lord that takes the place of the first humanoid actor.- 4 replies
-
- animation
- creationkit
-
(and 2 more)
Tagged with:
-
[LE] Help with a simple script
maxarturo replied to DJTurnMeUp's topic in Skyrim's Creation Kit and Modders
You can't paly an IDLE that point towards the hkx behavior graph: actors/vampirelord/animations/mt_transform.hkx The function 'PlayIdle()' should use the animation's actual name, for example, and not an acurate animation name, I'm using the one you are which I don't know if it's a valid one: akTarget.PlayIdle(mt_transform)- 4 replies
-
- animation
- creationkit
-
(and 2 more)
Tagged with:
-
SSE Npc's not following me into new cells.
maxarturo replied to bananakillerBRO's topic in Skyrim's Creation Kit and Modders
'Finalize' the NavMesh between the two connected cells. In the NavMesh tool there is a button calles "Finalize Current Cell's Navmeshes". How to, got to "Creating a Load Door": https://www.creationkit.com/index.php?title=Bethesda_Tutorial_World_Hookup -
SSE MovableStatic in a property
maxarturo replied to Sirgallyhave's topic in Skyrim's Creation Kit and Modders
I never noticed any issues with not disabling the object before moving it (but it doesn't harm to do it). The only issue I remember encountering is that the angle gets messed up when you move an object to an actor, and needs to be adjusted with 'SetAngle()' because adding the flag 'MatchRotation' on 'MoveTo()' some times does not fires. -
SSE MovableStatic in a property
maxarturo replied to Sirgallyhave's topic in Skyrim's Creation Kit and Modders
1) You can make your 'mouvablestatics' into 'activators', and yes the collision will still move as long as the nif is set up correctly. 2) You don't need to use 'PlaceAtMe()' to spawn every time different meshes, simplify your idea's exacution. a- Create a cell, it doesn't has to have anything in it or to be connected to the world (basically you don't want to connect it to anything), just an empty cell that belongs to your mod. b- Place in that cell 4 xMarkers, 1 can do the trick, but we will use 4 to keep things in order. Give the xMarkers unique 'Reference Editor's IDs' c- Place in that cell all your 4 different boat models, either if they are mouvablestatics or activators, at this point it dosen't really matters. d- Now use 'MoveTo()' to place the desire boat to position. From the 'ghost cell' to your cavin, and from your cavin to the 'ghost cell'. -
SSE MovableStatic in a property
maxarturo replied to Sirgallyhave's topic in Skyrim's Creation Kit and Modders
Just use 'ObjectReference', I use objectreference for all mouvablestatics. A MouvableStatis is an ObjectReference. -
SSE Question about compatibility mods.
maxarturo replied to a topic in Skyrim's Creation Kit and Modders
To create a compatibility patch for your mod, you don't require to get permission from anyone, in the end it still is an asset provided by your mod for your mod. If you want to post it in the original mods page or create a new one just for the patch, this is entirely up to you. -
SSE TranslatetoRef() not triggering events
maxarturo replied to Sirgallyhave's topic in Skyrim's Creation Kit and Modders
Sirgallyhave I didn't say to use a 'Busy' state, I said to "create your script using 'States', each 'State' for each sequence" If you want to know what I mean send me a DM and I'll explain it with scripts examples. PS: I haven't read your wall of text, but I'll read it later.