View Single Post
Old 01-15-2010   View Single Post#2
fille87
 
fille87's Avatar
 
Jun 2009
Posts: 404

Part 2:


Facepunch Browser Release

Originally Posted by OP
The Facepunch Browser is a quck utility for FacePunch Browsing. You can use it as any other browser by going to other adresses, but it is not really the whole point of it. Sadly, it is being run with the help of Internet Explorer, as the Mozilla ActiveX Component for Visual Basic keeps crashing on me. ().

The Browser currently is in its beta stages, and I thought I might give out a public beta so people can try it out.
So far the browser has shortcuts to:
Every subforum
The search button
The "hidden" Facepunch Logout PHP
The Ticker
The Bottom Ticker (Webbrowser Bottom Overlay)
Text Formatting Box (Shows you the different BBCodes)
The Smiley List
ImageShack, Imgkk, PhotoBucket, TinyPic
FileSmelt, MediaFire

The default Homepage is of course Facepunch!

Facepunch Offical Browser Beta Build 2000 Release:
http://filesmelt.com/Filehosting2/do...9build2000.rar
http://www.mediafire.com/?sharekey=1...4e75f6e8ebb871

PrintScreens:



----------------------------------------------------------------------------------------------------------------------------

There are many things that could be improved until the final V1 Release of this program, so I might use some help by more experienced FacePunch members!

If you want to help out in the making of this, please send a PM to me!

----------------------------------------------------------------------------------------------------------------------------

Constructive critiscism is welcome, but if you're here to whine about how Visual Basic sucks and/or how the browser sucks so bad, you might as well get out. You may say it sucks, but AT LEAST post what is wrong, and what would make it better.

Still, I want you guys to take it easy, because I'm just an intermediate VB 2008 user. I'm not a Pr0.
I don't even need to comment on this one.




Airotonal Development Department - my first batch scripts

Originally Posted by OP
OBSERVE!!!
There was no good Post Icon for this tread, but C# is the closest as I can go.
OBSERVE!!!

This is the Official Airtonal DEV Thread, where I will post the programs I make and some Updates.
To begin; here's the URL:
http://www.add.2u.se
(Observe - .SE stands for Sweden)

SOFTWARE
--------------------------------------------------------
NAME: Game Running Support - GRS
VERSION: 1.0 STABLE
AVAILIBLE: Yes - In Downloads
INFO: Helps you running all kinds of games.
---
NAME: Codename: Oxygen - C:O
VERSION: 1.0 STABLE
AVAILIBLE: Yes - In Downloads
INFO: Oxygen is because it deletes most bad files on your PC (Such as those in "Temp")
---
NAME: Virtual Driver Setup - V.D.S
VERSION: 0.5 STABLE
AVAILIBLE: Yes - In Downloads
INFO: Made to create Virtual HDD's for your favorite folders. These will show up in "My Computer".
---
NAME: Death Trigger - D.T
VERSION: 0.1 BETA
AVAILIBLE: Yes - In Downloads
INFO: Fool a friend with this fake BSOD.
-------------------------------------------------------
This thread has been approved by the Mod: lazyV
-------------------------------------------------------
UPDATE 1 - Virtual Driver Setup released as ALPHA - See in Downloads!
UPDATE 2 - Virtual Driver Setup released as STABLE - See in Downloads!
UPDATE 3 - Death Trigger released as BETA - See in Downloads!

MEGA-UPDATE!!! - FREEMAN'S MIND - ALL EPISODES - RELEASED ON THE SITE!!!
-------------------------------------------------------
Thread has already been posted as:
ResourceHax; Airotonal Dev; - Both banned.
-------------------------------------------------------

(User was permabanned for this post ("Spamming on alts- unfortunately for you your 'oh I was at the library someone else did it' excuse is bullshit" - Dragon))


HAHAHAHAHAHAHAHAHAHAAHAHAHAHAHA!!!! JUST LOOK AT THIS!


The "Game running support":

Code:
@echo off
color 0A

:START
title Welcome to GRS
cls
echo Welcome to the Game Running Support!
echo Developed by Airoton Development Department (ADD).
echo.
echo By pressing any button, the program will initzialise
pause >nul
cls

:LOAD
title Loading...
cls
echo Loading...
set gamedir=
set dxl=
set con=
ping localhost -n 2 >nul
cls

:1
title Step 1 - Game Dir.
cls
echo Copy/paste the Directory of your Game here:
echo (For example: C:\Program Files\Half-Life\hl.exe)
set /p gamedir=

:2
title Step 2 - DirectX Level
cls
echo What DXlevel? (Graphics Detail. 9 is default. 10 is highest.)
echo (For example: 9) - Leave blank for Standard
set /p dxl=

:3
title Step 3 - Parameters
cls
echo Shall there be any parameters for the game? Leave blank if No.
echo (For example: -console -win)
set /p con=

:CHECK
title Dir-Check!
cls
echo Checking for dir %gamedir%...
IF EXIST %gamedir% GOTO COMP
IF NOT EXIST %gamedir% GOTO FAIL

:FAIL
title Dir Failure
cls
echo The directory you specified didn't exist!
echo Please make sure you enter the correct dir!
echo.
echo Press any key to return to Start!
pause >nul
goto LOAD

:COMP
title Compiling...
cls
echo Finding Dir...
dir
echo Starting Game with added Parameters...
start %gamedir% -dxlevel %dxl% %con%
echo .
echo .
echo .
echo Game is commencing - Thanks for using GRS!
ping localhost >nul
exit
codename oxygen:

Code:
@echo off
color 0A

:INTRO
title Welcome to Codename: Oxygen
cls
echo OBSERVE! OBSERVE! OBSERVE!
echo To makethis program work, go to C:\Documents and Settings\%Username%, and
echo right-click "Local Settings". Then Uncheck "Hidden".
echo.
echo Welcome to the C:O! This program will delete all files in "Temp"-folders!
echo VERSION INFORMATION: 1.0.0.0 BETA
echo.
echo This version includes deletal of "Previous Files".
echo By pressing any key yo will Init the program.
pause >nul

:START
title Starting...
cls
echo Loading...
cd \
dir
cls

:1
title Observe!
cls
echo This will delete ALL FILES in C:\Documents and Settings\%username%\Local Settings\Temp
echo These files are such you've recently opened. They can be found in the start-menu under "Recent Documents"!
echo.
echo Are you sure you want to delete these files?
set ans=
set /p "ans= (Y/N) = "
if %ans%==Y goto 2
if %ans%==y goto 2
if %ans%==N goto 1b
if %ans%==n goto 1b

:ERR
title ERROR!
cls
echo Faulty Input!
ping localhost -n 2 >nul
cls
goto START

:2
title Cleaning...
cls
echo DELETING ALL COOKIES IN C:\Documents and Settings\%username%\Local Settings\Temp...
del /Q "C:\Documents and Settings\%username%\Lokala~1\Temp"
del /Q "C:\Documents and Settings\%username%\Lokalal Settings\Temp"
ping localhost >nul
cls

:3
title Cleaning accomplished!
cls
echo Your TEMP folder is now Empty / Deleted!
echo Thanks for using C:O!
echo.
echo OBSERVE! There may be folders / Files left, but this is a problem not solvable  by A.D.D.!
ping localhost -n 6 >nul
exit

:1b
title Bye!
cls
echo If you change your mind, just open the Program again!
pause >nul
exit

virtual driver:

Code:
@echo off
color 0A

:CHO
title Welcome to V.D.S
cls
echo Welcome to the Virtual Driver Setup
echo Observe that all Virtual Drivers will be deleted
echo after rebooting. This is an unknown bug.
echo.
echo Press any key to start!
pause >nul
cls

:CHO2
title Choosing Area
cls
echo Choose wether to DELETE a virtual driver or to ADD one.
echo.
echo [1] ADD
echo [2] DELETE
set /p "cho= (1/2) > "
if %cho%==1 goto 1
if %cho%==2 goto 2

:ERR
title GOTO ERROR
cls
set %cho%= null
cls
goto CHO2

:1
title Drive Letter
cls
echo What letter should the drive have (Can't have an existing one):
echo (FOR EXAMPLE: H, D, E)
set /p "driv= > "
IF EXIST %driv%:\ goto 1
cls

:1b
title Output folder
cls
echo Which is the target folder?
echo (FOR EXAMPLE: C:\Common\Programs)
echo (IF the directory contains spaces, use citation-marks! "C:\Common Stuff")
set /p "dir= > "
if EXIST %dir% goto 1c
IF NOT EXIST %dir% goto 1b
cls

:1c
title Driver Created
cls
subst %driv%: %dir%
cls
echo The driver has been created in "My Computer".
pause
cls
exit

:2
title Which driver?
cls
echo Which driver to be deleted? (NOT a "Real" Directory, like C:\, but the Virtual Driver!)
set /p "del= > "
IF EXIST %del%:\ goto 2b
IF NOT exist %del%:\ goto 2

:2b
title Deleted
cls
subst %del%: /D
cls
echo Driver deleted successfully.
pause
cls
exit
death trigger:

lol

Code:
@echo off
color 18

:t1
title Blue Screen of Death - Trigger 1
cls
echo System Failure in DOS
echo ----------*----------*----------*----------*----------
echo syscode 0x00023 = .IN
echo Faulty input on .OS-Trigger - Please Appeal no. 1; 01
echo.
echo CODES:
echo 0x0000453; 7x993927; 0x99876772
pause >nul

:t2
title Black Screen of Death - Trigger 2
color 01
cls
ping localhost -n 3 >nul
cls

:t3
title Red Screen of Death - Trigger 3
color 4F
cls
echo !!! ERROR !!! ERROR !!! ERROR !!!
echo ALL MEMORY HAS BEEN DELETED
echo FAULTY MEMORY VALUE; REGISTERED AS "NULL"
echo !!! ERROR !!! ERROR !!! ERROR !!!
echo PLEASE REFRAME OPERATIVE 1000; 91
echo RESTART SYSTEM MAINFRAME 01
echo ...
ping localhost -n 2 >nul
echo ...
ping localhost -n 2 >nul
echo ...
ping localhost -n 2 >nul
echo.
echo SYSTEM MAINFRAME DELETED
ping localhost -n 2 >nul
echo DEL C:\WINDOWS
ping localhost -n 2 >nul
echo DEL C:\DOCUMENTS AND SETTINGS
ping localhost -n 2 >nul
echo DEL D:\ -treecatalogue
ping localhost -n 2 >nul
cls

:t4
cls
echo FAULTY MEMORY
ping localhost -n 2 >nul
cls

:t5
title BSOD
color 01
cls
pause >nul

:t6
title SCREEN ERROR
cls
color 0A
echo MONITOR ERROR
color 1B
echo MONITOR ERROR
color 2C
echo MONITOR ERROR
color 3D
echo MONITOR ERROR
color 4E
echo MONITOR ERROR
color 5F
echo MONITOR ERROR
color 6F
echo MONITOR ERROR
color 7F
echo MONITOR ERROR
goto t6






Thank you for this shit I don't care about. This thread sucks

Thank you I did my best