Search found 5 matches

by bitfox
Mon Mar 03, 2008 5:39 pm
Forum: Utilities
Topic: [App] Halo 2 Map Editor Launcher for XP Users
Replies: 5
Views: 4580

[App] Halo 2 Map Editor Launcher for XP Users

Hey everyone, I got tired of using CMD for all the editing on XP, so I decided to redo the Map Editor Launcher for the people who use Halo 2 on XP. I've included the source for Visual Studio 2008 in C#. Thanks to: *abcba for WowLoader http://i18.photobucket.com/albums/b140/MurderThyLamb/H2MELXP.png ...
by bitfox
Sun Sep 16, 2007 3:44 pm
Forum: Downloads
Topic: "Stranded" a map by CCB! Jahrizzy pt. 1
Replies: 85
Views: 18634

I like this map... I think if you were going to update it, you should smooth out the layout of the rocks, and maybe link them together with a bridge :)
by bitfox
Fri Oct 06, 2006 7:26 pm
Forum: Utilities
Topic: [app] MultiSign
Replies: 41
Views: 4164

Here's the code I used: Open: OpenFileDialog ofd = new OpenFileDialog(); ofd.Filter = "Halo 2 Maps (*.map)|*.map"; if (ofd.ShowDialog() == DialogResult.OK) { if (listBox1.Items.Count != 0) { for (int i = 0; i < listBox1.Items.Count; i++) { if (listBox1.Items.Contains(ofd.FileName)) { } els...
by bitfox
Fri Oct 06, 2006 6:18 pm
Forum: Utilities
Topic: [app] MultiSign
Replies: 41
Views: 4164

Thanks for the comments guys :)

I'll try to progress... right now I'm learning alot more about the I/O Implements and reading/writing alot better... and I'm doing it in C# DeToX... it seemed like a more formidable language to me.
by bitfox
Fri Oct 06, 2006 12:47 am
Forum: Utilities
Topic: [app] MultiSign
Replies: 41
Views: 4164

[app] MultiSign

This is my first app, so please don't flame. I realize there are a billion other resigners out there, I just needed something to learn. This adds multiple maps to a listbox and signs them.