Results 1 to 5 of 5
  1. #1
    Th3 0wnzman's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Location
    I k2 networks bathroom
    Posts
    111
    Reputation
    10
    Thanks
    53

    need help whit C++

    can somebody help my whit make a timer i dont know how to do .
    but how can i make the module undetected
    and how can i find all module's for C++
    The maker of th3 0wnzman hacks





  2. #2
    Alen's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Location
    Liquid Generator
    Posts
    27,920
    Reputation
    2548
    Thanks
    4,224
    My Mood
    Fine
    You already posted 3 threads with 'help with C++' ... Stop triple posting

  3. #3
    Th3 0wnzman's Avatar
    Join Date
    Oct 2007
    Gender
    male
    Location
    I k2 networks bathroom
    Posts
    111
    Reputation
    10
    Thanks
    53
    i need help thats the whole problem srry for questons
    The maker of th3 0wnzman hacks





  4. #4
    Dave84311's Avatar
    Join Date
    Dec 2005
    Gender
    male
    Location
    The Wild Wild West
    Posts
    35,837
    Reputation
    5782
    Thanks
    41,292
    My Mood
    Devilish
    There are multiple ways of setting up timers, which compiler are you using and what are you writing exactly?





    THE EYE OF AN ADMINISTRATOR IS UPON YOU. ANY WRONG YOU DO IM GONNA SEE, WHEN YOU'RE ON MPGH, LOOK BEHIND YOU, 'CAUSE THATS WHERE IM GONNA BE


    "First they ignore you. Then they laugh at you. Then they fight you. Then you lose.” - Dave84311

    HAVING VIRTUAL DETOX

  5. #5
    Toymaker's Avatar
    Join Date
    Feb 2008
    Gender
    male
    Location
    Hannah, Montana
    Posts
    659
    Reputation
    14
    Thanks
    193
    My Mood
    Amused
    masta calm down man dont flame just becuase you can't help people...

    ownzman, there are indeed multiple ways as Dave mentioned and some are more compiler friendly. pausing, sleeping, timer. ill assume your aiming for a more time-based function here's one i found for you:
    Code:
    #include<iostream.h>
    
    #include<conio.h>  // xtra include needed
    
    main(){  
    
    int m,s;     // minutes,seconds
    
    cout<<"\n\n\n\t\t\t     A COUNTDOWN TIMER \n"; 
    
    cout<<enter time in MINUTES here \t = \t";cin>>m;
    
    cout<<enter time in SECONDS here \t = \t";cin>>s;    
    
    cout<<"\n\n\n\n\t press any key to start...!!!"; 
    
    getch();
    
    clrscr();  
    
    cout<<"\n\n\n\t\t\t     A COUNTDOWN TIMER \n"; 
    
    cout<<"\n\n\n\t\t TIME REMAINIG \n\n"; 
    
    cout<<"\t mins: \t\t seconds: "; 
    
    for(int min=m;min>0;min--){
    
    for(int sec=59;sec>=;sec--){ 
    
    sleep(1); cout<<"\r"<<min<<"\t"<<sec; } 
    
    } 
    
    for(int rem=s;rem>=0;rem--){cout<<"\r"<<min<<"\t"<<rem;} 
    
    cout<<"\n\n  ENDED "; return 0; 
    
    }              
    
     /* end of program */   /* developed by piyush */

    Not precise to your point but you can obviousally extract what you need from this, no problem. i fully understand it with a glance, etc.

    Design your own xtra function with a time set before activation and it should be easy to have it not interfere with your normal program execution. i added two // but the logic flow is up to you.

    credits: google.com ;p
    Last edited by Toymaker; 02-26-2008 at 02:31 PM.

Similar Threads

  1. [Help Request] i need help whit simpson hack
    By bloodzor in forum CrossFire Help
    Replies: 9
    Last Post: 08-22-2011, 03:18 AM
  2. [Help Request] need help whit heal tool from admin menu
    By Black666Devil666 in forum Call of Duty Modern Warfare 2 GSC Modding Help/Discussion
    Replies: 4
    Last Post: 06-11-2011, 07:35 AM
  3. need help whit pub hack
    By blader123 in forum CrossFire Hacks & Cheats
    Replies: 6
    Last Post: 06-16-2009, 04:38 PM
  4. i need help whit CA please
    By yexon in forum Combat Arms Hacks & Cheats
    Replies: 2
    Last Post: 04-01-2009, 06:49 PM
  5. I need help whit hacks
    By branso in forum WarRock - International Hacks
    Replies: 1
    Last Post: 12-08-2007, 04:25 AM

Tags for this Thread