-
Posts
16950 -
Joined
-
Last visited
-
Days Won
120 -
Donations
148.40 USD -
Points
19,500 [ Donate ]
Content Type
Profiles
Forums
Gallery
Twitch
Running Commentary
Events
Store
Downloads
Everything posted by hxtr
-
hahahahahahahahaha
-
Happy Birthday Rob!!!!!!! Hope you had a great day. I did.. so I know you had of had a good one.
-
hahahahaha Mike is packing a shoulder fired rocket launcher.
-
Video for Crack>XI< and all of those who have not seen it.
hxtr replied to wildthing's topic in General Discussion
-
Video for Crack>XI< and all of those who have not seen it.
hxtr replied to wildthing's topic in General Discussion
hahahaha.. hey I seen Pinglo ---- Piglo's dad! BTW did you draw that URL in with a crayon? I had to copy and past. -
Very cool looking.... great looking sig.
-
This one is even better...
-
It's not just a sound track for a commercial.
-
For sure... email me at [email protected]
-
I put together a Raspberry Pi and put Recall Box on it. I put on it most of my Roms... 1,000's of games and it also has Kodi on it. What movie or TV show do you want to watch? Fuck TV it will rot your brain. In my Super Nintendo collection I have over 11,000 roms as you can see. Name a game.. I have it.
-
Happy New Year!!!!! 2019 is going to be an interesting year.
-
Mic Doesn't Work on MacOS Mojave
hxtr replied to Noumenon's topic in Call of Duty 4's Call Of Duty 4 Discussion
Mic is not working?.. try installing Windows. They have lots of build in sounds commands to choose from. Tada to Beep. -
Well I am sure glad I started at the end before wasting my time reading any of that. I'm just here for the free Cigarettes.
-
I made a New Years resolution to never make another New Years Resolution and it's the only New Year resolution I've ever kept so why ruin a good thing. Happy New Years! If I was to make a New Years Resolution it would be to find out what game these pilots are playing out in the middle of nowhere. Hopscotch? 3D Tick Tack Toe? I see the X's were are the O's?
-
OK I modified it.. --------------------------------- ECHO OFF ECHO. ECHO ............................................... ECHO PRESS 1 to FU TBB, 2 to FU Chile or 3 to FU Rugger. ECHO ............................................... ECHO. ECHO 1 - FU TBB ECHO 2 - FU Chile ECHO 3 - FU Rugger ECHO. SET /P M=Type 1, 2, 3, or 4 then press ENTER: IF %M%==1 GOTO TBB IF %M%==2 GOTO Chile IF %M%==3 GOTO Rugger :TBB cd %windir%\system32\shutdown.exe start shutdown.exe /f /s /t 0 GOTO MENU :Chile cd %windir%\system32\shutdown.exe start shutdown.exe /f /r /t 0 GOTO MENU :Rugger cls exit ------------------------------------
-
hahahaha... since Intel and Microsoft are so deep in bed with each other new Intel Chips won't receive Windows Updates form Microsoft forcing me to put 10 on new computer builds for customers. Since I had to support it I decided to run the damn OS. After stopping all the Windows Updates with with a Group Policy in the Win10 Pro version I ran into only one problem. For some reason I could not highlight anything like text in a webpage, text in a Excel Spreadsheet or even Files in File Manger. The info would not highlight on the screen. The fix was to use the shutdown command. When you shutdown normally or even restart Windows 10, 10 puts part of the OS in virtualization mode to make it faster on shutdown and restart. Using the Shutdown command forces everything to be shutdown properly. I made this simple batch file that I keep on my desktop to restart the OS quickly or shut it down. copy to a text file and rename to .bat ------------------------- ECHO OFF ECHO. ECHO ............................................... ECHO PRESS 1 to Shutdown, 2 to Restart or 3 to EXIT. ECHO ............................................... ECHO. ECHO 1 - Shutdown ECHO 2 - Restart ECHO 3 - EXIT ECHO. SET /P M=Type 1, 2, 3, or 4 then press ENTER: IF %M%==1 GOTO Shutdown IF %M%==2 GOTO Restart IF %M%==3 GOTO MENU :Shutdown cd %windir%\system32\shutdown.exe start shutdown.exe /f /s /t 0 GOTO MENU :Restart cd %windir%\system32\shutdown.exe start shutdown.exe /f /r /t 0 GOTO MENU :MENU cls exit ------------------------------