Created
August 6, 2011 13:43
-
-
Save ecylmz/1129348 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
#!/body/brain | |
#-*- coding:wtf-8 -*- | |
# Relationship script | |
# Copyright ©, 2011 ecylmz | |
from life import * | |
def relationship(who): | |
boring = False | |
while not boring: | |
SMS.send(who) | |
Walk.beach(who) | |
Call.treeG(who) | |
Eat.random(who) | |
result = Discuss.envy(who, friend) | |
if result == "fight": | |
boring = True | |
else: | |
Apologize(who) | |
print "Sağlık olsun..." | |
return EndRelationship(who) | |
def EndRelationship(who): | |
Block.All(who) | |
Delete.All(who) | |
return "Nerede Kalmıştık..." | |
if __name__ == '__main__': | |
who = raw_input("Onun İsmini Yaz ya da Yol Yakınken CTRL-C Yap): ") | |
relationship(who) |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment