TEH RAMBLER
This is my Autotalker. Easy to use and works until you stop it. Please give Feed back and Rate.
TEH RAMBLER
This is my Autotalker. Easy to use and works until you stop it. Please give Feed back and Rate.
It works! May I make some suggestions though...
It would be great if it had a little user interface in which someone could type a message they want spammed over and over perhaps and maybe a checkbox for a color and animation they want. That way you dont need to keep recompiling it just to get ur mesage across. Also it would be cool if you added a stop button on it maybe. Just 2 cents though.
Other than that it works as its supposed to. Nice work!
k thanks alot for the feedback, its just that i just started scripting and im not real good. so im not exactly sure how to do what your saying...
i noticed you don't have srl stats or a progress report in there. Maybe you should add that? So you could have something to report on? I'll test soon.
EDIT:
Tested and it works, but like I said, stats and proggie would be nice.
http://www.draynor.net/skill/forest/...drewrox424.png
http://www.draynor.net/skill/glossyb...drewrox424.png
http://www.draynor.net/skill/elegree...drewrox424.png
http://www.stats.srl-forums.com/sigs/4579.png
Click Here to support me in getting rs membership and signing up for Bux3 Earn money yourself while helping me!
You could change this:
SCAR Code:const
Message1=('Cyan:'); //Type the colour you want your text to appear in between the ' '
Message2=('Shake:'); //Type the style you want your text to appear in between the ' '
Message3=('W00t'); // Type you message in between the ' '
// You can leave any of the above blank if you wish.
procedure RambleOn;
begin
sendkeyssilent(Message1)
sendkeyssilent(Message2)
sendkeyssilent(Message3)
sendkeyssilent(chr(13)); // This is the enter button.
wait (4500+random(50)); // This is the time between each time you say the text.
// 1000 milliseconds = 1 second. Feel free to change.
To this:
SCAR Code:const
Message = 'Your Text Here';
Colour = 'The Colour You Want Your Text:';
Effect = 'The Effect That Your Text Will Have:';
WaitTime = 3000; //Time to wait between each time your message gets typed
RandomWait = 1000; //Amount of randomness to add onto WaitTime
procedure RambleOn;
begin
Sendkeyssilent(Colour+Effect+Message+Chr(13))
Wait (WaitTime + random (RandomWait));
end;
This would make it easier for the user to use, and set their own setting without having to scroll through the script.
<3
Originally Posted by Eminem
There are currently 1 users browsing this thread. (0 members and 1 guests)