Results 1 to 20 of 20

Thread: Problem with my AutoTalker

  1. #1
    Join Date
    Oct 2011
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Problem with my AutoTalker

    Hey Guys,

    I would like to get my AutoTalker back working. Can anyone help me out? This is the issue:

    http://img577.imageshack.us/img577/2624/roysimba.png

    script:
    Code:
    program new;
    {$i SRL/SRL/Misc/SMART.scar}
    {$i SRL/SRL.simba}
    
    var
      ii : integer;
    
    Const
      Memberss = True;
      Textt = 'text';
      Times = 100000; // how many times to repeat.
    begin
      ii := 0;
      SetupSRL;
      SmartSetupEx(10, Memberss, True, False);
      Writeln('Please Pause the Script and login');
      Writeln('Please Pause the Script and login');
      Writeln('Please Pause the Script and login');
      Writeln('Please Pause the Script and login');
      Wait(20000);
      while(not (LoggedIn)) do
      begin
        Wait(6000);
        Writeln('Still not logged in, Waiting......');
      End;
      Repeat
        Inc(ii);
        Wait(10);
        SendKeys(Textt,30);  
        Wait(50)
        TypeByte(13); 
      Until(ii > Times);
    end.
    Please tell me what im doing wrong? I downloaded smart 7.1

    I'll reward you if you can help me out!

    Thanks guys for reading

  2. #2
    Join Date
    Jan 2008
    Location
    C:\
    Posts
    1,483
    Mentioned
    2 Post(s)
    Quoted
    2 Post(s)

    Default

    Simba Code:
    {$i SRL/SRL/Misc/SMART.scar}

    ->

    Simba Code:
    {$i SRL/SRL/Misc/SMART.simba}

  3. #3
    Join Date
    Oct 2011
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Runaway View Post
    Simba Code:
    {$i SRL/SRL/Misc/SMART.scar}

    ->

    Simba Code:
    {$i SRL/SRL/Misc/SMART.simba}
    Whats up man, thanks for your help already, i appriciate so much

    But now it gives me this error, what to do with it?

    http://img210.imageshack.us/img210/1332/roysimba2.png

    and

    http://img826.imageshack.us/img826/6586/roysimba4.png

    and this error:

    http://img849.imageshack.us/img849/7029/roysimba5.png

  4. #4
    Join Date
    Jan 2008
    Location
    C:\
    Posts
    1,483
    Mentioned
    2 Post(s)
    Quoted
    2 Post(s)

    Default

    - Uninstall any/all java versions
    - Install java 6 update 32 (or latest possible ver 6)
    - Update everything in Simba

    Then try again.

  5. #5
    Join Date
    Dec 2011
    Location
    011011011011
    Posts
    241
    Mentioned
    0 Post(s)
    Quoted
    25 Post(s)

    Default

    supporting autotypers, way to spread the "buy our rsgp" autotalkin plague
    Quote Originally Posted by Markus View Post
    LSD RuneScape will be fun :P We must try some acid to see if it cancels the effects out.
    Back To Play & Bot RS07

  6. #6
    Join Date
    Jan 2008
    Location
    C:\
    Posts
    1,483
    Mentioned
    2 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by Neros View Post
    supporting autotypers, way to spread the "buy our rsgp" autotalkin plague
    I'm simply helping those who need it.

  7. #7
    Join Date
    Oct 2011
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Neros View Post
    supporting autotypers, way to spread the "buy our rsgp" autotalkin plague
    Im not Chinese, its not that, not at all. Mine is affiliated with Flowering ingame, nothing to do with chinese farm's. nothin illegal.

    The following DTMs were not freed: [SRL - Lamp bitmap, 1]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap


    Still getting this error Run, exactly did your steps
    Last edited by Haag; 06-11-2012 at 12:43 AM.

  8. #8
    Join Date
    Jan 2008
    Location
    C:\
    Posts
    1,483
    Mentioned
    2 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by Haag View Post
    Im not Chinese, its not that, not at all. Mine is affiliated with Flowering ingame, nothing to do with chinese farm's.

    The following DTMs were not freed: [SRL - Lamp bitmap, 1]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap


    Still getting this error Run, exactly did your steps
    Ah, don't know why I missed this before! You've got this:

    Simba Code:
    SetupSRL;
    SmartSetupEx(10, Memberss, True, False);

    You need to call SetupSRL after setting up SMART:

    Simba Code:
    SmartSetupEx(10, Memberss, True, False);
    SetupSRL;

    // or:

    Smart_Server := 10;
    Smart_Members := Memberss;
    Smart_Signed := True;
    Smart_SuperDetail := False;
    SetupSRL;

  9. #9
    Join Date
    Oct 2011
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Runaway View Post
    Ah, don't know why I missed this before! You've got this:

    Simba Code:
    SetupSRL;
    SmartSetupEx(10, Memberss, True, False);

    You need to call SetupSRL after setting up SMART:

    Simba Code:
    SmartSetupEx(10, Memberss, True, False);
    SetupSRL;

    // or:

    Smart_Server := 10;
    Smart_Members := Memberss;
    Smart_Signed := True;
    Smart_SuperDetail := False;
    SetupSRL;
    Done: Result:

    Successfully saved: C:\Simba\Scripts\AutoTalker.simba
    Compiled successfully in 1373 ms.
    Error: Exception: Access violation at line 142
    Successfully saved: C:\Simba\Scripts\AutoTalker.simba
    Compiled successfully in 1216 ms.
    Error: Exception: Access violation at line 142
    Compiled successfully in 1263 ms.
    Error: Exception: Access violation at line 142

  10. #10
    Join Date
    Jan 2008
    Location
    C:\
    Posts
    1,483
    Mentioned
    2 Post(s)
    Quoted
    2 Post(s)

    Default

    Could only find this: http://villavu.com/forum/showthread.php?t=75394

    I don't know how to fix that :S Looks like it works for some people after they've closed and restarted simba... try running simba as an admin also.

  11. #11
    Join Date
    Oct 2011
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    program new;
    {$i SRL/SRL/Misc/SMART.simba}
    {$i SRL/SRL.simba}

    var
    ii : integer;

    Const
    Memberss = True;
    Textt = 'text';
    Times = 100000; // how many times to repeat.
    begin
    ii := 0;
    SmartSetupEx(10, Memberss, True, False);
    Smart_Server := 10;
    Smart_Members := Memberss;
    Smart_Signed := True;
    Smart_SuperDetail := False;
    SetupSRL;
    Writeln('Please Pause the Script and login');
    Writeln('Please Pause the Script and login');
    Writeln('Please Pause the Script and login');
    Writeln('Please Pause the Script and login');
    Wait(20000);
    while(not (LoggedIn)) do
    begin
    Wait(6000);
    Writeln('Still not logged in, Waiting......');
    End;
    Repeat
    Inc(ii);
    Wait(10);
    SendKeys(Textt,30);
    Wait(50)
    TypeByte(13);
    Until(ii > Times);
    end.
    program new;
    {$i SRL/SRL/Misc/SMART.simba}
    {$i SRL/SRL.simba}

    var
    ii : integer;

    Const
    Memberss = True;
    Textt = 'text';
    Times = 100000; // how many times to repeat.
    begin
    ii := 0;
    SmartSetupEx(10, Memberss, True, False);
    SetupSRL;
    Writeln('Please Pause the Script and login');
    Writeln('Please Pause the Script and login');
    Writeln('Please Pause the Script and login');
    Writeln('Please Pause the Script and login');
    Wait(20000);
    while(not (LoggedIn)) do
    begin
    Wait(6000);
    Writeln('Still not logged in, Waiting......');
    End;
    Repeat
    Inc(ii);
    Wait(10);
    SendKeys(Textt,30);
    Wait(50)
    TypeByte(13);
    Until(ii > Times);
    end.
    Done both scripts.
    He compiled it, but won't load the applet

  12. #12
    Join Date
    Dec 2011
    Location
    011011011011
    Posts
    241
    Mentioned
    0 Post(s)
    Quoted
    25 Post(s)

    Default

    Quote Originally Posted by Runaway View Post
    I'm simply helping those who need it.
    I Know Runaway, i didn't mean it to sound the way it did, it's just autotalkers are a horrible creation imho

    Quote Originally Posted by Haag View Post
    Im not Chinese, its not that, not at all. Mine is affiliated with Flowering ingame, nothing to do with chinese farm's. nothin illegal.
    autotalking still gets annoying no matter what it's for.
    just my input, i don't know your intentions. even if you say it's for something else. you could pass it on, release it somewhere, i didn't say you were Chinese
    Quote Originally Posted by Markus View Post
    LSD RuneScape will be fun :P We must try some acid to see if it cancels the effects out.
    Back To Play & Bot RS07

  13. #13
    Join Date
    Sep 2007
    Location
    British Columbia, Canada
    Posts
    4,047
    Mentioned
    1 Post(s)
    Quoted
    2 Post(s)

    Default

    am chinese and i don't like auto talkers. BUt if you make it yourself its cool, just don't tell us that you are making it.
    Oh Hai Dar

  14. #14
    Join Date
    Jan 2008
    Location
    C:\
    Posts
    1,483
    Mentioned
    2 Post(s)
    Quoted
    2 Post(s)

    Default

    @Haag, remove SmartSetupEx from the one using:

    Simba Code:
    Smart_Server := 10;
    Smart_Members := Memberss;
    Smart_Signed := True;
    Smart_SuperDetail := False;

  15. #15
    Join Date
    Dec 2011
    Location
    011011011011
    Posts
    241
    Mentioned
    0 Post(s)
    Quoted
    25 Post(s)

    Default

    Quote Originally Posted by Main View Post
    am chinese and i don't like auto talkers. BUt if you make it yourself its cool, just don't tell us that you are making it.
    this.

    LOL de-repped for it? shows how childish some people are around here. *disables rep*
    Quote Originally Posted by Markus View Post
    LSD RuneScape will be fun :P We must try some acid to see if it cancels the effects out.
    Back To Play & Bot RS07

  16. #16
    Join Date
    Oct 2011
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Main View Post
    am chinese and i don't like auto talkers. BUt if you make it yourself its cool, just don't tell us that you are making it.
    I'm making it for ingame flowering(bot), not for auto talkers like 10$=10M (i see them all day everyday, annoying as hell) u mean that right? Im not doing that.

    BTW Neros I did not ''derep'' you.
    Last edited by Haag; 06-11-2012 at 01:08 AM.

  17. #17
    Join Date
    Dec 2011
    Location
    011011011011
    Posts
    241
    Mentioned
    0 Post(s)
    Quoted
    25 Post(s)

    Default

    i mean auto talking in general, gambling is just as annoying.
    Last edited by Neros; 06-11-2012 at 01:09 AM.
    Quote Originally Posted by Markus View Post
    LSD RuneScape will be fun :P We must try some acid to see if it cancels the effects out.
    Back To Play & Bot RS07

  18. #18
    Join Date
    Oct 2011
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    @Runner, I did what you said exactly. Now I just doesnt load. It gets stuck after hitting ''Run''. Picture:
    http://img39.imageshack.us/img39/2359/roysimba6.png

    BTW Neros I did not ''derep'' you.

  19. #19
    Join Date
    Jan 2008
    Location
    C:\
    Posts
    1,483
    Mentioned
    2 Post(s)
    Quoted
    2 Post(s)

    Default

    Quote Originally Posted by Haag View Post
    @Runner, I did what you said exactly. Now I just doesnt load. It gets stuck after hitting ''Run''. Picture:
    http://img39.imageshack.us/img39/2359/roysimba6.png

    BTW Neros I did not ''derep'' you.
    Uhm... you removed SetupSRL and kept SmartSetupEx. Do the exact opposite

  20. #20
    Join Date
    Oct 2011
    Posts
    36
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Runaway View Post
    Uhm... you removed SetupSRL and kept SmartSetupEx. Do the exact opposite
    Now i got the same problem:

    Compiled successfully in 1311 ms.
    SRL Compiled in 15 msec
    SMART Initialized.
    Loaded: Server 10, Members: True, Signed: True, Super Detail: False.
    The following DTMs were not freed: [SRL - Lamp bitmap, 1]
    The following bitmaps were not freed: [SRL - Mod bitmap, SRL - Admin bitmap, SRL - Flag bitmap]

    code:
    program new;
    {$i SRL/SRL/Misc/SMART.simba}
    {$i SRL/SRL.simba}

    var
    ii : integer;

    Const
    Memberss = True;
    Textt = 'text';
    Times = 100000; // how many times to repeat.
    begin
    ii := 0;
    Smart_Server := 10;
    Smart_Members := Memberss;
    Smart_Signed := True;
    Smart_SuperDetail := False;
    SetupSRL;
    Writeln('Please Pause the Script and login');
    Writeln('Please Pause the Script and login');
    Writeln('Please Pause the Script and login');
    Writeln('Please Pause the Script and login');
    Wait(20000);
    while(not (LoggedIn)) do
    begin
    Wait(6000);
    Writeln('Still not logged in, Waiting......');
    End;
    Repeat
    Inc(ii);
    Wait(10);
    SendKeys(Textt,30);
    Wait(50)
    TypeByte(13);
    Until(ii > Times);
    end.

Thread Information

Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)

Posting Permissions

  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •