-
Posts
3671 -
Joined
-
Last visited
Everything posted by Reneer
-
Question regarding rights to OST in a mod
Reneer replied to amokrun1's topic in Fallout 4's Discussion
You're using work that isn't your own and you don't (likely) have permission to use in your mod. If you upload such a mod to Nexus it will be deleted / hidden and you might be banned. -
copyright? anything else?
Reneer replied to max10121's topic in Fallout 4's Creation Kit and Modders
The code and scripts are most definitely protected under copyright law. Plus (vanilla) asset copying between games is against Bethesda's terms of service. -
Papyrus Help, Detecting statics in a path
Reneer replied to ghost23d's topic in Fallout 4's Creation Kit and Modders
You want to use RemoteCast instead of Cast. -
Trying to Get a Talking Activator to use the Say Function
Reneer replied to SirBeastling's topic in Skyrim's Skyrim LE
Say runs on Objectreferences, so you need to call it on the talking activator's in-world object reference. -
I might be naming it wrong. It's the one that puts red triangles over enemies heads and is attached to scopes, like this one. That runs a script / magiceffect on enemies and you could create a new spell that calculates the distance from the enemy to the player.
-
Probably the easiest / broadest way to do this would be to use IsInIronSights to check to see if the player is in IronSights / zoomed (polling every second or so). If that happens, then you would start up a timer that would PlaceAtMe a projectile (with painless / no damage settings) near the player (obviously facing the direction that the player is aiming) that moves as fast as possible and when it hits it would spawn / place an item that would check the distance from itself to the Player (then delete itself) and then you have the distance to whatever the player is aiming at. Getting that info to display on the HUD is another matter entirely and would probably involve mucking around with Flash files. Also figuring out whether the actual bullet being fired would be "in range" or not is not easy because, surprise, surprise, you can't get any information on that from Papyrus. Alternatively, you could use something like the Target Reticule spell but also have it calculate distance when the player's Heading Angle to the spell target is roughly zero.
-
[LE] A quick, maybe complex, question
Reneer replied to Rizalgar's topic in Skyrim's Creation Kit and Modders
OnSpellCast is placed on an ObjectReference, not a Quest. You would need to use a script on the Magic Effect itself and use something like OnEffectStart. -
What happened the the Sassy Teen Dolls Mod?
Reneer replied to ctyranthraxus77's topic in Skyrim's Skyrim LE
That is all true (if a bit biased). The mod was also reported in a Reddit post after it had been removed by the Nexus moderators. -
What happened the the Sassy Teen Dolls Mod?
Reneer replied to ctyranthraxus77's topic in Skyrim's Skyrim LE
Neither issue, as far as I know, was the reason why it was removed. You'll have to ask a Nexus moderator / staff for more info. -
What happened the the Sassy Teen Dolls Mod?
Reneer replied to ctyranthraxus77's topic in Skyrim's Skyrim LE
It was removed by Nexus moderators. -
Have those mods been updated to work with the F4SE? You can't mix and match different versions of mods that use F4SE, if you download the newest version of F4SE you also have to wait for the ALL mods that use F4SE to be updated to work with the newest version of F4SE. My mod doesn't use F4SE at all, so I have no clue how F4SE could be causing a problem. BlazeStryker is the first and only person to have said anything like this in regards to my mod.
-
Ah, that's true. I didn't think of that.
-
Why not simply copy and paste your wallet addresses into the mod description? That seems like a much easier solution rather than requiring Nexus to create server-side code. Nothing is stopping you from putting your BTC / LTC wallet address on your page.
-
Terminal - Placeatme and .Delete() Help needed.
Reneer replied to CylonSurfer's topic in Fallout 4's Creation Kit and Modders
PlaceAtMe returns an Objectreference, which Disable(), Delete(), and MoveTo() will all work on. So simply have something like: Objectreference TerminalRef = Player.PlaceAtMe(YourTerminal) ... TerminalRef.Disable() TerminalRef.DeleteWhenAble() TerminalRef = none And that should do the trick, more or less. -
Dynamic object replacement
Reneer replied to senterpat's topic in Fallout 4's Creation Kit and Modders
SKK50 has a great system set up, though I might recommend a small addition of storing all the found potions into a Formlist in case someone wants to revert the changes. -
I just had this idea (edit: added in -1 count as per Wolfmark's reminder below): Function RemoveAllItemsSilent(ObjectReference akObjRef, ObjectReference DestContainerRef) akObjRef.RemoveItem(KeywordFormList, -1, true, DestContainerRef) EndFunction And if the above doesn't work, the longer version: Function RemoveAllItemsSilent(ObjectReference akObjRef, ObjectReference DestContainerRef) int i = 0 while (i < KeywordFormList.GetSize()) Keyword currentkey = KeywordFormList.GetAt(i) As Keyword akObjRef.RemoveItem(currentkey, -1, true, DestContainerRef) i += 1 endWhile EndFunction
-
I would try something like this. I believe DropFirstObject doesn't display any message. Function RemoveAllItemsSilent() Objectreference droppedobj = none while (PlayerRef.GetItemCount(none) > 0) droppedobj = PlayerRef.DropFirstObject() if (droppedobj != none) YourContainerRef.AddItem(droppedobj) endif endWhile endFunction
-
I think I now have a basis to mount a legal defense, and we can just let our lawyers fight it out in court for years if necessary. Any particular reason you're choosing to go with M48AS's interpretation? Because they're not staff or anything (of course, neither am I).