\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/
Welcome to Omnicron Software
/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\

 

Home

Scripts

Malicious Scripts

DSINs

Help

About

Employment

Employees

Contact Us

Links

FrontEnd For DS

// Needed to restore original settings
getcolor
getbgcolor

//OmniSoft Color Setter
color 4
bgcolor 5

var ipconnect
var runscrpt
var dirview
var script

@start
var menuchoice
CLS
color blue
SAY 1 /\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
color orange
SAY 1 Welcome to the FrontEnd
color blue
SAY 1 \/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/
skipline
color white
SAY 1 Please choose an option:
skipline
color blue
SAY 1 1. Check Mail
SAY 1 2. Connect To A Site
SAY 1 3. Run A Script
SAY 1 4. More Script Options
SAY 1 5. List all files in directory
SAY 1 6. Quit
skipline
color white
INPUT menuchoice Please Choose An Option

IF menuchoice = 1
FREE menuchoice
mail
goto start
skipline
pause
ENDIF

IF menuchoice = 2
skipline
FREE menuchoice
INPUT ipconnect Which site do you wish to connect to?
connect %ipconnect%
goto start
skipline
pause
ENDIF

IF menuchoice = 3
free menuchoice
skipline
INPUT runscrpt What is the name of the script you would like to run?
run %runscrpt%
goto start
skipline
pause
ENDIF

IF menuchoice = 4
goto morescript
ENDIF

IF menuchoice = 5
free menuchoice
goto dirview
ENDIF

IF menuchoice = 6
free menuchoice
goto quit
ENDIF

SAY 10 Sorry, invalid choice
GOTO start


@dirview
skipline
INPUT dirview Which directory do you want to view? Put a \ to view the root directory.

IF dirview = \
dir
skipline
pause
GOTO start
ENDIF

cd %dirview%
ls -a
skipline
pause
cd..
cd..
cd..
cd..
goto start
ENDIF

@morescript
CLS
color white
SAY 1 Please choose an option
skipline
color blue
SAY 1 1. Create A Script
SAY 1 2. Edit A Script
SAY 1 3. Delete A Script
SAY 1 4. Return to menu
skipline
color white
INPUT menuchoice Please choose a number

IF menuchoice = 1
goto createscript
ENDIF

IF menuchoice = 2
goto editscript
ENDIF

IF menuchoice = 3
goto delscript
ENDIF

IF menuchoice = 4
goto start
ENDIF

skipline
color blue
SAY 10 Sorry. Invalid Choice.
pause
goto morescript

@createscript
CLS
color white

INPUT script What do you want to call this script?

EXISTS %script%

IF exists = true
skipline
color white
SAY 1 This file already exists.
skipline
color blue
SAY 1 1. Edit this file
SAY 1 2. Return to menu
skipline
color white
INPUT menuchoice What do you want to do?

IF menuchoice = 1
EDIT %script%
goto morescript
ENDIF

IF menuchoice = 2
goto morescript
ENDIF

IF exists = false
EDIT %script%
goto morescript
ENDIF

SAY 1 Sorry, invalid choice.
skipline
PAUSE
goto createscript

@editscript
CLS
color white
INPUT script Which script do you want to edit?

EXISTS %script%

IF exists = true
EDIT %script%
goto morescript
ENDIF

IF exists = false
skipline
color white
SAY 1 This file does not exist.
skipline
color blue
SAY 1 1. Create this file
SAY 1 2. Return to menu
skipline
color white
INPUT menuchoice What do you want to do?

IF menuchoice = 1
EDIT %script%
goto morescript
ENDIF

IF menuchoice = 2
goto morescript
ENDIF

SAY 1 Sorry, invalid choice.
skipline
PAUSE
goto createscript

@delscript
CLS
color white
INPUT script Which script do you want to delete?

EXISTS %script%

IF exists = false
skipline
color white
SAY 1 This file does not exist.
skipline
PAUSE
goto morescript
ENDIF

IF exists = true
var menuchoice
color blue
INPUT menuchoice Are you SURE you want to delete %script%? (y/n)

IF menuchoice = y
del %script%
skipline
PAUSE
goto morescript
ENDIF

SAY 1 %script% was NOT deleted.
skipline
PAUSE
goto morescript

@quit
CLS
color blue
say 10 Thank you for using
color orange
say 10 OmniSoft FrontEnd For DS
skipline
color blue
say 10 Visit us on the web at
color green
say 10 http://clix.to/omnisoft
skipline
color White
SAY 10 Please tell all your friends about us!
skipline
SAY 10 This script is freeware, feel free to post
SAY 10 an un-edited version of it on any form of
SAY 10 electronic distribution system (BBS, FIDO,
SAY 10 e-mail etc.)
skipline

color 4
bgcolor 5
color %getcolor%
bgcolor %getbgcolor%

END

STATS

Website (C) Omnicron Software 2003
Dark Signs is (c) Terminal Zero

1