Jump to content

DMentMan

Members
  • Content Count

    1655
  • Joined

  • Last visited

Community Reputation

707 Excellent

About DMentMan

  • Rank
    Mr. Sir

Contact Methods

  • Website URL
    https://anilist.co/user/DMentMan/
  • Steam
    DMentMan
  • Twitch
    DMentMan
  • Discord
    DMentMan#6969

Profile Information

  • Gender
    Male
  • Location
    Sweden, Stockholm
  • Interests
    Lots of things... like um... games.

Profile Fields

  • Bio
    I'm a potato

Recent Profile Visitors

18470 profile views
  1. Hello, I am looking for some people to play with in DayZ (no mods). Must speak English EU servers Doesn't mater if you're new or veteran. My timezone is GMT+2. Will use Discord or TS. If you're interested shoot me a message on Steam: https://steamcommunity.com/id/DMentMan Have a nice day.
  2. DMentMan

    DayZ Stable Update 1.0

    Ah it's a good day! Great job!
  3. Yup since 2014. There were no animations at the time for picking apples and we just spammed F and got a million apples haha =D
  4. My apples brings all the boys to the yard!
  5. DMentMan

    Girl Vs Girl Event , Sisters of Cherno

    15 girls, one cup
  6. DMentMan

    Status Report 24 October 2017

    Great stuff!
  7. DMentMan

    Shoot , Kick and Slap out of the Car

    slap...? lol This?
  8. DMentMan

    DayZ - "Afterwards" - A Short Cinematic.

    Nice work dude, beans!
  9. DMentMan

    .63 ETA ?

    Haha, best thing I've seen today.
  10. DMentMan

    Status Report - 10 October 2017

    Cool stuff =D
  11. DMentMan

    Status Report - 12 September 2017

    Awesome stuff =D
  12. DMentMan

    Python Coding - Help Me Please

    Indeed, only started a week ago.
  13. DMentMan

    Python Coding - Help Me Please

    Alright guys, it's working! Thanks everyone!
  14. DMentMan

    Python Coding - Help Me Please

    A friend told me to do it and I just left it like that =D I'll try to redo it with the info you provided in mind =) Replacing str(int(Money)) with int(Money) gives an error =/ Thanks guys, I'll let ya know if it works =D
  15. Hello, I only recently got into coding in Python and I've got a problem I can't solve so I hope someone might be able to help me here. =D I want my simple piece of code to say that if you have over 8000 it responds with that you can pay the rent. If you have under 8000 I want it to respond with that you can't pay the rent. I've pretty much got it working after a few issues being fixed, but if the input is 30 it says I can't pay the rent for some reason... Anyways here is the code, and thanks for any feedback or help =D (And yes I know like 5 and 7 are not needed, but they fixed some problems when I put 10000 as the input it said I can't afford to pay the rent for some reason =P) def Money(): Money = input("How much money do you have?") str(int(Money)) if Money > "8000": print("You can pay the rent!") elif Money > "10000": print("You can pay the rent!") elif Money == "10000": print("You can pay the rent!") elif Money == "8000": print("You can pay the rent!") elif Money < "8000": print("You can't afford to pay the rent!") else: print("Error") Money() def exit1(): #Exits program after question has been answered exit1() exit()
×