Archived
1
0
This repository has been archived on 2025-03-31. You can view files and clone it, but cannot push or open issues or pull requests.
powerbasic/chngdfv.bas
2013-07-15 23:19:32 +02:00

85 lines
2.5 KiB
QBasic
Raw Blame History

This file contains invisible Unicode characters

This file contains invisible Unicode characters that are indistinguishable to humans but may be processed differently by a computer. If you think that this is intentional, you can safely ignore this warning. Use the Escape button to reveal them.

color 15
print"Dark Forces Voice Name Changer (DFVNC) v1.00"
print" written by RoboCop INDUSTRIES"
color 7
PARA$=COMMAND$
IF PARA$="+4933223198 NUM2NAM" THEN GOTO NumbersToNames
IF PARA$="+4933223198 NAM2NUM" THEN GOTO NamesToNumbers
GOTO Syntax
NumbersToNames:
print"Gew„hlte Funktion: ";:color 14:print"Nummer ==> Name"
color 7
OPEN "I",#1,"NAMES.LST"
OPEN "O",#2,"DFVNC.LOG"
on error goto FEHLER
PRINT#2,"þ LOG-Datei vom Dark Forces Voice Name Changer v1.00"
print#2,"þ von RoboCop INDUSTRIES"
print#2,"þ"
print#2,"þ Gew„hlte Funktion: NUM2NAM"
print#2,"---------------------------------------------------"
X=1
1 line input#1,FIL$
x$=str$(x)+".VOC"
print"Benenne ";x$;" in ";FIL$;" um ... ";
print#2,X$;" ===> ";FIL$;" ... ";
name x$ as fil$
print "OK"
print#2,"OK"
x=x+1
if eof(1) then
print#2,"þ <EOLF - End Of List File >"
goto Ende
end if
goto 1
NamesToNumbers:
print"Gew„hlte Funktion: ";:color 14:print"Name ==> Nummer"
color 7
OPEN "I",#1,"NAMES.LST"
OPEN "O",#2,"DFVNC.LOG"
ON ERROR GOTO FEHLER
PRINT#2,"þ LOG-Datei vom Dark Forces Voice Name Changer v1.00"
print#2,"þ von RoboCop INDUSTRIES"
print#2,"þ"
print#2,"þ Gew„hlte Funktion: NAM2NUM"
print#2,"---------------------------------------------------"
X=1
2 line input#1,FIL$
x$=str$(x)+".VOC"
print"Benenne ";FIL$;" in ";X$;" um ... ";
print#2,FIL$;" ===> ";X$;" ... ";
name fil$ as x$
print "OK"
print#2,"OK"
x=x+1
if eof(1) then
print#2,"þ <EOLF - End Of List File >"
goto Ende
end if
goto 2
FEHLER:
print#2,"====================================================="
PRINT#2,"þ !!!WARNUNG!!!"
print#2,"þ Ein unbekannter Fehler ist aufgetreten! Vielleicht"
print#2,"þ haben Sie die FALSCHE FUNKTION gew„hlt. Wenn es das"
print#2,"þ nicht war, k”nnen wir Ihnen auch nicht helfen."
print#2,"====================================================="
Syntax:
print
print"Syntax: DFVNC [Serialnummer] [Funktion]
print
print" Serialnummer - Ihre Serialnummer"
print" Funktion - gew<65>nschte Funktion:"
print" NUM2NAM - Nummern zu Namen"
print" (z.B.: 1.VOC => DOOR2-1.VOC, ...)"
print" NAM2NUM - Namen zu Nummern"
print" (z.B.: DOOR2-2.VOC => 2.VOC, ...)"
print
goto Ende
Ende:
print#2,"þ Programm beendet."