Checks accounts and creates a text file with a profile like:
Just put the accounts in the Accounts folder, inside the file accounts_to_check.txt in the shown format: user:userpass. One acc. per line.Code:Username: testeeron Password: Removed Email: Removed Worth: 600 Item Value --------------------------------------------------------------- |Basic Fishing Rod |100 | |---------------------------------------------------------------| |Citrus Snug Balloon Skirt |2 | |---------------------------------------------------------------| |Citrus Snug Lacy Leggings |2 | |---------------------------------------------------------------| |Citrus Snug Layered Tees |2 | |---------------------------------------------------------------| |Citrus Snug Slip-On Sneakers |2 | |---------------------------------------------------------------| |Neutral Male Goth Starter Pants |5 | |---------------------------------------------------------------| |Neutral Male Goth Starter Shirt |5 | |---------------------------------------------------------------| |Neutral Male Goth Starter Shoes |5 | |---------------------------------------------------------------| |Warm Baggy Starter Pants |2 | |---------------------------------------------------------------| |Warm Baggy Starter Shirt |2 | |---------------------------------------------------------------| |Warm Dress Starter Shirt |2 | |---------------------------------------------------------------| |Warm Dress Starter Shoes |2 | |---------------------------------------------------------------| |Warm Dress Starter Slacks |2 | |---------------------------------------------------------------| |Warm Hip Starter Sneakers |2 | |---------------------------------------------------------------| |Warm Punk Starter Pants |2 | |---------------------------------------------------------------| |Warm Punk Starter Top |2 | |---------------------------------------------------------------| |Warm Sporty Starter Shirt |2 | |---------------------------------------------------------------| |Warm Sporty Starter Shorts |2 | |---------------------------------------------------------------| |Warm Sporty Starter Sneakers |2 | |---------------------------------------------------------------| |Warm Starter Boots |2 | |---------------------------------------------------------------| |Warm Starter Khaki Shorts |2 | |---------------------------------------------------------------| |Warm Starter Polo |2 | |---------------------------------------------------------------| |Warm Starter Sandals |2 | ---------------------------------------------------------------
Run the program, the profiles will be in Accounts/Profiles/. The sources are included, use them however you please.
Python 3.1
Uses:
- Keep track of accounts
- Profile used when selling accounts
- Any other thing you can think of
Results 1 to 17 of 17
Thread: Profile Maker
- 18 May. 2010 12:36am #1
Profile Maker
Last edited by Riddle; 18 May. 2010 at 07:06pm.
- 18 May. 2010 12:58am #2
Thanks riddle. mind if I translate?
Shh, I'm watching My little pony.
- 18 May. 2010 06:51am #3
I don't mind.
- 18 May. 2010 08:37am #4
Sorry to say but ugh, the download link for the profiler isnt there, I was on my psp last night so I thought it Was there, but it isnt, wanna post it ?
Shh, I'm watching My little pony.
- 18 May. 2010 12:53pm #5
- 18 May. 2010 01:20pm #6
Congratulations on not releasing it :p What is this, a teaser thread? Haha.
- 18 May. 2010 06:50pm #7
ROFL!
I forgot! One of my friends came over to play Brawl so I got distracted... I'll upload now. XD
- 18 May. 2010 07:09pm #8
Thaaanks Buddy
Im thinking about learning Python
Mind helping me later, if I need help?Shh, I'm watching My little pony.
- 18 May. 2010 09:43pm #9
If I'm not busy I don't mind. Just read the documentation, and go through the modules and you should be fine.
- 18 May. 2010 10:07pm #10Code:
from mods import gaiaonline, session, general, tektek class Main: def __init__(self): g = general.General() s = g.sep() accs = g.File_To_List("Accounts"+s+"accounts_to_check.txt") for acc in accs: data = acc.split(":") Gaia = gaiaonline.Gaiaonline(session.HTTP()) if Gaia.Login(data[0],data[1]) != False: t = tektek.TekTek(Gaia) t.Price_Inv() worth = t.Get_Worth() # Save info of each account to a txt in format: user:pass:worth g.Str_To_File(data[0]+":"+data[1]+":"+worth+"\n","Accounts"+s+"overview.txt") print("Done with: "+data[0]) else: print("Failed to login with: "+data[0]) print("Done!") g.Paused_Exit() if __name__ == "__main__": Main()
And will append every account checked into that list. I wanted to make a table, but I feel lazy. Maybe later... lol
- 19 May. 2010 01:14am #11
- 20 May. 2010 01:50am #12
- 20 May. 2010 06:13am #13
Makes a profile of all the accounts you make.
Definition of "profile" by thefreedictionary.com: A formal summary or analysis of data, often in the form of a graph or table, representing distinctive features or characteristics
- 04 Jun. 2010 10:29pm #14
Can someone please re upload this?
Shh, I'm watching My little pony.
- 05 Jun. 2010 01:30am #15
Does it work?
- 05 Jun. 2010 01:32am #16
Nope... Re-uploading then... This one should work.
- 05 Jun. 2010 02:08am #17