Jump to content

[Beta] Barbarous Continent


Recommended Posts

Posted
On 4/11/2022 at 4:23 PM, xd987 said:

Could someone tell me how to get the Athena event?

 

Either you can win 2000 caps at the casino, or you can take a loan and lose two times to start a quest for the Don. This quest leads you to the spire and the guests, such as athena, will have their dialogue and events.

  • 2 weeks later...
Posted

Im not sure if this is me but im in the casino and when i go to talk to Katrina to tell her im down on caps and cant pay back the loan it shows no options. It has the ui like it does but they are all blank, any ideas on whats going on? 

 

Posted (edited)
1 hour ago, TerracottaW said:

Im not sure if this is me but im in the casino and when i go to talk to Katrina to tell her im down on caps and cant pay back the loan it shows no options. It has the ui like it does but they are all blank, any ideas on whats going on? 

 

 

You have to have less than either 50 or 100 caps in your inventory for the dialogue to show.

Edited by DæmonEyes
Posted
12 hours ago, DæmonEyes said:

 

You have to have less than either 50 or 100 caps in your inventory for the dialogue to show.

Ah thank you. I was worried I fucked something up on my end haha.

Posted
6 hours ago, Senick said:

Is there a follow-up to the injection Petyr gives you or is that coming in a potential update?

Just a framework at the moment.

Posted (edited)

I just gotta say how amazing this mod is, I hadn't played it for a while to wait for the newer content and damn is it awesome. The amount of effort put in is clear, thank you for creating and sharing it! I can't wait to see what comes next if you continue

Edited by Senick
  • 2 weeks later...
Posted
1 hour ago, dragon13 said:

is mama Murphy supposed to be in the Don's office

 

Hah, I wonder if the Don has her "special chair."

Posted
2 hours ago, vaultbait said:

 

Hah, I wonder if the Don has her "special chair."

He does.. well did. Fixed it for next release.

Posted (edited)
On 5/18/2022 at 5:47 AM, izzyknows said:

He does.. well did. Fixed it for next release.

Are you gonna create a public beta soon (on github for example)? so people could test and submit bug reports faster.

Edited by Alturistix
Posted (edited)

Is there a part 2 of the bimbot programming where someone actually claims you, or is it something that might be expanded in the future? Or is that meant to be flavor text?

 

(Same question regarding the TV event)

 

Also, in the school nickname event, I remember it actually changing the name of the character, am I just misremembering that, did it change, or is something messed up with me game preventing it?

Edited by Senick
Posted
35 minutes ago, Senick said:

Is there a part 2 of the bimbot programming where someone actually claims you, or is it something that might be expanded in the future? Or is that meant to be flavor text?

 

(Same question regarding the TV event)

 

Also, in the school nickname event, I remember it actually changing the name of the character, am I just misremembering that, did it change, or is something messed up with me game preventing it?

At the moment there is no second part to the Bimbo programming.  The brainwashing TV event is the same.  At the moment the mod author is currently working on expanding the mod.

Posted
13 minutes ago, ElsissSurana said:

At the moment there is no second part to the Bimbo programming.  The brainwashing TV event is the same.  At the moment the mod author is currently working on expanding the mod.

thanks! I figured, just curious :)

Posted
On 5/19/2022 at 2:55 AM, Alturistix said:

Are you gonna create a public beta soon (on github for example)? so people could test and submit bug reports faster.

 

I haven't planned on setting up something like that at this time. If I get to the point where I have a more consistent release schedule then I might look into going that route. Right now I just use the discord that Izzy set up to receive some bug reports and communicate with a few testers.

 

37 minutes ago, Senick said:

Is there a part 2 of the bimbot programming where someone actually claims you, or is it something that might be expanded in the future? Or is that meant to be flavor text?

 

(Same question regarding the TV event)

 

Also, in the school nickname event, I remember it actually changing the name of the character, am I just misremembering that, did it change, or is something messed up with me game preventing it?

 

The bimbot and TV hypno event are just starts to future unimplemented content. The nickname you get from the school event is temporary. The papyrus function that's used to change the characters name doesn't persist through exiting the game and reloading, so if you save and exit and reload your name will return to normal. The function can be kind of finicky from my experience though so it may just not have worked.

Posted (edited)
Quote

 

Me: trigger a BCT potion effect

Game: crashes

Me: dang it, that was 40 minutes playtime lost, now what the.. let's check the script log

Notepad++: I'm sorry, I cannot open the log file, there was a problem

SSD: I'm sorry, but there's a small issu...

Me: Shut up, I'm busy with something else, dismiss!

Notepad++: Wanna retry?

Me: What? Yes, retry to open it now!

Notepad++: Aha, figured out why I can't: the file is too big

Me: FFS! Are you now degraded into M$ Win Notepad? Behave!

Notepad++: Sorry, I really can't..

Me: Geez, I guess I have to do it the hard way.. open the location!

File System: I'm working on it .. indexing.. indexing..

Me: Are you guys ganging down on me today? Cancel index, just show me the blasted thing!

File System: Here you go

Papyrus0.log [17.6Gb]: Hello!

Me: WHAT?

SSD: I told you, there's a small issue, I've ran out of space on this partition..

Me: For real? Goddang, powershell get-content Papyrus0.log -tail 200

Powershell: Here's your log tail..

Recursion stack overflow: Hello!

 

 

 

Morale: never ever rely on the contextual condition when running loops or recursion. There WILL be circumstances in which it fails. As you can see, depending on what it does, the result can be really dangerous.

 

Spoiler
Function TranslateLights1()
	While (LightSwitch == 1)
		Light1.TranslateToRef(LightMarker2, 100 as float, 0)
		Light2.TranslateToRef(LightMarker1, 100 as float, 0)
		Light3.TranslateToRef(LightMarker5, 100 as float, 0)
		Light4.TranslateToRef(LightMarker6, 100 as float, 0)
		Utility.Wait(5.6)
		Light1.TranslateToRef(LightMarker1, 100 as float, 0)
		Light2.TranslateToRef(LightMarker2, 100 as float, 0)
		Light3.TranslateToRef(LightMarker3, 100 as float, 0)
		Light4.TranslateToRef(LightMarker4, 100 as float, 0)
		Utility.Wait(5.6)
		Self.TranslateLights1()
	EndWhile
EndFunction

 

 

this ended up spamming the log infinitely many times - because normally the stack trace would be trimmed down for a single call but you did infinite recursion (with empty stack because it will be cut off after some point) so the game generated 17+Gb of similar repeating log messages about the infinite recursion with empty stack trace.

 

Worst-case scenario: I could've had only one partition + the remaining space was less than my RAM (i.e. OOM would not occur before the FS space was full) + it was a bootable partition. In this case I'd fill it full and have real struggles booting the machine up without resorting to external tools.

Edited by Operand
Posted

Tha atomic manor isnt working atm? or i'm just an fool?

after sleeping in bed its kinda over for me, i can go into the rooms, but no activities inside, but going back and forth between the rooms triggers the public event where all the pedestals empty, even after you find your 'spot' the room stays empty.

The mod is at the bottom of my load order.

Posted
1 hour ago, GabrielTheGoat said:

Tha atomic manor isnt working atm? or i'm just an fool?

after sleeping in bed its kinda over for me, i can go into the rooms, but no activities inside, but going back and forth between the rooms triggers the public event where all the pedestals empty, even after you find your 'spot' the room stays empty.

The mod is at the bottom of my load order.

 

That area is a work in progress, you've seen all there is to see so far.

  • 2 weeks later...
Posted
2 hours ago, HunterFalloutXXX1997 said:

In the quest to collect the cum of the super mutants it does not work. when I go to the camp the super mutants don't tell me anything. sorry for my  bad english

 

Did the mod teleport you to their camp, or did you walk there? What's supposed to happen is that after you talk to Shakira at the Shake Shack about collecting the special ingredient for her, you suddenly find yourself at the mute camp at the edge of the island. Then you talk to the super mutants there in order to progress in that task.

Posted
11 hours ago, vaultbait said:

 

Did the mod teleport you to their camp, or did you walk there? What's supposed to happen is that after you talk to Shakira at the Shake Shack about collecting the special ingredient for her, you suddenly find yourself at the mute camp at the edge of the island. Then you talk to the super mutants there in order to progress in that task.

I walk there. In your opinion what could be the problem ? I'll try to check again

Posted
5 hours ago, HunterFalloutXXX1997 said:

I walk there. In your opinion what could be the problem ? I'll try to check again

 

My first guess would be that you left Shakira before completing the conversation which triggers that teleport. Sometimes there can be delays with the dialogue.

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...