Results 1 to 8 of 8

Thread: setting scripts to work on 1 account?

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

    Default setting scripts to work on 1 account?

    guys im having problems with Scar

    HowManyPlayers := 4; // Set Number of Players here.
    NumberOfPlayers(HowManyPlayers); // Sets the Players Array Length;
    CurrentPlayer := 0;
    EquipPick := Players[CurrentPlayer].Boolean1;

    for some reason the script is made to play on multiple accounts, and i really just want to use it on one account and i tried changing"HowManyPlayers := 4"
    that to 1. but it gets an error. So can u guys help me please?

  2. #2
    Join Date
    Apr 2007
    Posts
    581
    Mentioned
    1 Post(s)
    Quoted
    2 Post(s)

    Default

    Set
    SCAR Code:
    HowManyPlayers:=1;

    And the start player should be '0'.

    Then goto the procedure

    SCAR Code:
    procedure DeclarePlayers;


    There should be something like

    SCAR Code:
    Players[0].Name:=''                                                                                                                          ;
    Players[0].Pass:=''                                                                                                                                 ;
    Players[0].Nick:=''                                                                                                                          ;
    Players[0].Active:=  True                                                                                                                   ;
    Players[0].Integer1:=100                                                                                                                              ;
    Players[0].String1:= ''                                                                                                                               ;

    Players[1].Name:=''                                                                                                                                   ;
    Players[1].Pass:=    ''                                                                                                                                    ;
    Players[1].Nick:=''                                                                                                                                      ;
    Players[1].Active:=True;                                                                                                                             ;
    Players[1].Integer1:=5;                                                                                                                                           ;
    Players[1].String1:='';

    ^^ That would be 2 players. And to do only 1 player, you have to get rid of the second one. So delete the one that says Players[1]. Then all you should have is something like

    SCAR Code:
    Players[0].Name:=''                                                                                                                          ;
    Players[0].Pass:=''                                                                                                                                 ;
    Players[0].Nick:=''                                                                                                                          ;
    Players[0].Active:=  True                                                                                                                   ;
    Players[0].Integer1:=100                                                                                                                              ;
    Players[0].String1:= ''                                                                                                                               ;

    Then try running it. ^_^

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

    Default

    You shouldn't macro on one account, but if you REALLY want to, pust { around all the unused player slots then change # to 1. Now it should work =)


    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!

  4. #4
    Join Date
    Aug 2006
    Posts
    408
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Just change Active = true to Active = False...

  5. #5
    Join Date
    Apr 2007
    Location
    Finland
    Posts
    938
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

  6. #6
    Join Date
    Apr 2007
    Posts
    3,152
    Mentioned
    3 Post(s)
    Quoted
    1 Post(s)

    Default

    ive autoed on only 1 acocunt for like a month with the same script and havent been vanned...not that i realy care if i lose the account

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

    Default

    orb of order.
    Mined 979 Essence.
    Mining level is 44
    Location is Bank.
    ----------------------------------------------

    ----------------------------------------------
    NextPlayer


    Guys i did fix my script for one player but it still wont mine my rune essence for ever =(. it only mined 979 then logged out!!

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

    Default

    Because you probobly got an unsolvable random, or the time expired, and it should log back in.


    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!

Thread Information

Users Browsing this Thread

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

Similar Threads

  1. Guide to setting up and running scripts with video aid.
    By Wanted in forum Outdated Tutorials
    Replies: 39
    Last Post: 09-15-2009, 09:04 AM
  2. Good account for testing scripts...etc etc
    By igotgrapes in forum News and General
    Replies: 5
    Last Post: 07-03-2008, 05:13 PM
  3. help with setting up scripts
    By sk8boyrider55 in forum OSR Help
    Replies: 16
    Last Post: 04-05-2008, 10:20 PM

Posting Permissions

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