Skip to content

Instantly share code, notes, and snippets.

@ecylmz
Created August 6, 2011 13:43
Show Gist options
  • Save ecylmz/1129348 to your computer and use it in GitHub Desktop.
Save ecylmz/1129348 to your computer and use it in GitHub Desktop.
#!/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