• Mr. Fap
    695 replies, posted
[QUOTE=ddrl46;25701267]I've stopped running Mr. Fap, have fun taking over my place.[/QUOTE] I got past you a long time ago. :smug:
[QUOTE=Jerzy;25701903]I got past you a long time ago. :smug:[/QUOTE] That was because Mr. Fap was being a bitch and crashing every 5 minutes and I decided to stop.
[QUOTE=TheBoff;25700463]Guys, I am 14, and I just popped in to let you know that you are HIGHLY IMMATURE. If you continue to be so HIGHLY IMMATURE with this pointless so called game OF YOURS which is NOT A GAME AT ALL you are very sad and HANDICAPPED. I THINK YOU ARE SAD and that you should grow up so that you touch a girl like I have done. I touched a girl yesterday and it was good, and it showed me why you should BE MATURE and not like RUBBISH GAMES (not games) LIKE THIS because GIRLS ARE MUCH BETTER THAN THIS. Actually I PITY YOU POOR IMMATURE twelve year olds if you are no twelve that is just SAD. IT IS GREAT BEING [b]FOURTEEN[/b[ BECAUSE I HAVE NO SENSE OF HUMOR ABOUT MYSELF AND AM [b]VERY SERIOUS[/b] SO I HAVE HAD CONTACT WITH [b]GIRLS[/b] NOT LIKE YOU I AM SORRY NOT A GAME. (This post selfrated ZING because I AM AWESOME) ----- Sorry this is very late etc, And really not necessary, but wow, how humorless can you get.[/QUOTE] If you dont like it then why did you come in to the thread.
Seems like everyone has missed that guy 2-3 pages back :v:
[QUOTE=ZeekyHBomb;25702457]Seems like everyone has missed that guy 2-3 pages back :v:[/QUOTE] My bad didnt realize he was mocking him
[QUOTE=ZeekyHBomb;25702457]Seems like everyone has missed that guy 2-3 pages back :v:[/QUOTE] [url=http://www.facepunch.com/threads/1017271-Mr.-Fap?p=25658864&viewfull=1#post25658864]Link for the lazy[/url].
Damn overv how did you over take me?
supa lube
I didn't miss anything, I just skipped it.
[QUOTE=Overv;25704269]supa lube[/QUOTE] God dammit.
Proud to be second to reach 2,000,000. :buddy:
Looks like your glory was short lived overv!
I'm not using any effect right now fuck you
I'me resigning, getting boring now. My password is "_lol_", now you can go try this password on my steam and where ever or just give me a huge penalty.
SUPA LUBE time.
Anti Christ has nearly got enough to buy 2 supa lubes. Why isn't he buying supa lube? He could get to 1st place. [url]http://mr-fap.com/user-76.html[/url]
Cobra, accept my friend invite :smith:
[QUOTE=eXeC64;25721112]Anti Christ has nearly got enough to buy 2 supa lubes. Why isn't he buying supa lube? He could get to 1st place. [url]http://mr-fap.com/user-76.html[/url][/QUOTE] I'm saving up for 24 supa lubes.
eXeC64, can you modify your script to add some sort of money saving system? Like instead of buying something when money >= cost, buy only when money >= (cost + saved_amount), where saved_amount increases with each purchase and is different for each item
jesus christ overv you and your super lubes [editline]29th October 2010[/editline] Dradious and you too
:smug:
What the christ is Sir Colton using. :psyduck: [editline]30th October 2010[/editline] I mean not now, all the time.
I have 52092 points, I feel good inside. Now I just need 514908 more points, until I can afford 24 hours of SUPA LUBE. Then who's gonna be laughing? [editline]30th October 2010[/editline] I will.
Jesus Christ, slow down. [editline]30th October 2010[/editline] I meant Anti Christ.
[QUOTE=Jerzy;25739463]Jesus Christ, slow down. [editline]30th October 2010[/editline] I meant Anti Christ.[/QUOTE] But I want to win!
When the sabotage items come out I'm quitting. So don't worry about me being there then.
[QUOTE=shill le 2nd;25727312]eXeC64, can you modify your script to add some sort of money saving system? Like instead of buying something when money >= cost, buy only when money >= (cost + saved_amount), where saved_amount increases with each purchase and is different for each item[/QUOTE] [code] #!/usr/bin/python from time import sleep from datetime import datetime import urllib import json import os def Clear(): os.system(['clear','cls'][os.name == 'nt']) def LoadSettings(): file = open("mrfap.ini","r") authline = file.readline().rstrip() #remove newline/whitespace at end shopline = file.readline().rstrip() #remove newline/whitespace at end file.close() authlist = authline.split(':') global user user = authlist[0] global password password = authlist[1] global saving try: saving = int(authlist[2]) except: saving = 0 global autobuy autobuy = shopline.split(':') global update_params update_params = urllib.urlencode({'update':1,'name':user,'pass':password,'client':'exec64'}) global status_params status_params = urllib.urlencode({'status':1,'name':user,'pass':password}) def Main(): LoadSettings() while True: Clear() print(""" __ __ ____ _____ | \/ | _ \ | ___|_ _ _ __ | |\/| | |_) | | |_ / _` | '_ \ | | | | _ < _ | _| (_| | |_) | |_| |_|_| \_(_) |_| \__,_| .__/ |_| 3=================================> ~~~~ Client by eXeC64 3=================================> ~~~~ """) Tick() sleep(5) def Tick(): try: f = urllib.urlopen("http://www.mr-fap.com/api.php",update_params) f.read() f.close() f = urllib.urlopen("http://www.mr-fap.com/api.php",status_params) data = f.read().decode('utf-8') f.close() except: print("connection error") return try: j = json.loads(data) except: print("parsing json error") return try: username = j['user']['name'] faps = j['user']['faps'] points = j['user']['points'] effect = j['effect'] except: print("reading json error") return print "%s has %s faps and %s points." % (username,faps,points) if int(effect['bonus']): print "%s is currently using %s which will expire in %s minutes" % (username,effect['name'],str(int(effect['ends'])/60)) else: print "%s has no effect active at the moment." % (username) try: ic = urllib.urlopen("http://www.mr-fap.com/api.php?items") istr = ic.read().decode('utf-8') ic.close() except: print("Could not connect for items") return try: items = json.loads(istr) except: print("Could not parse items") return chosen = None try: for wanted in autobuy: for item in items: if chosen == None and wanted == item['name'] and int(points) >= ( saving + int(item['cost']) ): chosen = item['id'] except: print("Could not traverse autobuy") return try: if chosen: buy_params = urllib.urlencode({'buy':1,'item':chosen,'name':user,'pass':password}) bc = urllib.urlopen("http://www.mr-fap.com/api.php", buy_params) bc.read() bc.close() print "Bought item with id: %s" % (str(chosen)) else: print("Not buying item.") except: print("Could not buy item!") return if __name__ == '__main__': Main() [/code] In the config file: user:pass:saving item:item:etc saving = how many points you want saved in your account I've not tested this but it should work. Also, I just discovered I've been running mrfap in 2 seperate screens at the same time. Fucking penalty :<
[QUOTE=eXeC64;25750558] I've not tested this but it should work. Also, I just discovered I've been running mrfap in 2 seperate screens at the same time. Fucking penalty :<[/QUOTE] haha! Now I will definitely win!
I don't think that really works, it just seems to maintain a constant amount over the cost, which means you would never save up enough to buy the next item.
[img]http://gyazo.com/a5a6c637d85838cac017758222d8c613.png[/img] :frogc00l:
Sorry, you need to Log In to post a reply to this thread.