de algunas funciones bastantes de "string.h" al igual que de la manipulacion de punteros.....
El nombre Animator, se debe al efecto del texto al abrir el Ejecutable!
Cap:

Código: Seleccionar todo
#include <stdio.h>
#include <windows.h>
#include <string.h>
/*
Coder : ØnLy
Lenguaje: C
IDE : DEV-cpp
Web : +Indetectables.Net
+Corp-51.Net
+onlydevelopments.blogspot.Com
*/
int main(int argc, char *argv[])
{
system("color 02"); //<- Color del Txeto y del Fondo
HWND Ventana = GetForegroundWindow();
SetWindowText(Ventana, "Offsets Animator By ØnLy");
SetWindowPos(Ventana , 0 , 260 , 250 , 700 , 80 , SWP_SHOWWINDOW);
printf("\n");
char *mensaje = "Offset Funcional!";
int i;
for( i = 0 ; i <= strlen(mensaje) ; i++)
{
Sleep(50);
putchar(mensaje[i]);
}
char* nombre = strrchr( argv[0] , '\\' );
FILE* archivo = fopen("Funcionales.txt" , "a+");
strcat( nombre , "\n" );
fprintf( archivo , nombre );
fclose(archivo);
getchar();
return 0;
}