Kết quả 1 đến 4 của 4
Chủ đề: Tool locfile + total madi
-
29-01-10, 09:48 PM #1
- Ngày tham gia
- May 2006
- Đang ở
- Unknow
- Bài viết
- 2,925
- Thanks
- 122
- Thanked 2,109 Times in 650 Posts
Tool locfile + total madi
Tool locfile được viết lại.
Link: [Only registered and activated users can see links. ]
Cách dùng: như tool cũ
PHP Code:// locFile.cpp : Defines the entry point for the console application.
// locFile module for Audition
// Author: Nguyen Truong Tho. Email: [email protected]
// 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;
}
Link: [Only registered and activated users can see links. ]
Cách dùng: Chạy là biết
PHP Code:/* 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();
}
Khách viếng thăm hãy cùng huuduyen_05 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!
-
30-01-10, 07:54 AM #2
- Ngày tham gia
- Apr 2008
- Bài viết
- 12,110
- Thanks
- 662
- Thanked 3,168 Times in 1,602 Posts
Ðề: Tool locfile + total madi
Póc tem nha Thanks Hữu Duyên
Khách viếng thăm hãy cùng thaihoa91 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!
-
30-01-10, 11:51 AM #3
-
30-01-10, 09:40 PM #4
- Ngày tham gia
- May 2006
- Đang ở
- Unknow
- Bài viết
- 2,925
- Thanks
- 122
- Thanked 2,109 Times in 650 Posts
Ðề: Tool locfile + total madi
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
Khách viếng thăm hãy cùng huuduyen_05 xây dựng diễn đàn CLBGAMESVN vững mạnh nhé!
Các Chủ đề tương tự
-
[Release]Bộ Full Tool Musever & Client Tool
Bởi trungviet2k trong diễn đàn ReleasesTrả lời: 7Bài viết cuối: 10-06-12, 02:48 AM -
Tool Chuyển Sinh HKGH :D ( Tool Add ITEM CHARATER)
Bởi pikhjn trong diễn đàn ReleaseTrả lời: 22Bài viết cuối: 17-12-11, 09:43 PM