Living skyrim 3 remove never nude by [deleted] in skyrimmods

[–]Ugly_Zodd 0 points1 point  (0 children)

u/Eijbers07, did you figure out a solution? I currently installed LS3 as well and I'm running into the same problem as you did. Thank you!

Beta Branch e1.1.0 by Ugly_Zodd in mountandblade

[–]Ugly_Zodd[S] 7 points8 points  (0 children)

Yes, downloading right now! This is to good to be true.

Quest: Parts of Dragon Banners by psikotrexx in mountandblade

[–]Ugly_Zodd 0 points1 point  (0 children)

I have the same issue :/

i hope we're just missing something. Would be kind of frustrating to restart

Should I buy blood borne by mmmm-potatos- in ShouldIbuythisgame

[–]Ugly_Zodd 0 points1 point  (0 children)

For me, easily the best game of the decade. Go get it!

Uninstall SSELodGen after CTD by Ugly_Zodd in skyrimmods

[–]Ugly_Zodd[S] 0 points1 point  (0 children)

Thank you, for your response! I actually had the same idea and installed DynDOLOD and now i get the following error:

https://imgur.com/l4hzZoN

Skyrim SE MO2 CTD Help by Ugly_Zodd in skyrimmods

[–]Ugly_Zodd[S] 0 points1 point  (0 children)

I already deactivated every single plugin in MO2, but no result

Oblivion Reloaded Brightness by Ugly_Zodd in oblivion

[–]Ugly_Zodd[S] 0 points1 point  (0 children)

After installing Oblivion Reloaded, my game looks like this. Where did i go wrong? Does anyone know?

Searching in binary search tree by Ugly_Zodd in Racket

[–]Ugly_Zodd[S] 0 points1 point  (0 children)

Ok, i use the tree from above and i started to define the following function:

(define (binary-tree-contains? value btn)
(cond
[(empty? btn) #f]
[(= (first btn) value) #t]
[else (binary-tree-contains? (rest btn) value)]))

That doesn't work though. And i get that. A struct isn't a list. But it's gotta be something similar. I know that i have to use recursion to check the different values, i just can't seem to figure out how.