my first script--need help!
Well my problem is pretty much the same as mod mopars but i cant understand that thread because his script is way ore complicated then mine.
well i did an autoralker using beb's tutorial and i did the basics and learnt something
it types my message into the scar debug box how do i egt it into the runescape window
abd i also dont knoe how to srlerize my script could someone show me step by step and explain it please i am really keen on scripting
heres my basic script
SCAR Code:
program script;
const
Message1='Hello world!';
procedure hello;
begin
wait(2000)
Writeln(message1);
end;
begin
repeat
hello;
until(false)
End.