Game


You are not connected. Please login or register

Tool locfile + total madi

Go down  Message [Page 1 of 1]

1Tool locfile + total madi Empty Tool locfile + total madi Sun Feb 09, 2014 12:24 pm

Fenix

Fenix
Game Master
Game Master
Tool locfile được viết lại.

Link: [You must be registered and logged in to see this link.]
Cách dùng: như tool cũ

Code:
// locFile.cpp : Defines the entry point for the console application. 
// locFile module for Audition 
// Author: Nguyen Truong Tho. Email: thont@live.com 
// 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: [You must be registered and logged in to see this link.]
Cách dùng: Chạy là biết Tool locfile + total madi 4

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(); 
}  

http://www.devgame.ga

Back to top  Message [Page 1 of 1]

Permissions in this forum:
You cannot reply to topics in this forum