Log in

View Full Version : Is it possible ? ( Writing on smart )



Look Me
05-20-2010, 03:32 PM
I want to know if it can be possible to write when smart running, so i can answer to other people around me ?

Thanck.

aran armath
05-20-2010, 03:35 PM
nvm that wasn't the right thread.....

Blumblebee
05-20-2010, 03:41 PM
yes it is. Look at RM's script, Trilez has done it too. I had it in one of my old versions of powerminers too.

Sir R. M8gic1an
05-20-2010, 03:56 PM
{ RM --------------------------------------------------------------------------]
[ Checks for Randoms ]
[------------------------------------------------------------------------------}
function RMRandoms(RDebug: boolean): boolean;
var s: string;
begin
if RDebug then
RMDebug('Checking for randoms');

Result := FindNormalRandoms;

if IsFKeyDown(12) then
begin
s := Readln('What would you like to type ingame?');

if s = '' then
exit;

TypeSend(s);
end;
end;


~RM