Application: Another Map Resigner!!! Yay!! (And, a C++ one!)

Utilities designed primarily for the xbox version of Halo 2.
The Swamp Fox




Socialist Construct Revivalist Golden Age
Translator Playscaper Enthraller Bloodhound
Illusionist Eureka Wave Scorched Earth
Wordewatician 250

Posts: 410
Joined: Tue Feb 24, 2004 11:22 am
Location: Cantaloupe!

Application: Another Map Resigner!!! Yay!! (And, a C++ one!)

Post by The Swamp Fox »

I saw that there were, like, three of these in the top ten posts here, so I figured they must be really cool and popular...and everyone wants to be popular, right? Absolutely..So I tried to make one! Even though it seems pretty useless to me...

Well, you can at least use it as a little guide to helping you learn the obviously-superior-to-Visual-Basic language of C#, as I am including full source.

C++ Version
Well...TfAv wanted to see how this was done in C++. And, since I'm so obviously attuned to helping out the community, oh yeah right...who am I kidding...I got bored... Well here's one written in C++, it's nothing fancy, but it's fast, it works, and it's C++, so it should please a few people wondering what the **** C++ is.
Attachments
CSign.rar
C++ Map Signer with Source Code
(42.53 KiB) Downloaded 347 times
Map Maker Worker.rar
C# Multiple Map Signer with Source Code
(726.19 KiB) Downloaded 335 times
Last edited by The Swamp Fox on Sun Oct 09, 2005 9:16 am, edited 1 time in total.
Everything in this signature is false.
Zigen




Miner Socialist Snitch! Coagulator

Posts: 1654
Joined: Thu Jun 02, 2005 8:37 pm
Contact:

Post by Zigen »

yes! this owns all *downloads*
BTW this should be moved to utilities
Also heres a look of it to get you ppl downloadin this shizzle :lol:
Oh and it resigns very fast i just signed those 3 maps and it took 3 seconds so basically 1 second for a map. I tink
Image
User avatar
ScottyGEE




Visioneer Vector Mad Hatter Artisan
Snitch! Enthraller Pi Critic
Sorceror Droplet Scorched Earth Socialist
Advisor Articulatist 500

Posts: 7352
Joined: Sun Aug 15, 2004 9:08 pm
Location: Down under
Contact:

Post by ScottyGEE »

TSF is such a trend w-hor-e :lol:
i still find no use for these, as every single modding program has them already, and then theres that encrypto signiture released ages ago...why not use them?
but at least this program sports a good background ;)
Image
This collaboration is not endorsed by Halomods
Technically its only me animating though ;)
The Swamp Fox




Socialist Construct Revivalist Golden Age
Translator Playscaper Enthraller Bloodhound
Illusionist Eureka Wave Scorched Earth
Wordewatician 250

Posts: 410
Joined: Tue Feb 24, 2004 11:22 am
Location: Cantaloupe!

Post by The Swamp Fox »

Pretty sure I already said it was useless...
Everything in this signature is false.
User avatar
TheTyckoMan




Artisan Socialist Decryptor Droplet

Posts: 854
Joined: Fri Apr 02, 2004 11:22 am
Location: Tea co not Tie co...

Post by TheTyckoMan »

your so 1337 :oops: :P
Sweetness.......Visual Security: 9-block IP Identification
"Teenagers, plus anonymity, plus microphone = idiot."-Bungie
User avatar
DoorM4n
Readers Club




Artisan Commentator

Posts: 2530
Joined: Mon Aug 15, 2005 2:48 pm
Location: Smurf Village Team: Team DeFiance

Post by DoorM4n »

so ur a follower not a leader ehh
pshhh :P




jk nice job
The maximum signature size is 500x120px at 75kb.
imgettinowned





Posts: 111
Joined: Tue Jun 21, 2005 1:56 pm

Post by imgettinowned »

Thx for the source code,

Even if this is pointless, its still amazing because TSF made it

:lol: :lol: :lol:


-Owned
TJ213





Posts: 91
Joined: Mon Apr 11, 2005 11:12 am

Post by TJ213 »

DoorM4n wrote:so ur a follower not a leader ehh
pshhh :P
he would be if he didn't release the source, I think (some) halo2 modding programs should be open source anyways.
swese44




Stylist Wordewatician 250

Posts: 341
Joined: Sun Apr 11, 2004 1:25 am
Location: San Diego
Contact:

Post by swese44 »

thanks for the source
PyroBlizzard




Stylist Critic Trickster

Posts: 659
Joined: Thu Jun 30, 2005 4:49 pm
Location: AUZZIES RULE AT HALO 3!

Post by PyroBlizzard »

Excelent idea posting the source i tried to get this from other people but failed thx so much.
Image
User avatar
ScottyGEE




Visioneer Vector Mad Hatter Artisan
Snitch! Enthraller Pi Critic
Sorceror Droplet Scorched Earth Socialist
Advisor Articulatist 500

Posts: 7352
Joined: Sun Aug 15, 2004 9:08 pm
Location: Down under
Contact:

Post by ScottyGEE »

dammit i was wrong it seems you were right in releasing this thing...
Image
This collaboration is not endorsed by Halomods
Technically its only me animating though ;)
TfAv1228




Miner Logistician Droplet

Posts: 276
Joined: Sun Sep 05, 2004 4:40 pm

Post by TfAv1228 »

OMG I CAN DO IT IN C# TOOO IM SOOO 1337 sweet

Code: Select all

		public int FixEncryption(string SelectedMap)
		{
			FileStream FS=new FileStream(SelectedMap, FileMode.Open,FileAccess.ReadWrite,FileShare.ReadWrite);
			BinaryReader BR=new BinaryReader(FS);
			BinaryWriter BW=new BinaryWriter(FS);
			BR.BaseStream.Position = 8;
			int MapSize=BR.ReadInt32();
			int sum=0;
			BR.BaseStream.Position = 2048;
			for(int i=2048;i<MapSize;i=i+4)
			{
				sum=sum^BR.ReadInt32();
			}
			BW.BaseStream.Position = 720;
			BW.Write(sum);
			BR.Close();
			BW.Close();
			FS.Close();
			return sum;
		}
SwampFox seriously something that i would like to request is c++(non .net) source code for fixing encryption
Attachments
FixSig dll.rar
(1.28 KiB) Downloaded 14 times
Sig breaks rules, read the rules before reposting.
The Swamp Fox




Socialist Construct Revivalist Golden Age
Translator Playscaper Enthraller Bloodhound
Illusionist Eureka Wave Scorched Earth
Wordewatician 250

Posts: 410
Joined: Tue Feb 24, 2004 11:22 am
Location: Cantaloupe!

Post by The Swamp Fox »

You wanted to see something written in a non-.net language? I added one to the topic post.
Everything in this signature is false.
donuthole1010





Posts: 123
Joined: Sat Apr 30, 2005 7:42 am

Post by donuthole1010 »

thank you oh so much for the C++ source :D
TfAv1228




Miner Logistician Droplet

Posts: 276
Joined: Sun Sep 05, 2004 4:40 pm

Post by TfAv1228 »

The Swamp Fox wrote:You wanted to see something written in a non-.net language? I added one to the topic post.
YAY ive been trying to write a c++ dll for fixing the sig in VB6 this helps soo much noone can compare to u in ur coding ability
Sig breaks rules, read the rules before reposting.
imgettinowned





Posts: 111
Joined: Tue Jun 21, 2005 1:56 pm

Post by imgettinowned »

Just a question.

How many programming languages do you know TSF?
The Swamp Fox




Socialist Construct Revivalist Golden Age
Translator Playscaper Enthraller Bloodhound
Illusionist Eureka Wave Scorched Earth
Wordewatician 250

Posts: 410
Joined: Tue Feb 24, 2004 11:22 am
Location: Cantaloupe!

Post by The Swamp Fox »

Hrm...A few Basic's, the 3 C's, and HTML...
Everything in this signature is false.
Zigen




Miner Socialist Snitch! Coagulator

Posts: 1654
Joined: Thu Jun 02, 2005 8:37 pm
Contact:

Post by Zigen »

The Swamp Fox wrote:Hrm...A few Basic's, the 3 C's, and HTML...
:shock:
BoarderX





Posts: 3
Joined: Sun Dec 26, 2004 7:51 pm

Post by BoarderX »

Mmmmm, goto's...
User avatar
uralllame




Wordewatician 250

Posts: 432
Joined: Tue Apr 26, 2005 8:02 am
Location: England

Post by uralllame »

Fox, if I was a woman or gay i would marry you, then divorce you and steal 50% of your mods, MUAHAHAHAHAHA!!!!! Sorry. great prog, it's so..... shiny!
Image
Those who can't play, mod.
And those who can't mod, mod PC.
Post Reply