Jump to content

Zimmer

Dedicated Members
  • Posts

    670
  • Joined

  • Last visited

Posts posted by Zimmer

  1. I download the file and extract it with both WinRAR and 7-Zip neither ask for a password. I then get two files and one has hex that in ASCII is Rar!?. I tried extracting those two files but they aren't RAR files. So what files is the password protect one?

  2. VaKo

    Also, with the concept of original sin in mind, are babies/fetuses really innocent?

    You assuming I'm Catholic? You don't have to be Catholic to be aggainst Abortion. Yes they are a main group opposed to it though.

    We could just tow the line with nature, but then we should probally throw out everything else that goes against nature. Starting with computers, cars, surgery, planes, clean water etc

    I never did say anything against Technology or Civilization. Did I?

  3. QUOTE

    I can\'t vote this election but I will definetly vote next one. I think Obama is going to win becaouse people money over life.

    Made no sense

    QUOTE

    This was pointed to those voting for Obama to lower taxes and other things to get money, when they ignore the lives of the innocent.

    Its an ancient custom to kill weak children and only allow the strongest to live, at least we are doing it before they take their first breath...

    Does that make it any more right to commit murder? No.

    I didn't live then, I do now.

    I understand peoples feelings towards abortion, but what if some 14 year old girl is raped by her dad and then has a brick smashed into her skull so she wont tell daddy\'s little secret. She lives the rest of her life retarded, but she is also carrying the fetus of her incestuous father... should she have to bare that?

    So the baby didn't do anything and is defenseless so he/she dies. Should the baby have to die. No. It's said that this happens but the baby has a right to life as well and for raising the baby, adoption their are many many couples that can't have a baby for what ever reason. The baby gets a good life and yes it doesn't help the poor girl but the baby shouldn't get punished for it.

    Or some poor whore who already has 3 kids gets pregnant, she supports those kids by blowing guys behind dumpsters and goes home every night and cries her self to sleep because she wants a better life, for her and her children... but now she has another one one the way. Barely able to make ends meet as it is, in this horrid economy, what other options does she have. Yes she could give it up and hope it gets adopted, but during the pregnancy how will she support her children. Do you really want that?

    Another reason not to have sex. Babies usaully happen.

  4. THESE OUR MY THOUGHTS YOU DON'T HAVE TO AGREE WITH THEM. PLEASE DON"T FLAME ME FOR MY THOUGHTS.

    I don't want the goverment deciding what is best for me. I know what is best for me not the goverment. I don't want a big brother thanks but I have had my parents for 18 years I don't need someone else stepping in for them.

    I can't vote this election but I will definetly vote next one. I will vote to defend the lives lost each year to abortion. For I could have easily been one of those lives lost, I was born premature, if I was in my mother's womb I could have been killed but I wasn't so it would have been illegal, now does that make sense... that it is the place I'm in that decides my right to life to me it doesn't I'm glad my mom was pro-life, are you? Oh and Obama has said that he supports Abortion. Mcain doesn't so even if when I'm driving I'm paying four dollars a gallon at least those babies will either be taken care of by their biological mother or adopted to those who don't have the blessing of a child. Here is more food for thought how is it that in some places if a pregnant women is killed it is double homicide, you there for recognize the fetus is human and diserves human rights, yet abortion and partial birth abortion are legal. Also for those who still believe that a fetus isn't even living... Cells are defined as living 1 Yet cells are in the fetus, so the fetus is living.

  5. Here is my text adventure.

    Choose a Character or Random.

    It has characters like MMORPGs but it is hardly a MMORPG.

    Choose a Weapon. Beat other 'characters'

    or Die

    Hope you guys like it.

    Its my first actual program. :)

    To run it you will need to download Python Website

    #Text Adventure
    #Zimmer
    #Python
    #The Below Defines Everything to prevent errors when called
    import random
    def Magician():
        print "You know take the Magicians path."
        print "You first fight the Knight"
        ch1=raw_input("Spell 1 or 2 ")
        if ch1=="1":
            print "You have been killed. R.I.P"
            exit
        if ch1=="2":
            print "You have mortaly wounded him/her. You win."
            Magician2()
    def Magician2():
        print "You have suceeded in beating the Knight but will you beat the Foot Soldier."
        print "The Foot Soldier is two times stronger."
        ch2=raw_input("Spell 1, 2, or 3 ")
        if ch2=="1":
            print "You have hit him/her but he still stands."
            Magician23()
        if ch2=="2":
            print "He/She counters. You become mortally wounded."
            exit
        if ch2=="3":
            print "You miss and nothing happens."
            Magician2()
    def Magician23():
        print "You have gotten half way."
        ch23=raw_input("Spell 1, 2, 3, 4, or 5 " )
        if ch23=="1":
            print "You are dead. R.I.P"
            exit
        if ch23=="2":
            print "Champion!!"
            print "Well done..."
            print "The secret at the end..."
            print "Yes what about it?"
            print "Fine. It is '14569390'"
            input("Pause")
        if ch23=="3":
            print "You have died"
            exit
        if ch23=="4":
            print "You have missed. Improve you acuracy."
            Magician23()
        if ch23=="5":
            print "You have missed. Improve you acuracy."
            Magician23()
    
    def Knight():
        print "You know take the Knights path."
        print "You first fight the Foot Soldier"
        ch1=raw_input("Lance or Sword ")
        if ch1=="Lance":
            print "You have been killed. R.I.P"
            exit
        if ch1=="Sword":
            print "You have mortaly wounded him/her. You win."
            Knight2()
    def Knight2():
        print "You have suceeded in beating the Knight but will you beat the Foot Soldier."
        print "The Foot Soldier is two times stronger."
        ch2=raw_input("Lance, Sword, or Flail ")
        if ch2=="Lance":
            print "You have hit him/her but he still stands."
            Knight23()
        if ch2=="Sword":
            print "He/She counters. You become mortally wounded."
            exit
        if ch2=="Flail":
            print "You miss and nothing happens."
            Knight2()
    def Knight23():
        print "You have gotten half way."
        ch23=raw_input("Lance, Flail, Sword, Axe, Crossbow " )
        if ch23=="Lance":
            print "You are dead. R.I.P"
            exit
        if ch23=="Flail":
            print "Champion!!"
            print "Well done..."
            print "The secret at the end..."
            print "Yes what about it?"
            print "Fine. It is '14569390'"
            input("Pause")
        if ch23=="Sword":
            print "You have died"
            exit
        if ch23=="Axe":
            print "You have missed. Improve you acuracy."
            Knights23()
        if ch23=="Crossbow":
            print "You have missed. Improve you acuracy."
            Knights23()
    def Foot_Soldier():
        print "You know take the Foot Soldiers path."
        print "You first fight the Knight"
        ch1=raw_input("Lance or Sword ")
        if ch1=="Lance":
            print "You have been killed. R.I.P"
            exit
        if ch1=="Sword":
            print "You have mortaly wounded him/her. You win."
            Foot_Soldier2()
    def Foot_Soldier2():
        print "You have suceeded in beating the Knight but will you beat the Foot Soldier."
        print "The Foot Soldier is two times stronger."
        ch2=raw_input("Sword, Lance, Broadsword ")
        if ch2=="Sword":
            print "You have hit him/her but they still stands."
            Foot_Soldier23()
        if ch2=="Lance":
            print "He/She counters. You become mortally wounded."
            exit
        if ch2=="Broadsword":
            print "You miss and nothing happens."
            Foot_Soldier2()
    def Foot_Soldier23():
        print "You have gotten half way."
        ch23=raw_input("Lance, Sword, Broadsword, Axe, Crossbow" )
        if ch23=="Lance":
            print "You are dead. R.I.P"
            exit
        if ch23=="Sword":
            print "Champion!!"
            print "Well done..."
            print "The secret at the end..."
            print "Yes what about it?"
            print "Fine. It is '14569390'"
            input("Pause")
        if ch23=="Broadsword":
            print "You have died"
            exit
        if ch23=="Axe":
            print "You have missed. Improve you acuracy."
            Foot_Soldier23()
        if ch23=="Crossbow":
            print "You have missed. Improve you acuracy."
            Foot_Soldier23()
    Welcome = "Welcome to this text adveture!"
    print Welcome
    Q1="What do you wish to be?"
    Q12="Magician."
    Q13="Knight."
    Q14="Foot Soldier."
    Q15="Random"
    def Start():
        if ch=="Magician":
            print "You have chosen Magician."
            Magician()
        if ch=="Knight":
            print "You have chosen Knight"
        if ch=="Foot Soldier":
            print "You have chosen Foot Soldier"
        if ch=="Random":
            print "You have chosen Random"
            print "Random chose "
            x=random.randrange(1, 100, 1)
            if x<=33:
                Magician()
            if x<=66:
                Knight()
            if x<=99:
                Foot_Soldier()
    print Q1
    print Q12
    print Q13
    print Q14
    print Q15
    ch = raw_input("Choice? ")
    Start()

  6. I forgot to mention another reason for not trying TKinter and WxPython is that they are pretty ugly and Wx and TKinter seem to be losing use and are becoming more and more ancient. Please correct me if I am wrong thanks again!

  7. Hello I have been learning to program for a while know and tried several languages including C and C++ which I found to slow to actualy get a application that does something. I then found Python www.python.org. I have been following some tutorial and now want to do GUI Programing with it. I tried Tkinter, WxPython both the code for tutorials didn't even work. I then tried PYQT and did a little bit but after a while the tutorials usered QtDesigner which I could never get QT installed. So do you guys have any good GUI toolkits or tutorials on how to fix my prevous problems? Thanks. :)

  8. Well you have to have it from a admin permission sys exe. You can't edit sys files usually locked. Memory is usaully scanned by anti virus for malicous code but what about Virtual Memory, the hard drive all you would have to do is fill up the RAM to get admin permision exe into virtual memory then add the bit and bytes. Think it would work?

×
×
  • Create New...