Jump to content

  •  

  • iBotModz CBox


    Lakar's Content

    There have been 25 items by Lakar (Search limited from 16-June 23)


    Sort by                Order  

    #97425 DevKit Differences

    Posted by Lakar on 30 June 2009 - 07:41 PM in JTAGs / DEVs

    You should include pictures, so people can really know what they look like instead of just details of em.

    -Lakar



    #96978 question

    Posted by Lakar on 28 June 2009 - 11:10 AM in JTAGs / DEVs

    Can you make a dev kit with a retail xbox and what does a xna kit do??? sorry im new here

    one more question how can i get a dev kit???


    If you are talking about converting a Xbox 360 to a dev kit. That isn't possible. And you have to buy one...

    -Lakar



    #93990 How To Mod Avatar Skin Color

    Posted by Lakar on 09 June 2009 - 11:36 PM in Xbox 360

    Just imagine how gay your avatar would look with blue skin color xD. Either way, cool find.

    -Lakar



    #92453 How to make IRL RuneScape Pictures

    Posted by Lakar on 02 June 2009 - 12:49 AM in PC Gaming

    Wow... this is an intense picture xD. Did you just randomly think of this out of no where? Anyways, I am going to do this for fun haha, thanks.

    -Lakar



    #91110 Wow Last Resort is ******* big!

    Posted by Lakar on 25 May 2009 - 01:31 PM in H3 Modding

    I think avalanche is the biggest over all, playable area and non.


    I will take that challenge and see :D. I will take pictures for you guys, and you can compare.

    -Lakar



    #90705 Wow Last Resort is ******* big!

    Posted by Lakar on 23 May 2009 - 07:29 PM in H3 Modding

    That was fun doing that with Rogue xD. Good stuff. We should do that on other maps once I get this stuff done.

    -Lakar



    #88534 Demonic Creek

    Posted by Lakar on 13 May 2009 - 08:46 AM in Modding

    I am really enjoying this map, but I don't like how it is VERY VERY dark. I like it when it is dark, but I could barely see the pictures of the map xD.

    -Lakar



    #88533 Any Sites to get Free Burn Games?

    Posted by Lakar on 13 May 2009 - 08:43 AM in Xbox

    I would suggest http://www.xbox360iso.com/, it isn't that hard to flash your drive, there are many tutorials you can go to do it.

    -Lakar



    #88532 Dualtality :: A Halo 3 Montage - Lots of MLG

    Posted by Lakar on 13 May 2009 - 08:40 AM in Halo 3 / ODST

    Very sick video, I love it when people are just god with the sniper xD.

    -Lakar



    #88531 Course mod

    Posted by Lakar on 13 May 2009 - 08:35 AM in Mods

    I always love a good race map :D. I was going to make one like it, but we got side tracked and started building a house xD.

    -Lakar



    #88530 My NeW MoDs [And AMAZING Screenshot]

    Posted by Lakar on 13 May 2009 - 08:31 AM in Mods

    This doesn't really have much to offer... I mean lifts aren't that. Random map 2/10.

    -Lakar



    #88529 Halo 3 Dev Mods!

    Posted by Lakar on 13 May 2009 - 08:20 AM in H3 Modding

    Here is a way to get 1 xds.xbox.com "The RIGHT WAY TO GET A DEV" :p


    Yeah, but only REAL developers can get to that site, unless you know one willing to share with you.

    -Lakar



    #88251 (VB.NET & C#) Executing A File

    Posted by Lakar on 11 May 2009 - 10:36 PM in Coding / Development

    Thanks for specifying what was already used above xD.

    But seriously, good idea pointing out that System.Diagnostics is required, unless you add it to the top of your program.


    They both do the same thing overall, just different ways of writing them.

    -Lakar



    #88250 (C#)Navigate to URL

    Posted by Lakar on 11 May 2009 - 10:34 PM in Coding / Development

    (C#)Navigate To URL

    This code will allow your text box to be used as a navigate to URL bar, this will work with a web browser placed on your program.

    Note : To get this to navigate to a URL, you will need to make a Go button to activate this code. (Go to bottom of thread to see code for this button)


    public void NavigateToUrl()
    		{
    			Uri URL = default(Uri);
    			try
    			{
    				URL = new Uri(textboxname.Text);
    			}
    			catch
    			{
    				try
    				{
    					URL = new Uri("http://www." + textboxname.Text);
    				}
    				catch
    				{
    					return;
    				}
    			}
    
    			if ((URL.HostNameType == UriHostNameType.Dns) | (URL.HostNameType == UriHostNameType.IPv4))
    			{
    				webbrowsername..Navigate(textboxname.Text);
    			}
    			else
    			{
    				string Host = URL.Host;
    				Host = "http://www." + Host;
    				try
    				{
    					webbrowsername.Navigate(Host);
    				}
    				catch
    				{
    				}
    			}
    		}


    Go Button Code
    private void gobutton_Click(object sender, EventArgs e)
    		{
    			if (ProgressBar1.Value < 100)
    			{
    				ProgressBar1.Value = 0;
    			}
    			NavigateToUrl();
    			if (ProgressBar1.Value < 100)
    			{
    				ProgressBar1.Value += 25;
    			}
    		}

    Enjoy
    -Lakar



    #88242 (VB.NET & C#) Executing A File

    Posted by Lakar on 11 May 2009 - 10:18 PM in Coding / Development

    If you are trying to execute a .exe file. All you have to do is

    Process.Start("C:\\example\\Documents\\Visual Studio 2008\\Projects\\example\\example.exe");

    Note : This will not work without "using System.Diagnostics;", if you don't have this in your form, it will not recognize Process.

    -Lakar



    #88037 Xport360 problems

    Posted by Lakar on 11 May 2009 - 12:18 AM in Help Desk

    Xport360 is very very buggy and you should probably move onto Xplorer. Xport seems to sometimes not show all your partitions, it gets errors when opening partitions as well. I would suggest just going to Xplorer, a lot more efficient.

    -Lakar



    #88036 Search 1 hex adress

    Posted by Lakar on 11 May 2009 - 12:14 AM in Coding / Development

    This doesn't make much sense, are you trying to search a hex address in the kv.bin or are you trying to use the kv.bin?

    -Lakar



    #87371 Dev Mod

    Posted by Lakar on 08 May 2009 - 12:41 AM in H3 Modding

    This would be a easy to beat the missions wouldn't it xD. Cool mod.

    -Lakar



    #86618 Am i a good looking girl?

    Posted by Lakar on 04 May 2009 - 11:32 PM in Off-Topic

    To be 100% honest, that girl looks ******* ugly. Way to skinny and I can't stand emos...

    -Lakar



    #86617 'The Execution' A Halo 3 Machinima

    Posted by Lakar on 04 May 2009 - 11:27 PM in Halo 3 / ODST

    Wasn't like half the video a fight scene?


    I was meaning to say more intense, walking down and shooting 4 guys wasn't that great.

    -Lakar



    #86608 Subliminal Arts presents Herbal T Gone *HD*

    Posted by Lakar on 04 May 2009 - 10:13 PM in Halo 3 / ODST

    That was a bad ass video, that guy seems pretty damn good with that sniper xD.

    -Lakar



    #86606 'The Execution' A Halo 3 Machinima

    Posted by Lakar on 04 May 2009 - 10:08 PM in Halo 3 / ODST

    This was a very good machinima, but they probably should of made the fight scene a little bit longer. Good video overall though 9/10.

    -Lakar



    #86575 My Devs

    Posted by Lakar on 04 May 2009 - 08:31 PM in Xbox

    Yeah, I miss the devs for the Xbox, I used to mess with these things so much xD. Nice boxes.

    -Lakar



    #85434 94B Map Pack

    Posted by Lakar on 01 May 2009 - 12:21 AM in Halo 3 / ODST

    These look pretty nice, but I agree with everyone else, you should post some more pictures for us to get a better idea of the map.

    -Lakar



    #67441 Xbox 360 Development kit

    Posted by Lakar on 15 February 2009 - 02:38 PM in Xbox

    To be honest, there should be absolutely no reason if you are just going to mod Halo 3. You have to know coding to basically do anything with it. Unless you are going to develop a game on it, there is no reason you should want to buy a developer kit. Don't waste your money unless you are going to do something with it other then Halo 3...

    -Lakar