Application: Another Map Resigner!!! Yay!! (And, a C++ one!)
-
- Posts: 410
- Joined: Tue Feb 24, 2004 11:22 am
- Location: Cantaloupe!
Application: Another Map Resigner!!! Yay!! (And, a C++ one!)
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.
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.
-
- Posts: 410
- Joined: Tue Feb 24, 2004 11:22 am
- Location: Cantaloupe!
- TheTyckoMan
- Posts: 854
- Joined: Fri Apr 02, 2004 11:22 am
- Location: Tea co not Tie co...
your so 1337
Sweetness.......Visual Security: 9-block IP Identification
"Teenagers, plus anonymity, plus microphone = idiot."-Bungie
"Teenagers, plus anonymity, plus microphone = idiot."-Bungie
-
- Posts: 111
- Joined: Tue Jun 21, 2005 1:56 pm
-
- Posts: 659
- Joined: Thu Jun 30, 2005 4:49 pm
- Location: AUZZIES RULE AT HALO 3!
OMG I CAN DO IT IN C# TOOO IM SOOO 1337 sweet
SwampFox seriously something that i would like to request is c++(non .net) source code for fixing encryption
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;
}
- Attachments
-
- FixSig dll.rar
- (1.28 KiB) Downloaded 14 times
Sig breaks rules, read the rules before reposting.
-
- Posts: 410
- Joined: Tue Feb 24, 2004 11:22 am
- Location: Cantaloupe!
-
- Posts: 123
- Joined: Sat Apr 30, 2005 7:42 am
-
- Posts: 111
- Joined: Tue Jun 21, 2005 1:56 pm
-
- Posts: 410
- Joined: Tue Feb 24, 2004 11:22 am
- Location: Cantaloupe!