Jump to content

  •  

  • iBotModz CBox


    xXxStevenxXx

    Member Since 29 Jun 2008
    Offline Last Active Sep 29 2022 06:26 PM
    **---

    Topics I've Started

    Project Infinity RC1 Release!

    03 January 2010 - 10:14 PM

    Since our last Release's of the Beta's we have improved Project Infinity
    Massively we now have a Fully working Game adder and Achievement
    Unlocker (VIP Only) Which Currently has 254 Game's Available and will be
    updated Regulary Our Fatx Hdd Viewer has been Improved Allot,
    More Modding tools Have also been Added such as Grand Theft Auto 4 tool
    and Our GUI has Also been Upgraded since the Betas Making it look Very
    Attractive and Easy to use Here are a Few Screen shots of the tool.


    Screen Shots:


    Posted Image
    Posted Image
    Posted Image
    Posted Image

    The Reason for there Being 2 Downloads is 1 is for VIP User's it Contains all
    of the Games for the game adder and the other is for Normal User's who do
    not need the Games Folder!

    So a Big Thank you to all the people who have Worked on Project Infinity
    over the past week's


    Bug Reports - XBLHackers

    And any Suggestions Here


    Suggestions - XBLHackers

    Download link (In Attachment, VIP- Link below)
    http://www.xblhacker...ty-rc1-vip-.rar
    Had to link the VIP version of the app from xblhackers because it was to big to be uploaded in the attachment

    Thanks
    XBLHackers Admin Team
    -Tagknife
    -SOLiiiDuS
    -EkliiPzE
    -Nero
    Project Infinity Team
    -QuickKill0
    -Superaison
    -xXxStevenxXx
    -Nickcas

    Attached File  Project Infinity RC1.rar   2.81MB   319 downloads

    Project Infinity RC1 Update *(New Screenshots)*

    24 December 2009 - 10:42 AM

    New Update
    ETA 26/12/09

    Info:
    After many Upgrades on the Application we have Decided to make the Achievement Unlocker and Game adder VIP Only the new Release of the Tool Brings a Full Function Gameadder and Achievement unlocker allot better than the Older Builds the Fatx HDD Viewer has had a massive Update on the tool And is one of the Best HDD Viewers out there for Free.

    More Info will be posted Very soon.


    Screen Shots:

    STFS Tool
    Posted Image
    Posted Image
    Posted Image


    FATX Tool


    Posted Image
    Posted Image

    Achivement Tool


    Posted Image
    Posted Image

    Save Editors

    Posted Image
    Posted Image


    Getting Avatar C#

    09 November 2009 - 08:28 PM

    1.) Create an Textbox and an Picturebox big enought for your avatar.

    2.) Create a button and code it with this
    this.pictureBox1.ImageLocation = "http://avatar.xboxlive.com/avatar/" + this.textBox1.Text + "/avatar-body.png";

    3.) If You like to create a save button do so name it save then enter this as the code
    SaveFileDialog dialog = new SaveFileDialog();
     dialog.Filter = "PNG Image|*.png|JPEG Image|*.jpg|GIF Image|*.gif";
     if (dialog.ShowDialog() == DialogResult.OK)
     {
     this.pictureBox1.Image.Save(dialog.FileName);
     }

    4.)Now your done ! :) I will include an project source

    This tut was brought to you by xXxStevenxXx of Blueshadowz

    Link below on next post :)

    Getting Your IP C#

    09 November 2009 - 08:26 PM

    1.) Let's start by creating a new C# Windows Application ( File -> New -> Project -> Windows Application ). Name the project What ever you like.

    2.) Put this at the using method
    using System.Net;

    3.) Make an TextBox Anywhere in the Form

    4.) Double click the Form1 And it should take you to private void Form1_Load And add the following Code
    //Get the host
     string myHost = System.Net.Dns.GetHostName();
     // Get the IP 
     string myIP = System.Net.Dns.GetHostByName(myHost).AddressList[0].ToString();
     // Show IP
     this.textBox2.Text = (myIP);
    Your Done! Build it and it will show your IP :) I will add An Source Project

    Need a Tut Written in C#? Feel free to ask me
    This tut was brought to you by xXxStevenxXx of Blueshadowz

    Attached File  IP.rar   1.36MB   399 downloads