Item.dat ->Open a file .NOS

08/13/2013 11:47 scream52#1
Hi, I would like to know how do you open a file. NOS / As for skill.dat but this is a person who directly send me :/ (I thank ^ ^)
Because I'd like to help me with another file. Thank you for helping me: D
08/13/2013 14:39 Sm•ke#2
Look this, [Only registered and activated users can see links. Click Here To Register...] ..

Thread with decrypter: [Only registered and activated users can see links. Click Here To Register...]
08/13/2013 14:55 nekomee#3
But, how to use it?
08/13/2013 14:57 szymek111#4
You need to download any c++ language program then copy paste this code and debug ;_;
08/13/2013 15:06 Sm•ke#5
if you know c++ u can use the code else you need study :)

like ide i think that visual studio 2013 is perfect..
08/13/2013 15:19 Furkiii#6
Smoke can you compile and upload the .exe ?
08/13/2013 15:22 _RowLegend_#7
Quote:
Originally Posted by Nathan Explosion View Post
Falls jemand nen Unpacker für NSlangData.nos NScliData.nos NSetcData.nos NSgtdData.nos braucht [Only registered and activated users can see links. Click Here To Register...]
^
08/13/2013 15:34 Sm•ke#8
oh yeah, just decompiler.. and now who doing the encryption + packer ? :)

i've packer, now i work on encrypt ^^
08/13/2013 18:32 ernilos#9
Quote:
Originally Posted by Sm•ke View Post
oh yeah, just decompiler.. and now who doing the encryption + packer ? :)

i've packer, now i work on encrypt ^^
Ouch, yes, hard as hell done compress eh? :I
Code:
	if(this->FileSaveDialog1->Execute())
	{
		this->Memo2->Lines->Add("Starting repack the file...");
		FILE *file;
		file =fopen(AnsiString(this->FileSaveDialog1->FileName).c_str(),"wb");
		if(file != NULL)
		{
			fwrite(&file_amount,1,4,file);
			for(int i = 0; i < file_amount; i++)
			{
				fwrite(&dFile[i].index,1,4,file);
				fwrite(&dFile[i].name_size,1,4,file);
				fwrite(dFile[i].name,1,dFile[i].name_size,file);
				fwrite(&dFile[i].encryption,1,4,file);
				fwrite(&dFile[i].f_size,1,4,file);
				fwrite(dFile[i].file,1,dFile[i].f_size,file);
				this->Memo2->Lines->Add("File [" + UnicodeString(AnsiString(dFile[i].name))+"] added!");
			}
			fclose(file);
			this->Memo2->Lines->Add("File compressed!");
		}
		else
		{
			 this->Memo2->Lines->Add("I can't save the file...");
		}
	}
08/13/2013 18:56 Sm•ke#10
Quote:
Originally Posted by ernilos View Post
Ouch, yes, hard as hell done compress eh? :I
Code:
	if(this->FileSaveDialog1->Execute())
	{
		this->Memo2->Lines->Add("Starting repack the file...");
		FILE *file;
		file =fopen(AnsiString(this->FileSaveDialog1->FileName).c_str(),"wb");
		if(file != NULL)
		{
			fwrite(&file_amount,1,4,file);
			for(int i = 0; i < file_amount; i++)
			{
				fwrite(&dFile[i].index,1,4,file);
				fwrite(&dFile[i].name_size,1,4,file);
				fwrite(dFile[i].name,1,dFile[i].name_size,file);
				fwrite(&dFile[i].encryption,1,4,file);
				fwrite(&dFile[i].f_size,1,4,file);
				fwrite(dFile[i].file,1,dFile[i].f_size,file);
				this->Memo2->Lines->Add("File [" + UnicodeString(AnsiString(dFile[i].name))+"] added!");
			}
			fclose(file);
			this->Memo2->Lines->Add("File compressed!");
		}
		else
		{
			 this->Memo2->Lines->Add("I can't save the file...");
		}
	}
isn't complete ^^ fail ! :handsdown:

PS. i've 4/5 of encrypt, shut up please :)
08/13/2013 20:16 benjiix#11
Why you encrypt is for the community ?! So it's for all people the noob and the developper !