Just a simple script i use to pick the price that i am selling per mil rsgp to an rl friend.
SCAR Code:program PricePicker;
var e: extended;
procedure PickPrice;
begin
e:= random(10)
if (e<10) then writeln('todays price=$' +floattostr(e))
if (e=0) then
begin
cleardebug
clickmouse(518,195,true)
end;
end;
begin
cleardebug
PickPrice
end.
Could someone explain to me how to make the price a decimal or extended please?



















