-
Posts
16803 -
Joined
-
Last visited
-
Days Won
19
Everything posted by Pickysaurus
-
deleted69076203 account deleted Reason:Account closed by request
-
deleted71217288 account deleted Reason:Account closed by request
-
The isn't possible at the moment. You can filter to show only mods from one game, but can't hide mods from specific games.
-
LightPrismRBD banned. Reason: Duplicate account of Xer0117. IP history match, both accounts have been active recently. You have requested help with a mod that has not been downloaded on Xer0117, but has been downloaded on this account and was downloaded shortly after being told you need to update to the latest version. From our Terms of Service: "In order to access certain Nexus Mods services, you must create and utilise a singular account (i.e. one account per person) consisting of a username, email address, and password. Households or facilities from which multiple users (and therefore accounts) may access the sites and services are encouraged to inform staff to ensure that there are no potential misunderstandings in the case of moderation review. More information can be found in our Moderation Policy. Users who create multiple accounts may have any or all of those accounts terminated with other measures being taken to prevent such abuse as appropriate." Reference post Reference post Reference post
-
Hi guys, Please check the article Khajiiten linked or email [email protected] from the address linked to your account for further help.
-
Hi DareliusXurax, Welcome to Nexus Mods. I'll do my best to respond to the points you've raised here. You can also read through the various help articles we've prepared at https://help.nexusmods.com/category/26-frequently-asked-questions Nobody likes adverts, but these are essential in helping us cover the cost of keeping the site online. We do have a small video advert in the bottom right of the screen that will be there unless you are a Supporter or Premium member. You're right in saying we don't have any "on boarding" on the main homepage, but that is fairly standard across the web. Can you provide an example of a site that does this better? Vortex, our mod manager, has a link at the bottom of every page (and the top but it's in the navigation) - you can read more about it here: https://www.nexusmods.com/about/vortex/? In 2019 we actually increased this from 8 to 12. I would suggest you favourite the games you're currently playing/modding as you can swap them out at any time :) The required game version is not recorded anywhere on mod pages - we generally rely on authors including information on the mod page if there are specific version limitations. It's a good idea for a future improvement to the site though. I'm not really sure what you're having problems with here, but you can always look at the categories for 7DTD: https://www.nexusmods.com/7daystodie/mods/categories + https://wiki.nexusmods.com/index.php/Category:Vortex An endorsement is a kind of "thumbs up" or "thank you" for the uploader of the mod content. You're basically saying you like the content. We use these endorsements as a measure of a mods status on the site. If it has a lot of endorsements it is considered to be more popular than others with the same number of downloads (although this is not always the case). Endorsing a file requires a 15 minute cooldown to ensure that you've actually played the content before rating it. This is not correct. There is a "continue with free account" link below the membership options. You do not have to pay to use our site, but we appreciate the support if you choose to it really helps with the costs of running a site like this. We do have a help guide for Vortex here, which may interest you: https://wiki.nexusmods.com/index.php/Modding_7_Days_To_Die_with_Vortex I hope this has address your concerns, but if you have further questions please ask.
-
ilovduck banned. Reason: Piracy of Fallout 4 Reference post
-
Minimized Forums no longer stay minimized
Pickysaurus replied to Deleted67195711User's topic in Site Support
I have been able to replicate the problem, I'll add it to the task list for investigation. It may take a while before it gets looked at as there is a lot of higher priority tasks to complete. Thanks for the report. -
deleted78801933 account deleted Reason:Account closed by request
-
Minimized Forums no longer stay minimized
Pickysaurus replied to Deleted67195711User's topic in Site Support
Interesting, I'll see if I can reproduce it. Perhaps when we changed the way your session it inadvertently changed something there. How do you "reset" it? By closing the browser? Opening a new tab? Reloading the page? -
Downloads are still slow and nothing has been done...
Pickysaurus replied to hawkrf's topic in Site Support
Hi guys. Really sorry to hear about your download issues. We're doing all we can to get things back to normal, but the surge of traffic from the holidays hasn't evened out yet. The site, forums, API and downloads have all been pretty saturated during our peak times simply due to the number of users interacting with the service. Please ignore any other "conspiracy theories" which certain users seem to enjoy spinning about what's happening. Over Christmas a lot of people worldwide (including our own team) are off work spending time with family. I'd like to hope things will stabilise a bit once Schools start back up in the next week or two. We will, of course, be reviewing which parts of the site were hardest hit and investigating what we can do to increase the availability of them. Just remember, we're a small team of gamers working on the site - I've seen Nexus Mods being spoken about is if we're a company akin to Value in terms of scale! We are super happy that Nexus Mods has been so popular lately and will do our absolute best to keep improving. Thanks for being patient. -
Minimized Forums no longer stay minimized
Pickysaurus replied to Deleted67195711User's topic in Site Support
Pretty sure this is stored in a cookie on your local machine (and has been for as long as I can recall) - so it won't persist across devices or in cases when you clear your cookies. -
SSE Possible Engine Issue in SSE
Pickysaurus replied to Pickysaurus's topic in Skyrim's Creation Kit and Modders
Ok, so after further testing the crash seems to be on this line AFTER the checks pass: (akActionRef as ObjectReference).RemoveItem(Item, 1, true, oCont) I preceded it with a log statement and nothing looks out of place to me: [01/05/2020 - 12:35:57PM] [DBMDisplayAutoSorter < (062ACE1F)>] - Trying to remove Staff of Jyrik Gauldurson[Form < (000E5F43)>] from container [DBM_AutoSortDropOffScript < (09005905)>] and place in [ObjectReference < (06126087)>] I'm running out of ideas :/ Edit: Here's the same output message for a different item "Froki's bow" - this didn't crash. It has to have something to do with the script attached to the weapon.... [01/05/2020 - 12:52:52PM] [DBMDisplayAutoSorter < (062ACE1F)>] - Trying to remove Froki's Bow[Form < (000C0186)>] from [DBM_AutoSortDropOffScript < (09005905)>] and place in [ObjectReference < (06126087)>] -
SSE Possible Engine Issue in SSE
Pickysaurus replied to Pickysaurus's topic in Skyrim's Creation Kit and Modders
So I added the following debug code to the checks to run through each possible issue: ; TEST if (Disp.IsDisabled()) DBMDebug.Log(Self, "Display disabled "+Disp) endif if (akActionRef.GetItemCount(Item)) DBMDebug.Log(Self, "Container "+akActionRef + " has "+ akActionRef.GetItemCount(Item) +" of item "+ Item.GetName()+Item) endif if (!oCont.GetItemCount(Item)) DBMDebug.Log(Self, "Display container "+akActionRef + " has 0 of item "+ Item.GetName()+Item) endif if (!akActionRef as Actor || !(akActionRef as Actor).IsEquipped(Item)) DBMDebug.Log(Self, akActionRef+"is not an actor OR does not have equipped item "+ Item.GetName()+Item) endif if (!DBM_ExcludeList.HasForm(Item)) DBMDebug.Log(Self, "Exclude list does not contain "+ Item.GetName()+Item) endif if ((!useSKSE || !Game.IsObjectFavorited(Item))) DBMDebug.Log(Self, "SKSE is not loaded OR item not favourited "+ Item.GetName()+Item) endif ; TEST Annoyingly with a container instead of an actor, all the checks pass as shown below: [01/05/2020 - 11:51:48AM] [DBMDisplayAutoSorter < (062ACE1F)>] - Display disabled [dbm_dynamicdisplayscript < (062ACD3C)>] [01/05/2020 - 11:51:48AM] [DBMDisplayAutoSorter < (062ACE1F)>] - Container [DBM_AutoSortDropOffScript < (09005905)>] has 1 of item Staff of Jyrik Gauldurson[Form < (000E5F43)>] [01/05/2020 - 11:51:48AM] [DBMDisplayAutoSorter < (062ACE1F)>] - Display container [DBM_AutoSortDropOffScript < (09005905)>] has 0 of item Staff of Jyrik Gauldurson[Form < (000E5F43)>] [01/05/2020 - 11:51:48AM] [DBMDisplayAutoSorter < (062ACE1F)>] - [DBM_AutoSortDropOffScript < (09005905)>]is not an actor OR does not have equipped item Staff of Jyrik Gauldurson[Form < (000E5F43)>] [01/05/2020 - 11:51:48AM] [DBMDisplayAutoSorter < (062ACE1F)>] - Exclude list does not contain Staff of Jyrik Gauldurson[Form < (000E5F43)>] [01/05/2020 - 11:51:48AM] [DBMDisplayAutoSorter < (062ACE1F)>] - SKSE is not loaded OR item not favourited Staff of Jyrik Gauldurson[Form < (000E5F43)>] But it still crashes on the combined check: if Disp.IsDisabled() && (akActionRef.GetItemCount(Item)) && !oCont.GetItemCount(Item) && (!akActionRef as Actor || !(akActionRef as Actor).IsEquipped(Item)) && !DBM_ExcludeList.HasForm(Item) && (!useSKSE || !Game.IsObjectFavorited(Item)) akActionRef.RemoveItem(Item, 1, true, oCont) DBM_DisplayCount.Mod(1) Disp.Enable() DBMDebug.Log(Self, "Displayed item "+Item.GetName() + Item + " for " + Disp) Return 1 endif -
SSE Possible Engine Issue in SSE
Pickysaurus replied to Pickysaurus's topic in Skyrim's Creation Kit and Modders
Bah! It's still crashing. I've created a container to skip the IsEquipped() check but it still doesn't work when the container is unloaded. -
In response to post #76144308. #76144893, #76151838, #76223728 are all replies on the same post. I don't see how your comment is relevant Jeris? We're just talking about changing usernames.
-
We are requiring users to do a password change on first login to our new user service for reasons explained in the recent site news: https://www.nexusmods.com/news/14163
-
deleted34687260 account deleted Reason:Account closed by request
-
deleted73199013 account deleted Reason:Account closed by request
-
deleted73198868 account deleted Reason:Account closed by request
-
In response to post #76157638. #76165048 is also a reply to the same post. Please contact [email protected] from the email linked to your original account for help with this.
-
deleted7261858 account deleted Reason:Account closed by request
-
SnowNegro banned. Reason: Inappropriate username
-
deleted54510547 account deleted Reason:Account closed by request
-
deleted9134409 account deleted Reason:Account closed by request