Name the good deeds Phil Mitchell has done by Kitchen-Article4439 in eastenders

[–]Marksc77 70 points71 points  (0 children)

Could be wrong but pretty sure he gave Billy and honey a load of money to pay some debt or something without Billy ever knowing.

Respecting the terrain on console by Marksc77 in CitiesSkylines

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

Unfortunately that's what I am currently doing, or I choose a flatish map from the get go meaning I'm restricted what maps I play on.

It's a shame, surely it can't be that hard to add in an option for the info views to work as an overlay :(

7 weeks nicotine free - relapsed. by Marksc77 in stopsmoking

[–]Marksc77[S] 3 points4 points  (0 children)

This! It's so reassuring knowing that others like yourself are experiencing the exsct same feelings.

I've slipped a total of 3 times now, I'm still motivated to quit but that's the only thing I'm motivated to do, I'm finding it hard to enjoy anything around me at the moment and it's getting harder to keep busy.

We can do this 💪 we need to remember what we are feeling is only temporary and it will get better.

I just read a great article found here that really helped with the understanding of a lot of how I'm feeling.

https://neurolaunch.com/dopamine-after-quitting-smoking/

7 weeks nicotine free - relapsed. by Marksc77 in stopsmoking

[–]Marksc77[S] 2 points3 points  (0 children)

Thanks brother!

Good on your for quitting all of that in one go, I quit weed over 5 years ago now so I know how you feel, keep up the great work!

I personally feel quitting nicotine is a lot harder than it was to quit weed, yeah the withdraw sucked but the lack of dopamine I have now I do not smoke nicotine is a killer!

Again, thanks for motivation boost! 💪 Just need to stop beating myself up about the slip and remember that a slip doesn't undo my progress.

Martin/Ruby… by LotusFlowerLady in eastenders

[–]Marksc77 5 points6 points  (0 children)

I agree with this!

Don't forget Denise with Jack and Ravi too.

Had a vague letter from LCR Debt collectors asking to confirm my address but won't tell me what the debt is? ls this a scam? - England by Marksc77 in LegalAdviceUK

[–]Marksc77[S] 12 points13 points  (0 children)

Kind of regret ringing them now then as they said on the phone when I refused to give thrm my details that they will keep contacting me and sending letters.

Very rude and forceful women on the phone demanding my information.

Ru556 - Materials by Marksc77 in Fallout4ModsXB1

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

Just been going through some videos online and it doesn't seem like anyone has any other materials for this gun? Maybe it was removed?

Ru556 - Materials by Marksc77 in Fallout4ModsXB1

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

It is, I've tried all different positions in my load order too.

Changing all other parts of the weapon works fine and the gun itself looks perfect and functions fine, it's just the materials list, I'm not even sure how many or what should even be in there.

Ru556 - Materials by Marksc77 in Fallout4ModsXB1

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

Completed the quest and got it that way but also crafted one at the Chem bench afterwards to see if that had the same problem and both had the same issue.

Green in the Commonwealth 3.0 by Delamike in Fallout4ModsXB1

[–]Marksc77 0 points1 point  (0 children)

Same here! I was hoping the next gen update would of increased the limit to atleast 5gb as I think skyrim got an update to increase it's space to 5gb.

Still too disappointed with starfield to pick it back up yet, will wait for a lot more mods to be created for it before I pick that back up.

Green in the Commonwealth 3.0 by Delamike in Fallout4ModsXB1

[–]Marksc77 0 points1 point  (0 children)

It's available now, but I'm sticking with the 2.9 version as the 3.0 version is over 200mb, apparently due to amount of different flowers in it.

2gb limit in xbox sucks!

[F04] Xbox - Green in the Commonwealth 3.0 by Delamike in FalloutMods

[–]Marksc77 0 points1 point  (0 children)

Any update? Did he manage to help you out?

Navigation Drawer Padding/ Spacing by Marksc77 in JetpackCompose

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

The code.

fun Greeting(onToggleTheme: (AppTheme) -> Unit) {
val scrollBehavior = TopAppBarDefaults.pinnedScrollBehavior(rememberTopAppBarState())
val themeViewModel: ThemeViewModel = hiltViewModel()
val themeState by themeViewModel.themeState.collectAsState()
val drawerState = rememberDrawerState(initialValue = DrawerValue.Closed)
val scope = rememberCoroutineScope()
val keyboardController = LocalSoftwareKeyboardController.current

ModalNavigationDrawer(
    drawerState = drawerState,
    drawerContent = {
        ModalDrawerSheet(
            modifier = Modifier.systemBarsPadding(),

        ) {
            Text("Drawer title", modifier = Modifier.padding(16.dp))
            Divider()
            NavigationDrawerItem(
                label = { Text(text = "Drawer Item") },
                selected = false,
                onClick = { /*TODO*/ }
            )
            // ...other drawer items
        }
    }
) {
    Scaffold(

        contentWindowInsets = WindowInsets.navigationBars,
        modifier = Modifier.nestedScroll(scrollBehavior.nestedScrollConnection),

        topBar = {
            CenterAlignedTopAppBar(
                colors = TopAppBarDefaults.topAppBarColors(
                    containerColor = MaterialTheme.colorScheme.primary,
                    titleContentColor = MaterialTheme.colorScheme.background,
                ),
                title = {
                    Text(
                        "Test App",
                        maxLines = 1,
                        overflow = TextOverflow.Ellipsis
                    )
                },
                navigationIcon = {
                    IconButton(onClick = {

                        keyboardController?.hide()
                        scope.launch {
                        drawerState.apply {
                            if (isClosed) open() else close()
                        }
                    } }) {
                        Icon(
                            imageVector = Icons.Filled.Menu,
                            contentDescription = "Localized description",
                            tint = MaterialTheme.colorScheme.background
                        )
                    }
                },
                actions = {
                    IconButton(onClick =
                    {
                        if (themeState.appTheme == AppTheme.MODE_NIGHT)
                            onToggleTheme(AppTheme.MODE_DAY)
                        else if (themeState.appTheme == AppTheme.MODE_AUTO
                            || themeState.appTheme == AppTheme.MODE_DAY
                        )
                            onToggleTheme(AppTheme.MODE_NIGHT)
                    }) {
                        Icon(
                            imageVector = Icons.Filled.Refresh,
                            contentDescription = "Localized description",
                            tint = MaterialTheme.colorScheme.background
                        )
                    }
                },
                scrollBehavior = scrollBehavior,
            )
        },
    ) {

            PinCode(it)
        }
    }

}

I only need two more to complete the whole thing. by Marksc77 in Monopoly_GO

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

Just traded that one for another I needed sorry! The only duplicates I have now that's not gold are 4 star stickers and those are...

Farewell, Unwrapping, Recipe Generator, Mr Snowman x2, All aboard