Skip to content
MPGHThe Dark Arts
/
RegisterLog in
Forum
Community
What's NewLatest posts across the boardTrendingHottest threads right nowSubscribedThreads you follow
Discussion
GeneralIntroductionsEntertainmentDebate FortFlaming & Rage
Board
News & AnnouncementsMPGH TimesSuggestions & HelpGiveaways
More Sections
Art & Graphic DesignProgrammingHackingCryptocurrency
Hacks & Cheats
Games
ValorantCS2 / CS:GOCall of Duty / WarzoneFortniteApex LegendsEscape From Tarkov
+14 moreLeague of LegendsGTA VMinecraftRustROTMGBattlefieldTroveBattleOnCombat ArmsCrossFireBlackshotRuneScapeDayZDead by Daylight
Resources
Game Hacking TutorialsReverse EngineeringGeneral Game HackingAnti-CheatConsole Game Hacking
Tools
Game Hacking ToolsTrainers & CheatsHack/Release NewsNew
Submit a release →Share your cheat, tool, or config with the community.
AINEW
AI Tools
General & DiscussionPrompt EngineeringLLM JailbreaksHotAI Agents & AutomationLocal / Open Models
AI × Gaming
AI Aimbots & VisionML Anti-CheatGame Bots & Automation
Create
AI Coding / Vibe CodingAI Art & MediaAI Voice & TTS
The AI frontier →Where game hacking meets modern machine learning. Jump in.
Marketplace
Buy & Sell
SellingBuyingTradingUser Services
Trust & Safety
Middleman LoungeMarketplace TalkVouch Copy Profiles
Money
Cryptocurrency TalkCurrency ExchangeWork & Job Offers
Start selling →List accounts, services, and goods. Use the middleman to trade safe.
MPGH The Dark Arts

A community for offensive security research, reverse engineering, and AI.

Community

ForumMarketplaceSearch

Account

RegisterLog in

Legal

Privacy PolicyForum RulesHelp & FAQ
© 2026 MPGH · All rights reserved.Built by the community, for the community. For educational purposes onlyContent is shared for security research and education — we don't condone illegal use. You're responsible for complying with applicable laws. Use at your own risk.
Home › Forum › Programming › Other Programming › Windows XP time changer/setter.

Windows XP time changer/setter.

Posts 1–3 of 3 · Page 1 of 1
TheDollar87
TheDollar87
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?
#1 · 6y ago
Biesi
Biesi
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);
    }
}
#2 · 6y ago
Antin00b_
Antin00b_
Thanls for sharing
#3 · 6y ago
Posts 1–3 of 3 · Page 1 of 1

Post a Reply

Similar Threads

  • Windows Programs Title ChangerBy Ping Pongg in Suggestions, Requests & General Help
    0Last post 7y ago
  • Steam game time changer hackBy planetlad in Steam Games Hacks & Cheats
    1Last post 8y ago
  • DV and LD auto box changer ant time changerBy reeaper in Alliance of Valiant Arms (AVA) Coding / Source Code
    117Last post 14y ago
  • Need Name Changer For non PB server Windows XP :DBy PoPoDoM in Call of Duty Modern Warfare Help
    0Last post 16y ago

Tags for this Thread

None