Author: Delfi
Demolition Expert

Group: Moderators
Joined: Mar 11, 2002

Kam: here is the tool: 

http://www.gtatools.com/temp/T2B.exe 

distribute freely. 

use through command-line like: 

T2B "c:\something.txt" "something.bin" 

note that quotes are important so program can
handle file and folders with spaces. 

it supports these commands: 
b = 1 byte integer
w = 2 byte integer
i = 4 byte integer

f = 4 byte float single
d = 8 byte float double

c = char, number should tell how many bytes to write, 
	text must be in one line, if number of letters in string 
	is less than number you give it will pad it with zeroes. 
	use '~' for spaces, program wants the string to be in 
	single line without spaces. 

all non-floating point numbers are signed, if you need 
unsigned ones (invalid integer value errors) tell me.
