Jump to content

cbox


iBotPeaches

Owner
  • Posts

    6582
  • Joined

  • Last visited

  • Days Won

    139

Everything posted by iBotPeaches

  1. It seems instead of having custom classes, you will pick your loadout prior to the game starting. All playlists control the starting loadout options. This screenshot explains it. source: http://www.bungie.net/News/content.aspx?type=topnews&cid=25376
  2. The date? How did that give it away? Its the copyright, and the year the FBI started officially. (Theres a screenshot for anyone that missed it)
  3. Maybe a few months ago when it was fresh it was a good idea, now I no longer think so. I wouldn't dare waste a KV for something like that.
  4. I got a total of 3 PMs (Once the site was back online) 6 Emails 8ish MSN/AIM messages
  5. in cod? The stupid Press X to Trick etc
  6. It lasted exactly 6 hours. It was going to be 12, but I decided against it. If the FBI really did take a server, they don't put up a splash page so I think whether the image was linked to them or not is irrelevant. As for the copyright, who cares. lol
  7. I dug into this some more. This story has most info: http://www.joystiq.c...ends-in-arrest/ Funny quotes from mtw He also went to the Security Panel, and somehow got to ask the first question of the Q and A section. He asked "why is my gamertag banned?" [media]http://vimeo.com/10552333[/media]
  8. The first minute gave the idea that it was a real vidoc. However, the strange name and short time instantly gave it away.
  9. After coming to terms with an FBI agent, I had to remove some topics The site is back under my control now.
  10. ^ Tell me if that works out for you. I tried multiple tests with first time accounts, and just want to verify that it works.
  11. I don't believe it for some reason.
  12. Updated to 1.0.0.6. Rep problem fixed for sure
  13. There is no REP limit
  14. Yep. I am on the lookout for pre-ordering bonuses, and then getting them from someone who actually pre-ordered
  15. I have added an updated example project as per request.
  16. Yeah, I'll remake an updated example. Give me 10 minutes.
  17. The authentication system used by various apps has been updated on the server side. It is now 1 query instead of 2, and operates on (Sign in, quick reply, and normal post) for updating your IP, post count, group id, and REP count). Thanks for the various users for helping out with the test. The source in C#, for anyone. You must include these classes. using System.Net; using System.Collections; public void authMe() { /* * Allowed User Groups to post, edit this yourself * Remove the ones that you DONT want to use your program * For this demo, all the groups are there * * The ones that are missing are Bots, * Guests and some old usergroups that are hidden */ ArrayList aug = new ArrayList(); // aug.Add(1); //Validating aug.Add(3); //Members aug.Add(4); //Owner // aug.Add(5); //Banned aug.Add(7); //Sub Admins aug.Add(; //VIP aug.Add(9); //Global Mods aug.Add(10); //GFX Team aug.Add(12); //Retired Staff aug.Add(14); //Members+ aug.Add(15); //Donors aug.Add(16); //Donors+ //These are the the levels of which you want for posts and REP int minPosts = 0; int minRep = 0; //The client to download the string, which contains all login info WebClient client = new WebClient(); string info = client.DownloadString("http://www.ibotmodz.net/index.php/prog/api"); client.Dispose(); //Check if website online or not if (String.IsNullOrEmpty(info)) MessageBox.Show("iBotModz is offline"); //Gathering the 4 variables String user = info.Substring((info.IndexOf("[user]") + 6), ((info.IndexOf("[/user]") - (info.IndexOf("[user]") + 6)))); //Check if guest if (String.IsNullOrEmpty(user)) { MessageBox.Show("Please become a member on iBotModz.net." + Environment.NewLine + Environment.NewLine + "If you are a member....Make a post" + Environment.NewLine + "Without using the quick reply "); Environment.Exit(0); } int posts = Convert.ToInt32(info.Substring((info.IndexOf("[posts]") + 7), ((info.IndexOf("[/posts]") - (info.IndexOf("[posts]") + 7))))); int rep = Convert.ToInt32(info.Substring((info.IndexOf("[rep]") + 5), ((info.IndexOf("[/rep]") - (info.IndexOf("[rep]") + 5))))); int groupID = Convert.ToInt32(info.Substring((info.IndexOf("[groupid]") + 9), ((info.IndexOf("[/groupid]") - (info.IndexOf("[groupid]") + 9))))); //Check for posts if (minPosts > posts) { MessageBox.Show("You need more posts to use this program."); this.Close(); } //Check for REP level if (minRep > rep) { MessageBox.Show("You need more REP to use this program."); this.Close(); } //Check for memberID if (groupID == 0) MessageBox.Show("Sorry, you don't have a usergroup."); int flag = 0; // ((0 = failed)) ((1 = passed)) //This will go through each allowed ID, so lets hope we are in here foreach (int i in aug) { if (groupID == i) { //Yes we found it //Debug.WriteLine(groupID + " passed because it was equal to " + i); flag = 1; break; } else { //so far theres nothing, keep going flag = 0; //Debug.WriteLine(groupID + " failed because it was equal to " + i); } } switch (flag) { //Check the flag case 1: //Login passed break; case 0: //Login Failed this.Close(); break; } } An example project is attached. ibmAuth.rar
  18. a post. posts dont count in here. fail.
  19. I'm confused then. Which warthog? Also, to anyone. I've added the manual AUTH update into the quick reply. That adds an extra query when posting, but saves lots of problems.
  20. Should work now. (If you move computers, your IP changes and thus it needs to be updated. You can update it by making a non-fast reply)
  21. I was thought to believe the end of Halo 3 regular, was the planet of Reach.
  22. File Name: POMA v2 (Pre Order My Ass) File Submitter: iBotPeaches File Submitted: 30 Mar 2010 File Updated: 08 Sep 2010 File Category: Xbox 360 Programs Author: iBotPeaches & Gameover Version: 1.0.0.11 POMA v2 (Unlocking "pre-ordered" bonus without pre-ordering) Features: Unlock Golden Lancer (GOW2)Unlock Golden Hammerburst (GOW2)Unlock Maps (Red Faction Guerilla)Unlock Golden Hammer (Red Faction Guerilla)Unlock Honor Guard Wraith (Halo Wars)Unlock Fire Warthog (Halo Wars)Unlock M4A1 (COD5)Unlock FG42 (COD5)Unlock Baseball Bat (Left 4 Dead 2)Unlock Sgt. Johnson (Halo ODST)iBotModz AuthenticationAuto Updater Staff Response Updated on September 8th, 2010. Changelog: v1.0.0.11 Added MD5 check for securityFixed 2nd COD file to workFixed 500 errorPrepped for possible Black Ops / Reach add-ons.v1.0.0.8 Finally fixed downloading issueAdded FG42 for COD5Added Baseball Bat for Left 4 Dead 2v1.0.0.7 Fixed downloading issue Click here to download this file
  23. 1239 downloads

    POMA v2 (Unlocking "pre-ordered" bonus without pre-ordering) Features: Unlock Golden Lancer (GOW2)Unlock Golden Hammerburst (GOW2)Unlock Maps (Red Faction Guerilla)Unlock Golden Hammer (Red Faction Guerilla)Unlock Honor Guard Wraith (Halo Wars)Unlock Fire Warthog (Halo Wars)Unlock M4A1 (COD5)Unlock FG42 (COD5)Unlock Baseball Bat (Left 4 Dead 2)Unlock Sgt. Johnson (Halo ODST)iBotModz AuthenticationAuto Updater Staff Response Updated on September 8th, 2010. Changelog: v1.0.0.11 -Added MD5 check for security v1.0.0.8 Finally fixed downloading issueAdded FG42 for COD5Added Baseball Bat for Left 4 Dead 2v1.0.0.7 Fixed downloading issue
  24. Get greasemonkey (A add-on for firefox) Then use this. http://userscripts.org/scripts/show/71128 It works for me.
  25. They took one of the largest icons out. So I guess either there is truly a security breach, or another pass steal.
×
×
  • Create New...