Results 1 to 7 of 7

Thread: first script.

  1. #1
    Join Date
    Aug 2007
    Posts
    53
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default first script.

    First Script I made for RS.
    Am I beyond Beginner?

    What can It do?
    • Kill a monster
    • Heal
    • Antiban
    • Antirandoms
    • Sexy Radial Walk if out of sight.

    Well anyway:
    Attachment 6373

  2. #2
    Join Date
    Dec 2006
    Location
    Sweden
    Posts
    10,812
    Mentioned
    3 Post(s)
    Quoted
    16 Post(s)

    Default

    Hmm... with your longlivity, looks nice for a first script, only a few things are 'messed up'.


    Send SMS messages using Simba
    Please do not send me a PM asking for help; I will not be able to help you! Post in a relevant thread or make your own! And always remember to search first!

  3. #3
    Join Date
    Aug 2007
    Posts
    53
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks, I'm still working on it, hoping to make it nearly perfect.

  4. #4
    Join Date
    Jul 2007
    Location
    Riding the escalator to heaven.
    Posts
    506
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    SCAR Code:
    begin
      writeln('Created by Wilio')
      wait(666);
      Writeln('Do not RIP >=(')
      wait(666);
      SetupSrl;
      SetVariables;
      SetBitMac;
      ScriptID := '273'
    end;
    huh nice loader
    Im a noob at scripting but i couldnt find any antiban, the random stuffings, and
    I looks good and even has multiplayer that makes me happy






  5. #5
    Join Date
    Aug 2007
    Posts
    53
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    That's what is not really complete. The multiplayer part is not done.
    At least it can:

    -fight monster
    -heal if needed
    -counter some randoms
    -radialwalk if monster out of sight.

    Let's cal this a beta.
    And shame on me, I totally forgot about Antiban.

    Edit: Added A simple AntiBan

  6. #6
    Join Date
    May 2007
    Location
    NSW, Australia
    Posts
    2,823
    Mentioned
    3 Post(s)
    Quoted
    25 Post(s)

    Default

    Ill tell you, wonderful first script

    Goodluck with future scripts.

  7. #7
    Join Date
    Jul 2007
    Location
    Right now? Chair.
    Posts
    8,488
    Mentioned
    3 Post(s)
    Quoted
    12 Post(s)

    Default

    i strongly suggest you remove this from the script:
    {///////////Contact/////////////}
    { To contact me by Email: }
    { Wrightri601@hotmail.com }
    { }
    { In Game: }
    { ******** }
    {///////////////////////////////}

    at least the ingame name. It's common knowledge and sense that jagex monitors this website, and they might ban or flag your accounts if they find your ingame username.

    ok, so i'm gonna post my comments on the whole script, do notice i'm not even close to being one of the best scripters around, so this advice won't be something like extremely useful, only my two cents
    pretty amazing for a first script btw

    procedure load+setvariables toguether
    less procedures makes the script faster.

    on procedure Login fighter you might want to make a couple changes,
    SCAR Code:
    begin
      loginplayer;
    to
    SCAR Code:
    begin
       if (not loggedin) then loginplayer;
    it's just a precaution in this case to make sure there isn't a player already logged in.

    writeln(players[currentplayer].Nick+' as loged in');
    has logged in. just a spelling mistake, not really a coding thing

    SCAR Code:
    sendkeys('...');
    i suggest you use TypeSend('...') instead, TypeSend is less detectable, but don't forget to include srl.scar if you do so!

    SCAR Code:
    begin
      case random(70) of
        1: RandomRClick;
        2:HoverSkill('Strenght',false);
        3:PickUpMouse;
        23:SayCurrentLevels('strength');
        5:SayCurrentLevels('attack');
        15:SayCurrentLevels('defence');
        7:AlmostLogOut;
        45:RandomMovement;
        9:BoredHuman;
      end
    end;

    well this is totally up to you, but i usually make a smaller random and make it do something no matter what number i get, even if it's just a wait to make sure it does some antiban activity

    also you missed a ";" after the first end which is not necessary, but it's standarts.

    ~ RMagician

    I & I know Zion. It is in the spirit, body and mind of every one of us
    RMouse(obj: TMSIObject): boolean;

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
  •