
building replaced: Skyscraper
Moderator: Graphics Moderators
I was more thinking of http://www.jinkerson.com/convert2/ myself.Patchman wrote:Now to make it really convenient, just go to http://www.ttdpatch.net/cgi-bin/str2hex.pl

US Train Set v0.87.1 now released: http://www.tt-forums.net/viewtopic.php?t=8754
Don't forget to read the manual: http://wiki.ttdpatch.net/tiki-index.php?page=Manual
Don't forget to read the manual: http://wiki.ttdpatch.net/tiki-index.php?page=Manual
Lol well just for fun here's a command line version 
Never worked with Console programs in delphi before...
Project1.exe "Skyscraper", Output: 0 83 107 121 115 99 114 97 112 101 114 (beginning with a stupid 0...
)
And no, this is not on-topic 

Never worked with Console programs in delphi before...

Project1.exe "Skyscraper", Output: 0 83 107 121 115 99 114 97 112 101 114 (beginning with a stupid 0...

Code: Select all
program Project1;
{$APPTYPE CONSOLE}
uses
SysUtils;
var
i: integer;
input,output: string;
begin
if ParamCount = 0 then
WriteLn('Syntax: Project1.exe "Text to Ascii-fy"')
// Or whatever the .exe filename would be, ofcourse...
else
begin
input := ParamStr(1);
output := '';
for i:=0 to Length(input) do
output := output + IntToStr(Ord(input[i])) + #32;
WriteLn(output);
end;
end.

GoneWacko. Making [url=irc://irc.oftc.net/tycoon]#tycoon[/url] sexy and exciting since 1784.
Who is online
Users browsing this forum: Bing [Bot], Google [Bot] and 24 guests