Jump to content

Crosstieger

Members
  • Posts

    248
  • Joined

  • Last visited

Everything posted by Crosstieger

  1. What I am most worried about is that there is a chance that in the future mods like SkyUi, USSEP (and/or their future equvilante for future games like Starfield), y'know the mods that essentially everyone needs to get a stable game, will be behinde a pay wall. I didnt read all the comments so idk if this has been discussed before. Just imagine for a second if the script extender would be payd only. Do they deserve the money? Hell yes. Would I like having to pay idk 20, 30 more € just to start modding the game?
  2. I assume you are talking about the quest "Special Delivery". You can try the command setstage 000503B8 15 which will advance the quest to the stage where you have to talk to Jack at his house.
  3. Being able to create a local mirror server? That would be something worth buying premium for.
  4. Sometimes the waybackmachine can show you the mod description including pictures. But only if the page was archived at some point, the mod wasn't age restricted and it only shows the main page.
  5. I've red on other forums that - apperently, maybe, eventually he's moving the mods to a private site that is currently being build. But that's all i know. So give this a few weeks...
  6. Anyone know why it's hidden? Seems like all his mods are hidden.
  7. As someone only familliar with Bethesda games, can you guys estimate if its possible to mod the promissed but cut features back into the game? Im talking about things like wall running, ingame char customization, dual wield, police ai, you name it. With no wording on any official dev kit I assume things dont look to bright. But then again I dont know much about creating mods for the red engine. Was there ever a dev kit for Witcher?
  8. I want some of the stuff this guy is smoking. Must be good quality
  9. I feel you. I installed Horizon around 2 months ago and it's still fine.
  10. The describtion of Horizon states this: That said I installed Horizon mid gameplay and my game hasn't died yet. If you install a large mod mid gameplay you might lose out on some features that were intended to happen early on and / or you might see some features not working at all. The only way to truly find your solution is to just try it. But always keep a backup of your safes and be ready to roll back at any moment.
  11. No, it's as I said. If you remove the file, the mod will disappear from nmm and you will be unable to do things with it (eg. uninstalling, modifying, etc)
  12. No, don't delete them. If you do the mod will disappear from your mod list and NMM will be unable to do most things with the mod.
  13. As far as I know there is now way to advance that quest once you destroyed the RR since Amari will dislike you for good. You could try to advance the quest via console but I don’t know the consequence to that.
  14. Agree 100%. To me it always looks like someone is unable to take a straight photos of someone or something. It just looks strange.
  15. I used to move my entire installation between two pcs back and forward all the time. I'm not giving you any guarantee that this will work for you but this is how I have done it multiple times. First: There is no need to move the save files. They are store within the documents folder of your user profile (C:/user/<your user>/documents). It is possible to move the entire documents folder over to the ssd but not really worth it since the save files are not that big in size. Second: You will need to reinstall the game and nmm in order to correctly update all the paths but don't worry this will be rather simple and painless. So here we go: You do this at your own risk! Backup everything And by "everything" I mean the following directories: - The entire FO4 game directory "\steamapps\common\Fallout 4" - The appdata folder "C:\Users\<your user>\AppData\Local\Fallout4" (This is where you would find the load order file for example) - The "Install Info" and "Mods" folder of NMM (If you don't know where those folder are located click on the little arrow left of the gear wheel icon in NMM and click on "open NMMs mods folder") Make sure you backed up everything! Backup done? Now uninstall Fallout 4 through Steam and uninstall NMM. Sound crazy right? - Make sure that all files are deleted since Steam for example won't delete the files installed by a mod Download Fallout 4 again but this time select the ssd as your Steam library - Once downloaded start the game at least once. You can quit as soon as you are in the menu Reinstall NMM and select the ssd as the new location - Quit NNM for the next step!! Now you need to copy the files from your backup to the new destination and override anything if asked - So the entire FO4 folder into the new Steam library - The entire content of the appdata folder. This folder will always keep its location and shouldn’t be changed. - The “Install Info” and “Mods” folder Now start NMM again and you should see all your mods as they used to be. Check the plugins tab to make sure all the esp’s are active Start the game and enjoy. Again, you do this at your own risk!
  16. That's a known problem with vortex. Just wait until they release an update.
  17. Alright I figured out what was wrong. Apparently I can't register for the OnItemEquipped event OnInit... Yeah go figure... Anyway I solved it by moving the RegisterForRemoteEvent to a different part of my script.
  18. I don't know what I'm doing wrong but I can't get that to work either. I looked at the HCManager Script and tried to recreate it one by one. Scriptname AAA_WTFCoreScript extends Quest Event OnInit() InitFoodProcessing() EndEvent Function InitFoodProcessing() Actor PlayerRef = Game.GetPlayer() ;Register for the OnItemEquipped Event RegisterForRemoteEvent(PlayerRef, "OnItemEquipped") EndFunction Event Actor.OnItemEquipped(Actor akSender, Form akBaseObject, ObjectReference akReference) ;A notification to tell me what info I receive from the parameters Debug.Notification("OnItemRemoved Event akSender: " + akSender + ", akBaseObject: " + akBaseObject + ", akReference: " + akReference) If akBaseObject.HasKeyword(KeywordFood) Debug.Notification("Success") Else Debug.Notification("Total disaster") EndIf endEvent I'm not getting any notifications and if I change it to debug.trace the papyrus log doesn't write anything down.
  19. So I'm currently working on a script that checks if the player consumes any food item. The script is attached to a quest. Scriptname AAA_WTFCoreScript extends Quest Keyword Property KeywordFood Auto Const Event OnInit() AddInventoryEventFilter(KeywordFood) RegisterForRemoteEvent(Game.GetPlayer(), "OnItemRemoved") EndEvent Event ObjectReference.OnItemRemoved(ObjectReference akSource, Form akBaseItem, int aiItemCount, ObjectReference akItemReference, ObjectReference akDestContainer) debug.MessageBox("OnItemRemoved Event") EndEvent The problem I have is that ingame the messagebox doesn't appear as If the event isn't called. According to the creationkit wiki I have to use the InventoryFilter to avoid getting event spamming which can filter by keyword. So I filter out keywords that are attached to the item. My KeywordFood has the keyword "ObjectTypeFood" attached to it. Also in the examples the event is called simply by "Event OnItemRemoved" without the ObjectReference but if I do this the compiler spits out the error that I'm not allowed to define new events because the script is not flagged as native. What am I doing wrong?
  20. Any information about its behaviour? Is the location static or does it change at some point (like every second day or so)? Nm..
  21. I would advise that you start vanilla and add mods as you go along. If you don't know how the game feels in vanilla state it might be a bad idea to add mods right away. Also it can spoil you a lot of things. If you encounter something that you don't like or you get the thought "man would be nice to do this or that" that's when you should look for mods.
  22. Tbo I can't recall that anyone ever got the game to run at such a resolution. Beth' games in general struggle with wide angel resolutions. Even 21:9 isn't easy to achieve let alone 48:9. Are you running a Nvidia card? There is a feature called Mosaic but I'm not sure if that's exclusive to the Quadro line up.
×
×
  • Create New...