Since there were no ascii scripting functions, I had to write scripting that converts Hex to Ascii.
var ascii : string array = [" β,β!β,βββ,β#β,β$β,β%β,β&β,β'β,β(β,β)β,β*β,β+β,β,β,β-β,β.β,β/β,β0β,β1β,β2β,β3β,β4β,β5β,β6β,β7β,β8β,β9β,β:β,β;β,β<β,β=β,β>β,β?β,β@β,βAβ,βBβ,βCβ,βDβ,βEβ,βFβ,βGβ,βHβ,βIβ,βJβ,βKβ,βLβ,βMβ,βNβ,βOβ,βPβ,βQβ,βRβ,βSβ,βTβ,βUβ,βVβ,βWβ,βXβ,βYβ,βZβ,β[β,β\β,β]β,β^β,β_β,β`β,βaβ,βbβ,βcβ,βdβ,βeβ,βfβ,βgβ,βhβ,βiβ,βjβ,βkβ,βlβ,βmβ,βnβ,βoβ,βpβ,βqβ,βrβ,βsβ,βtβ,βuβ,βvβ,βwβ,βxβ,βyβ,βzβ]
function GetAscii(a : int array) returns string
var s : string
var i : int
var c : int
//Print ("Ascii")
for i = 0; i < Size(a); i = i + 1 do
if a[i] > 31 && a[i] < 123 then
c = a[i] - 32
s = s + ascii[c]
end
end
result = s
end