is this script good so far?

Discussion in 'Scar/Simba General Discussion' started by akwardsaw5, May 1, 2007.

is this script good so far?
  1. Unread #1 - May 1, 2007 at 8:53 PM
  2. akwardsaw5
    Referrals:
    0

    akwardsaw5 Guest

    is this script good so far?

    program New; {.include SRL/SRL.scar}
    begin
    HowManyPlayers :=1;
    NumberOfPlayers(HowManyPlayers);
    CurrentPlayer:=1;

    Players[0].Name :='akwardsaw5';
    Players[0].Pass :='********';
    Players[0].Nick :='ward';
    Players[0].Loc :='draynor';
    Players[0].Skill:='Willow';
    Players[0].Active:=True;

    TUser = record
    Name: String;
    Pass: String;
    Nick: String;
    Active: Boolean;
    Loc: String;
    Skill: String;
    Level [1..22]: Array of Integer;
    ore; string;
    fight: Boolean;
    Worked: Integer;
    Banked: Integer;
    Killer: Integer;
    end;

    repeat

    if Players[CurrentPlayer].loc='draynor' then
    begin
    WalkToWillow;
    end;

    if Players[CurrentPlayer].Loc='Draynor' then
    begin
    repeat
    Chop;
    if (not(Loggedin)) then break;
    until(InventoryFull)

    WalkToFalador;
    Bank;
    ProgressReport;
    end;

    if ((LoggedIn) and (Players[CurrentPlayer].Banked mod Loads = 0)) then
    begin
    SetChat('off', 1);
    repeat
    Wait(1000);
    FindRandoms;
    until(not(LoggedIn));
    NextPlayer(false);
    end;

    if (not(Loggedin)) then NextPlayer(true);
    until(false);

    procedure RotateEvery(mins: 5);
    procedure RandomRClick;
    procedure LeaveScreenEvery(mins: 3);
    procedure HoverEvery(mins: Integer;10 skill: String); woodcutting
    end.

    begin
    var TestColor, a, b, GenericColor: Integer;
    function FindWaterColor: Integer;
    function FindTreeColor: Integer;
    function AutoColorThis(Bitmap, MaxTol, X1, Y1, X2, Y2: Integer): Integer;
    procedure PerfectNorth;






    when i clicked run ( i knew it wont work any way) but it said there is an error on line 3. any one wanna tell me whats wronge. also tell me what to edit with it so far( i do full understand that i still have a way lot more work to do on it.
     
  3. Unread #2 - May 1, 2007 at 8:56 PM
  4. crapkiller
    Joined:
    Jul 19, 2006
    Posts:
    426
    Referrals:
    0
    Sythe Gold:
    0

    crapkiller Forum Addict

    is this script good so far?

    You have 1 player... not 0... HowManyPlayers := 1; CurrentPlayer := 0;

    GET IT RIGHT lol
     
  5. Unread #3 - May 1, 2007 at 8:58 PM
  6. akwardsaw5
    Referrals:
    0

    akwardsaw5 Guest

    is this script good so far?

    =] i did try that but it still says error on line 3

    and this is also my first script and such. so lay back

    the error is unknown identifier for "HowManyPlayers"
     
  7. Unread #4 - May 1, 2007 at 9:38 PM
  8. r0b0t1
    Joined:
    Jan 23, 2007
    Posts:
    124
    Referrals:
    0
    Sythe Gold:
    0

    r0b0t1 Active Member

    is this script good so far?

    Const
    HowManyPlayers:= 1
     
  9. Unread #5 - May 1, 2007 at 9:41 PM
  10. Zane2006
    Joined:
    Jan 21, 2007
    Posts:
    576
    Referrals:
    1
    Sythe Gold:
    5

    Zane2006 Forum Addict

    is this script good so far?

    Whats it supposed to do?
     
  11. Unread #6 - May 1, 2007 at 10:07 PM
  12. akwardsaw5
    Referrals:
    0

    akwardsaw5 Guest

    is this script good so far?

    woodcut willows. and i changed it to the thing but it "still" says the same thing.....
     
  13. Unread #7 - May 2, 2007 at 2:06 AM
  14. Recarnation
    Joined:
    Apr 18, 2007
    Posts:
    151
    Referrals:
    0
    Sythe Gold:
    0

    Recarnation Active Member
    Banned

    is this script good so far?

    Change the top to:

    Code:
    program New;  
    
    {.include SRL/SRL.scar}
    
    procedure DeclarePlayers;
    
    HowManyPlayers  :=1;
         NumberOfPlayers(HowManyPlayers);
         CurrentPlayer:=0;
    and add DeclarePlayers; somwhere in your main loop around, well basicly the top of the loop and have at least 3 players to bot, otherwise you get banned eazy.
     
  15. Unread #8 - May 2, 2007 at 9:02 AM
  16. akwardsaw5
    Referrals:
    0

    akwardsaw5 Guest

    is this script good so far?

    ok... i guess i h ave to go and train my newb accts eh? =p but ill try what you said and keep working on it when i have 'enough' acounts
     
  17. Unread #9 - May 2, 2007 at 9:48 AM
  18. Gofez0r
    Joined:
    Jan 21, 2007
    Posts:
    1,820
    Referrals:
    1
    Sythe Gold:
    0

    Gofez0r Guru

    is this script good so far?

    Dont comment if u dont know what ur talking about, fool.

    Now all u need is procedures and functions there :p and BTW it looks ok.
     
  19. Unread #10 - May 2, 2007 at 9:06 PM
  20. Xjaa
    Joined:
    Jan 21, 2007
    Posts:
    3,248
    Referrals:
    2
    Sythe Gold:
    0
    Lawrence Potamus

    Xjaa Penguin
    $100 USD Donor

    is this script good so far?

    If this is your script and you cant set up players?

    or did I make a mistake,
     
  21. Unread #11 - May 2, 2007 at 9:53 PM
  22. akwardsaw5
    Referrals:
    0

    akwardsaw5 Guest

    is this script good so far?

    hmm... i cant under stand
     
  23. Unread #12 - May 2, 2007 at 10:01 PM
  24. WoW_Owns
    Joined:
    May 2, 2007
    Posts:
    338
    Referrals:
    0
    Sythe Gold:
    0

    WoW_Owns Forum Addict
    Banned

    is this script good so far?

    Doesn't work for me.
     
  25. Unread #13 - May 3, 2007 at 9:07 AM
  26. akwardsaw5
    Referrals:
    0

    akwardsaw5 Guest

    is this script good so far?

    its not even finished =] i have to figure out how to make it click on colours...
     
  27. Unread #14 - May 3, 2007 at 9:45 AM
  28. Gofez0r
    Joined:
    Jan 21, 2007
    Posts:
    1,820
    Referrals:
    1
    Sythe Gold:
    0

    Gofez0r Guru

    is this script good so far?

    I can help u with it ;) Pm me ur msn, i wont post mine here because i get too many too stupid people talk to me, and theres idiots freezing msn addresses.
     
< wtf this is pissing me off | SOme one please look and HELP! >

Users viewing this thread
1 guest


 
 
Adblock breaks this site