Results 1 to 12 of 12

Thread: not a full script.. my first procedure

  1. #1
    Join Date
    Apr 2007
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default not a full script.. my first procedure

    SCAR Code:
    procedure Antiban;
    begin
      if not LoggedIn then Exit;
      case Random(13) of
        0: begin
               case Random(7) of
                    0: HoverSkill('Ranged', False);
                    1: HoverSkill('Fletching', False);
                    2: HoverSkill('Attack', False);
                    3: HoverSkill('Crafting', False);
                    4: HoverSkill('Smithing', False);
                    5: HoverSkill('Summoning', False);
                    6: HoverSkill('Slayer', False);
               end;
               writeln('Preformed Antiban "HoverSkill". ')
           end;
        1: begin
               GameTab(3 + Random(8));
               wait(1000 + random(800));
               GameTab(4);
               writeln('Preformed Antiban "GameTab swap". ')
           end;
        2: begin
               BoredHuman;
               writeln('Preformed Antiban "Bored Human". ')
           end
        3: begin
               MessageFriendEx(Friend[i], 'Hey nub.');
               writeln('Preformed Antiban "Msg Friend". ')
           end
        4:begin
               DoEmote(Random(36));
               writeln('Preformed Antiban "Random Emote". ')
          end;
      end;
    end;
    idk if i did anything right..

    SCAR Code:
    MessageFriendEx(Friend[i], 'Hey nub.');
    for that.. i was thinking int he declare player or whatnot.. you can put the friends name.. idk so that all your players aren't msg'ing the same person. maybe do the same thing for the msg, might look a little suspicious having all your guys saying "hey nub".

    Any suggestions or anything?
    Would anyone be willing to teach me a few things over msn or Aim? just add/msg me on there. plz and thanks.

  2. #2
    Join Date
    Sep 2008
    Location
    Aussie mate
    Posts
    411
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ok, Anti-Ban is pretty simple to make , but good job. your standards look alright + i like the little msg "hello nub", my suggestion is maybe add in a different message, or even replies. or just turn p chat off
    IM BACK!!!!!!!!!!!!!!!!!

  3. #3
    Join Date
    Apr 2007
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by joelster134 View Post
    Ok, Anti-Ban is pretty simple to make , but good job. your standards look alright + i like the little msg "hello nub", my suggestion is maybe add in a different message, or even replies. or just turn p chat off
    Thanks for the reply, yeah i was thinking of having multiple msg's and maybe set up a little chat.. maybe make it so i can play my main.. and then auto and have convo with my bot to make it seem as if it wasnt botting. so maybe if i said a certain key word it would react to that word. and reply with a preset msg depending on that word.
    only prob is i have NO idea how that would be done.
    Would anyone be willing to teach me a few things over msn or Aim? just add/msg me on there. plz and thanks.

  4. #4
    Join Date
    Sep 2008
    Location
    Aussie mate
    Posts
    411
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Lol, ill post an example one after school. also you could make it just do a emote when a chat msg/general msg shows up so it could be muted? just ideas
    IM BACK!!!!!!!!!!!!!!!!!

  5. #5
    Join Date
    Jan 2008
    Location
    NC, USA.
    Posts
    4,429
    Mentioned
    0 Post(s)
    Quoted
    4 Post(s)

    Default

    Quote Originally Posted by joelster134 View Post
    Ok, Anti-Ban is pretty simple to make , but good job. your standards look alright + i like the little msg "hello nub", my suggestion is maybe add in a different message, or even replies. or just turn p chat off
    I dissagree with turning the chat off. Every account that I have done that with, has been banned.

    And s/he's doing well if the person already understands cases', am I right?
    I didn't learn them until a little bit ago.
    Quote Originally Posted by irc
    [00:55:29] < Guest3097> I lol at how BenLand100 has become noidea
    [01:07:40] <@BenLand100> i'm not noidea i'm
    [01:07:44] -!- BenLand100 is now known as BenLand42-
    [01:07:46] <@BenLand42-> shit
    [01:07:49] -!- BenLand42- is now known as BenLand420
    [01:07:50] <@BenLand420> YEA

  6. #6
    Join Date
    Sep 2008
    Location
    Aussie mate
    Posts
    411
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Ive been using an army for a few months now with no chatting , no bans at all. but yeah isee where your coming from. was just a suggestion
    IM BACK!!!!!!!!!!!!!!!!!

  7. #7
    Join Date
    Apr 2007
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by noidea View Post
    I dissagree with turning the chat off. Every account that I have done that with, has been banned.

    And s/he's doing well if the person already understands cases', am I right?
    I didn't learn them until a little bit ago.
    lol he, and thanks. i understand cases cause i used them while coding in vb6 and c++ so the basic idea is the same.. just different syntax.

    and yes. i just feel if there is a person thats not talking in normal OR private.. it kinda looks as if its not a real person.
    Would anyone be willing to teach me a few things over msn or Aim? just add/msg me on there. plz and thanks.

  8. #8
    Join Date
    May 2008
    Posts
    1,345
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey, just two things I've spotted/wondered.

    First, you spelled Performed wrong :P.

    Second, is it possible to make a case in a case?

    Like this:

    SCAR Code:
    Case Random(5) Of

    0: TypeSend('Text here');

    1: Case Random(5) Of
        0: begin
               MessageFriendEx(Friend[i], 'Hey nub.');
               writeln('Preformed Antiban "Msg Friend". ')
        1:  begin
               MessageFriendEx(Friend[i], 'Whats up?.');
               writeln('Preformed Antiban "Msg Friend". ')

    Etc.

  9. #9
    Join Date
    Apr 2007
    Posts
    17
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Sand Storm View Post
    Hey, just two things I've spotted/wondered.

    First, you spelled Performed wrong :P.

    Second, is it possible to make a case in a case?

    Like this:

    SCAR Code:
    Case Random(5) Of

    0: TypeSend('Text here');

    1: Case Random(5) Of
        0: begin
               MessageFriendEx(Friend[i], 'Hey nub.');
               writeln('Preformed Antiban "Msg Friend". ')
        1:  begin
               MessageFriendEx(Friend[i], 'Whats up?.');
               writeln('Preformed Antiban "Msg Friend". ')

    Etc.
    well if you can't have a case in a case thats kinda lame.. it should work just like nested if's and lol i suck
    Would anyone be willing to teach me a few things over msn or Aim? just add/msg me on there. plz and thanks.

  10. #10
    Join Date
    Oct 2008
    Location
    I Forgot
    Posts
    193
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  11. #11
    Join Date
    Sep 2007
    Posts
    638
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I like it. I never even thought of having cases nested inside of other cases. This is a lot more advanced scripting than you usually see in first scripts section. I am glad that you took the time to do more than

    SCAR Code:
    program FirstScript;
    begin
    WriteLn('W00t');
    end.

    H3y 3v3ry b0dy l00k 4t m3 1 c4n scrip7 sw337!!!!11!!1

  12. #12
    Join Date
    Nov 2008
    Location
    elyria
    Posts
    10
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ill give u an example send me this in a message to my email impisforrs3@yahoo.com

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. 24/7 Full Time Script Test Corner
    By HellBoyz in forum Blogs and Writing
    Replies: 11
    Last Post: 04-23-2008, 12:34 AM
  2. 24/7 Full Time Script Test Corner
    By HellBoyz in forum Blogs and Writing
    Replies: 0
    Last Post: 04-16-2008, 01:08 AM
  3. Replies: 3
    Last Post: 03-31-2007, 02:34 AM

Posting Permissions

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