PDA

View Full Version : Singing and Dancing



ali_n_5
04-26-2010, 10:33 PM
Hey can anyone make me a script that will auto talk many different lines and auto press an emote that I want so like an auto talker and dancer at the same time

Timer
04-26-2010, 10:34 PM
DoEmote(RandomRange(1, 47));
?

ali_n_5
04-26-2010, 10:36 PM
huh? lol idk scripting XP well not alot

ali_n_5
04-26-2010, 10:38 PM
like ummmm put smthing like find and press "dance" and the thing in brackets changable

Timer
04-26-2010, 10:38 PM
huh? lol idk scripting XP well not alot

Try this in runescape:

{.include SRL\SRL.scar}

begin
while (LoggedIn) do
begin
DoEmote(RandomRange(1, 47));
Wait(RandomRange(1000, 5000));
end;
end.
login and run that

ali_n_5
04-26-2010, 10:46 PM
close to nothing happened the curser just moved really slowely

TRiLeZ
04-26-2010, 10:49 PM
close to nothing happened the curser just moved really slowely

...because the mouse speed was never set. Try calling SetupSRL.

ali_n_5
04-26-2010, 10:51 PM
huh? lol idk scripting XP well not alot

as u see lol I said idk scripting XP thats why I am requesting a script.

i luffs yeww
04-26-2010, 10:56 PM
{.include SRL\SRL.scar}

begin
SetupSRL;
while (LoggedIn) do
begin
DoEmote(RandomRange(1, 47));
Wait(RandomRange(1000, 5000));
end;
end.


Problem solved.

ali_n_5
04-26-2010, 10:58 PM
{.include SRL\SRL.scar}

begin
SetupSRL;
while (LoggedIn) do
begin
DoEmote(RandomRange(1, 47));
Wait(RandomRange(1000, 5000));
end;
end.


Problem solved.

wow u make it look so easy but it just says

Successfully compiled (2955 ms)
SRL Compiled in 16 msec
Successfully executed

Timer
04-26-2010, 11:00 PM
Woops. Forgot SetupSRL; :(

i luffs yeww
04-26-2010, 11:00 PM
Are you logged in RS? :p Whatever.


{.include SRL\SRL.scar}

begin
SetupSRL;
DoEmote(RandomRange(1, 47));
Wait(1000 + Random(4000));
end.


Make sure you're logged in with the emotion tab thing open. And drag the crosshair to RS, etc. etc.

ali_n_5
04-26-2010, 11:05 PM
Are you logged in RS? :p Whatever.


{.include SRL\SRL.scar}

begin
SetupSRL;
DoEmote(RandomRange(1, 47));
Wait(1000 + Random(4000));
end.


Make sure you're logged in with the emotion tab thing open. And drag the crosshair to RS, etc. etc.

same thing

i luffs yeww
04-26-2010, 11:07 PM
Works perfectly fine for me. urdoinitrong.

Dgby714
04-26-2010, 11:12 PM
program test;
{$define SMART}
{.include SRL\SRL.scar}

procedure DeclarePlayers;
begin
HowManyPlayers := 1; // How many players declared?
CurrentPlayer := 0; // Number of player to start with.
NumberOfPlayers(HowManyPlayers);

with Players[0] do
begin
Name := '';
Pass := '';
Active := True;
end;
end;


begin
SetupSRL;
DeclarePlayers;
Wait(1000);
if (not (LoggedIn)) then
LoginPlayer;
GameTab(tab_Emotes);
repeat
DoEmote(RandomRange(1, 47));
Wait(1000 + Random(4000));
until(False);
end.

ali_n_5
04-26-2010, 11:16 PM
program test;
{.include SRL\SRL.scar}
begin
SetupSRL;
if (not (LoggedIn)) then
WriteLn('Not Logged In....')
else
begin
GameTab(tab_Emotes);
DoEmote(RandomRange(1, 47));
Wait(1000 + Random(4000));
end;
end.

I did that it still says
Successfully compiled (2953 ms)
SRL Compiled in 16 msec
Successfully executed

ali_n_5
04-26-2010, 11:18 PM
SMART works better for me... anyone can make it to work for smart?

Dgby714
04-26-2010, 11:20 PM
SMART works better for me... anyone can make it to work for smart?

Updated mine for smart >.>

ali_n_5
04-26-2010, 11:31 PM
Off topic: can anyone tell me what reflection is for? I followed Coh3ns guide to autoing and it didnt have anything on reflection in it but my friend at school said I need it.

Timer
04-26-2010, 11:33 PM
Off topic: can anyone tell me what reflection is for? I followed Coh3ns guide to autoing and it didnt have anything on reflection in it but my friend at school said I need it.

Reflection is obsolete. (Unless you become friends with the few people that fixed it.)

ali_n_5
04-26-2010, 11:38 PM
Reflection is obsolete. (Unless you become friends with the few people that fixed it.)

what do u mean by fixed it?

ali_n_5
04-26-2010, 11:50 PM
another off topic: if u cant make god armor or trimmed armor how do ppl get it?

i luffs yeww
04-27-2010, 01:53 AM
Reflection isn't necessary; you don't need it. It isn't "officially" fixed because people are too lazy to actively update it, as we've no released and working updater.

People get god/trimmed armor from treasure trails.

Most of your questions can be answered through Google.

Main
04-27-2010, 02:11 AM
we have a ref update now? :)

i luffs yeww
04-27-2010, 02:40 AM
^ wat

People have been posting hooks for awhile. There's just no released updater for SRL.

ali_n_5
04-27-2010, 03:56 AM
lol so anyone have a SMART auto talker and dancer for me yet ^_^ must be able to say multiple lines XD for a song and dance

i luffs yeww
04-27-2010, 04:06 AM
The one posted should dance.

To add talking, try this.


{.include SRL\SRL.scar}

var
i: Integer;
Phrases: TStringArray;

begin
Phrases := ['wat', 'lolwut', 'kthxbai.'];
SetupSRL;
while (LoggedIn) do
for i := 0 to High(Phrases) do
begin
DoEmote(RandomRange(1, 20));
TypeSend(Phrases[i]);
Wait(RandomRange(1000, 5000));
if(i = High(Phrases))then
i := -1;
end;
end.