Sythe.Org Forums     Register     FAQ     Members List     Calendar     Mark Forums Read    
 
Sythe.Org Forums  
   Runescape Gold

Sythe.org — A Virtual Goods Trading Hub

Make real cash! buying and selling in-game items.

We have a no-scam policy.

You can make thousands playing your favourite games here at Sythe.org.

Just sign up an account and follow the rules!


Take me to

Runescape Markets

Other Game Markets

Support Center

Register an Account

Close
Amazing AutoTalker
Reply
 
LinkBack Thread Tools Display Modes
  #1  
Old 10-16-2009, 01:59 AM
Member
BANNED
 
Join Date: Feb 2009
Posts: 53
Default Amazing AutoTalker

This auto-talker is the BEST ever made. Though it is extremely simple, the dynamicness of it makes it unbeatable .

How to make it work:
Lines 34-43
Code:
function ChooseSaying : string;
begin
  case random(5) of
    0: Result := '';
    1: Result := '';
    2: Result := '';
    3: Result := '';
    4: Result := '';
  end;
end;
Fill in the messages to type in between each ' '. If you do not have so many messages to type, delete some lines, and change the random(int) accordingly... For example:

Code:
function ChooseSaying : string;
begin
  case random(3) of
    0: Result := 'Follow me I am Zezima';
    1: Result := 'Omg I am Zezima!!!!;
    2: Result := 'Look it's Zezima!!!!!';
  end;
end


Copy and paste the following into SCAR:
Code:
program SuperRandomAutoTalker;
{.include SRL\SRL.scar}

function ChooseColor : string;
begin
  case random(12) of
    0: Result := '';
    1: Result := 'red:';
    2: Result := 'green:';
    3: Result := 'cyan:';
    4: Result := 'purple:';
    5: Result := 'white:';
    6: Result := 'flash1:';
    7: Result := 'flash2:';
    8: Result := 'flash3:';
    9: Result := 'glow1:';
    10: Result := 'glow2:';
    11: Result := 'glow3:';
  end;
end;

function ChooseEffect : string;
begin
  case random(6) of
    0: Result := 'scroll:';
    1: Result := 'shake:';
    2: Result := 'slide:';
    3: Result := 'wave:';
    4: Result := 'wave2:';
    5: Result := '';
  end;
end;

function ChooseSaying : string;
begin
  case random(5) of
    0: Result := '';
    1: Result := '';
    2: Result := '';
    3: Result := '';
    4: Result := '';
  end;
end;

procedure WriteSaying;
begin
  repeat
    wait(100);
    //Writeln(ChooseColor + ChooseEffect + ChooseSaying);
    TypeSend(ChooseColor + ChooseEffect + ChooseSaying);
    wait(100+random(6581)+random(2012)-random(6541));
  until(false);
end;

begin
  SetupSRL;
  wait(2000);
  WriteSaying;
end.
To Download SCAR: http://sythe.org/showthread.php?t=703177
Reply With Quote
Reply



Cheap RS Gold Store  Runescape Gold

Currently Active Users Viewing This Thread: 1 (0 members and 1 guests)
 
Thread Tools
Display Modes

Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

vB code is On
Smilies are On
[IMG] code is On
HTML code is Off
Trackbacks are Off
Pingbacks are Off
Refbacks are Off

All times are GMT +1. The time now is 05:14 PM.


Powered by vBulletin® Version 3.6.4
Copyright ©2000 - 2013, Jelsoft Enterprises Ltd.
Search Engine Optimization by vBSEO 3.6.1