PDA

View Full Version : Tool locfile + total madi



huuduyen_05
29-01-10, 09:48 PM
Tool locfile được viết lại.

Link: <b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
Cách dùng: như tool cũ


// locFile.cpp : Defines the entry point for the console application.
// locFile module for Audition
<b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
// Explaination:
// Each byte in this file is crypted by xoring with 0x64
// To see that, set break point at where Kernel.ReadFile is called,
// then Set hardware break point at any byte in file buffer.
// F9 and u will catch the ecrypt function
// Welcome new moderator for Audition forum ^_^
#include <stdio.h>

int main(int argc, char **argv)
{
if (argc != 3) {printf("Usage: %s [input_file] [output_file]", argv[0]); return 0;}
FILE *fi;
fi= fopen(argv[1], "rb");
FILE *fo;
fo = fopen(argv[2], "wb");
if (fi == NULL) {printf("Error in opening input file.");return 0;}
if (fo == NULL) {printf("Error in writing output file.");return 0;}
// Read the file size
fseek(fi, 0, SEEK_END);
long fiSize = ftell(fi);
fseek(fi, 0, SEEK_SET);
// Other way: long fiSize = filelength(fileno(fi));

char buff[fiSize];
fread(buff, 1, fiSize, fi);

// decrypt
for (int i = 0; i < fiSize; i++) *(buff + i) ^= 0x64;

fwrite(buff, fiSize, 1, fo);
// free the memory
delete [] buff;

fclose(fi);
fclose(fo);
return 0;
}


Tool total madi cũng được viết lại ^^
Link: <b><font color=red>[Chỉ có thành viên mới xem link được. <a href="register.php"> Nhấp đây để đăng ký thành viên......</a>]</font></b>
Cách dùng: Chạy là biết :D


/* Soft tinh total madi khi biet
time + bpm cua bai hat
*/
#include <stdio.h>
#include <conio.h>

int main()
{
float bpm,totalmadi ;
int time;
printf("Enter bpm: "); //nhap bpm cua bai hat
scanf("%f", &bpm);
printf("Enter time (second(s)): "); //nhap gio cua bai hat (tinh bang giay)
scanf("%d", &time);
totalmadi = time * bpm /60 / 4;
printf("Total madi: %.0f", totalmadi);
getch();
}

thaihoa91
30-01-10, 07:54 AM
Póc tem nha :D Thanks Hữu Duyên

Chiritokaji
30-01-10, 11:51 AM
;))....mềnh nhìn vào cũng chả biết nó là cái M gì :D
Chắc chỉ có chuyên môn mới hiểu
Thanks vì share :P

huuduyen_05
30-01-10, 09:40 PM
Code trên là code C. Ai biết C hoặc ngôn ngữ lập trình tương tự thì hiểu :D