Results 1 to 3 of 3
  1. #1
    TheDollar87's Avatar
    Join Date
    Aug 2013
    Gender
    male
    Posts
    87
    Reputation
    10
    Thanks
    10
    My Mood
    Dead

    Windows XP time changer/setter.

    Okay so i didnt really know where to post this, but i am looking for a program/script compatible with winXP that will continiously change/set my time to the one i set so for example my time will always be 12:00. Any ideas?
     



     
    https://www.youtube.com/watch?v=gJlzWJX_oJY&index=1&list=FLX73XrtNmsw46tZz WVzj8SQ

  2. #2
    Biesi's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    4,993
    Reputation
    374
    Thanks
    8,808
    My Mood
    Twisted
    Here you go... should be compatible with XP if compiled correctly and resets the time every 60 seconds... you might need to adjust this because it's currencly UTC.

    Code:
    #include <Windows.h>
    #include <sysinfoapi.h>
    
    int main()
    {
        SYSTEMTIME sys_time;
        GetSystemTime(&sys_time);
    
        sys_time.wHour = 12;
        sys_time.wMinute = 0;
        sys_time.wSecond = 0;
        sys_time.wMilliseconds = 0;
    
        while (TRUE)
        {
            BOOL result = SetSystemTime(&sys_time);
            if (!result)
            {
                 return result;
            }
    
            Sleep(60000);
        }
    }

  3. #3
    Antin00b_'s Avatar
    Join Date
    Dec 2019
    Gender
    male
    Posts
    29
    Reputation
    10
    Thanks
    1
    Thanls for sharing

Similar Threads

  1. Windows Programs Title Changer
    By Ping Pongg in forum Suggestions, Requests & General Help
    Replies: 0
    Last Post: 06-15-2019, 04:27 AM
  2. [Help] Steam game time changer hack
    By planetlad in forum Steam Games Hacks & Cheats
    Replies: 1
    Last Post: 09-26-2017, 12:34 AM
  3. [Source Code] DV and LD auto box changer ant time changer
    By reeaper in forum Alliance of Valiant Arms (AVA) Coding / Source Code
    Replies: 117
    Last Post: 09-02-2012, 12:20 PM
  4. Need Name Changer For non PB server Windows XP :D
    By PoPoDoM in forum Call of Duty Modern Warfare Help
    Replies: 0
    Last Post: 04-02-2010, 10:00 AM