Page 5 of 9 FirstFirst ... 34567 ... LastLast
Results 101 to 125 of 209

Thread: YoHoJo Video Tutorial #2: Making your VERY FIRST script for RUNESCAPE

  1. #101
    Join Date
    Jan 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Oh wow thanks for a quick reply :P
    Now I'm getting this?

    [Error] (23:5): Unknown identifier 'Pass' at line 22
    Compiling failed.

    program PowerChopper;

    //{$DEFINE SMART}
    {$i SRL\SRL.simba}

    Const
    Version = '1.0';
    SRLStats_UserID = ''; // Your SRL Stats username.
    SRLStats_Password = ''; // Your SRL Stats Password.
    BreakEvery = ''; // Break after how many minutes?
    BreakFor = ''; // Break for how long?


    procedure DeclarePlayers;
    begin
    HowManyPlayers := 1;
    NumberOfPlayers(HowManyPlayers);
    CurrentPlayer := 0;

    with Players[0] do
    Name :=''; // Username
    Pass :=''; // Password
    Nick :=''; // 3-4 letters of your username
    Active := True;
    Integers[1] := 25; // Number of loads
    Integers[2] := 5; //Seconds to try mining rock before clicking another.
    end;

    Function CheckAndClick(UpText:String X,Y:Integer; Stronger:Boolean):Boolean;
    Begin
    MMouse(x, y, 5, 5);
    If WaitUptext(upText, 1500+Random(500))
    Begin
    Resault:=True;
    GetMousePos(x, y);
    If RClick Then
    Begin
    Mouse(x, y, 0, 0, False);
    Resault:=WaitOption(Option, 2000);
    If Resault then FFlag(0);
    End Else
    Begin
    Mouse(x, y, 0, 0, True);
    Wait(100+Random(50));
    FFlag(0);
    End;
    End;
    End;

    Procedure AntiBan;
    Begin
    Case Random(250) Of
    0: Begin StatsGuise("Antiban") GameTab(tab_Stats) HoverSkill("Woodcut", False) GameTab(28) End;
    1: Begin StatsGuise("Antiban") SleepAndMoveMouse(7000 + Random(500)); End;
    2: Begin StatsGuise("Antiban") GameTab(tab_Inv) ExamineInv; GameTab(28) End;
    3: Begin StatsGuise("Antiban") RandomAngle(1); End;
    4: Begin StatsGuise("Antiban") GameTab(tab_Stats); Wait(3000 + Random(800)); End;
    5: Begin StatsGuise("Antiban") GameTab(tab_Stats) HoverSkill("random", False) GameTab(28) End;
    End;
    End;

    Procedure FailSafe(Reason:String);
    Begin;
    Players(CurrentPlayer).Loc:=Reason;
    Logout;
    Stats_Commit;
    //ProgressReport;
    TerminateScript;
    End;



    Function ChopDown:Boolean;
    Var
    X, Y: Integer;
    Begin
    If FindObjCustom(X, Y, ["Chop", "down", "p d"), [988693, 1055002, 1186845, 2240560], 30) Then
    WriteIn("Hooray, we found a tree!");
    End;



    Begin
    SetupSRL;
    DeclarePlayers;
    //Repeat
    ChopDown;
    //Until(false);

    End.

  2. #102
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    You need a Begin after the line with Players[0] do

    Also, make sure you space your stuff out properly like I do in the video!
    (Like 2 spaces after each line after a begin, etc)

  3. #103
    Join Date
    Jan 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks but yea I did do the spaces except when i pasted it they got deleted -.-

  4. #104
    Join Date
    Jan 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Don't worry I got it :P
    Last edited by X I I V; 02-12-2012 at 02:04 PM.

  5. #105
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    ; After String

    String;

  6. #106
    Join Date
    Jan 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Alright hopefully last thing...

    [Error] (36:3): 'THEN' expected at line 35
    Compiling failed.

  7. #107
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    need a than after
    If WaitUptext(upText, 1500+Random(500))

    After that you spelled Result wrong a bunch of times, so fix those.

    Then says something about this line:

    If RClick Then

    So read my code better, and copy it exactly .

    I must go now, good luck!

  8. #108
    Join Date
    Jan 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thanks so much bro, repped

  9. #109
    Join Date
    Jan 2012
    Posts
    7
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Getting this error...
    This is the error message:

    [Hint] (82:10): Variable 'Result' never used at line 81
    Compiled successfully in 1112 ms.
    SRL Compiled in 10 msec
    Successfully executed.

    And here is the script
    program PowerChopper;

    //{$DEFINE SMART}
    {$i SRL\SRL.simba}

    Const
    Version = '1.0';
    SRLStats_UserID = ''; // Your SRL Stats username.
    SRLStats_Password = ''; // Your SRL Stats Password.
    BreakEvery = ''; // Break after how many minutes?
    BreakFor = ''; // Break for how long?


    procedure DeclarePlayers;
    begin
    HowManyPlayers := 1;
    NumberOfPlayers(HowManyPlayers);
    CurrentPlayer := 0;

    with Players[0] do
    Begin;
    Name :=''; // Username
    Pass :=''; // Password
    Nick :=''; // 3-4 letters of your username
    Active := True;
    Integers[1] := 25; // Number of loads
    Integers[2] := 5; //Seconds to try mining rock before clicking another.
    End;
    End;

    Function CheckAndClick(UpText, Option:String; X,Y:Integer; RClick:Boolean):Boolean;
    Begin
    MMouse(X, Y, 5, 5);
    If WaitUptext(UpText, 1500+Random(500)) Then
    Begin
    Result:=True;
    GetMousePos(X, Y);
    If RClick Then
    Begin
    Mouse(X, Y, 0, 0, False);
    Result:=WaitOption(Option, 2000);
    If Result then FFlag(0);
    End Else
    Begin
    Mouse(X, Y, 0, 0, True);
    Wait(100+Random(50));
    FFlag(0);
    End;
    End;
    End;

    Procedure StatsGuise(wat:String);
    Begin
    Status(wat);
    Disguise(wat);
    End;

    Procedure Antiban;
    Begin
    Case Random(250) Of
    0: Begin StatsGuise('AntiBan') GameTab(tab_stats) HoverSkill('Woodcut', false); Gametab(28); End;
    1: Begin StatsGuise('AntiBan') SleepAndMoveMouse(7000 + Random(500)); End;
    2: Begin StatsGuise('AntiBan') GameTab(tab_Inv) ExamineInv; GameTab(28) End;
    3: Begin StatsGuise('AntiBan') RandomAngle(1); End;
    4: Begin StatsGuise('AntiBan') GameTab(tab_Stats); Wait(3000 + Random(800)); End;
    5: Begin StatsGuise('AntiBan') GameTab(tab_Stats) HoverSkill('random', False) GameTab(28) End;
    End;
    End;

    Procedure FailSafe(Reason:String);
    Begin;
    Players[CurrentPlayer].Loc:=Reason;
    Logout;
    Stats_Commit;
    //ProgressReport;
    TerminateScript;
    End;



    Function ChopDown:Boolean;
    Var
    treeX, treeY, PlusOne, TreeCounter: Integer;
    Begin
    PlusOne:= InvCount +1;
    If FindObjCustom(treeX, treeY, ['Chop', 'down', 'p d'], [1252636, 1055002], 10) Then
    Begin
    StatsGuise('Hooray, we found a tree!');
    GetMousePos(treeX, treeY);
    Case Random(1) Of
    0: Mouse(treeX, treeY, 5, 5, True);
    1: Begin
    Mouse(treeX, treeY, 5, 5, False);
    ChooseOption('Chop');
    WaitOption('Chop', 500);
    End;
    End;

    Repeat;
    MarkTime(TreeCounter);
    Antiban;
    Wait(100);
    If InvCount=Plusone Then
    Writeln('We got one');
    Until (InvCount=Plusone) Or (TimeFromMark(TreeCounter) > 7000)

    End;
    End;



    Begin
    SetupSRL;
    DeclarePlayers;
    SetAngle(SRL_ANGLE_LOW);
    //Repeat
    ChopDown;
    //Until(false);

    End.

  10. #110
    Join Date
    Dec 2011
    Posts
    28
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Well basically here's my error. Instead of just hovering to one tree and saying "we found a tree", it instead hovers over a tree, then another, and another... eventually going onto different colors (like the Runescape client frames and stuff), and then just spazzes out and leaves the window and goes to my start button and gets stuck there.

    Code:
    program Chopps;
    //{$DEFINE SMART}
    {.include SRL\SRL.simba}
    {.Include SRL\SRL\Misc\Debug.simba}
    
    Const
     SRLStats_Username = ''; // Your SRL Stats Username
     SRLStats_Password = ''; // Your SRL Stats Password
     BreakEvery        = 120;
     Breakfor          = 5;
     Version           = '1.0';
     NumbOfPlayers= 1;     //How many players are you using
     StartPlayer=   0;     //Player to start auoting with! (0 means first char)
    
    
    
    
    procedure DeclarePlayers;
    var i:integer;
    begin
      NumberOfPlayers(NumbOfPlayers);
      CurrentPlayer := StartPlayer;
      for i := 0 to NumbOfPlayers-1 do
        Players[i].BoxRewards  := ['mote', 'ostume', 'XP', 'Gem', 'ithril', 'oal', 'une', 'oins'];
    
      with Players[0] do
      begin
        Name        := '';     //Player username.
        Pass        := '';     //Player password.
        Nick        := ''; //Player nickname - 3-4 letters of Player username.
        Active      := True;
        Integers[1] := 4;       //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
        Integers[2] := 4;      //Seconds to try mining rock before clicking another.
      end;
    
    end;
    
    Procedure StatsGuise(wat:String);
    Begin
      Status(wat);
      Disguise(wat);
    End;
    
    Procedure Antiban;
    Begin
      Case Random(192) Of
        0: HoverSkill('Mining', False);
        1: Begin PickUpMouse; SleepAndMoveMouse(3000 + Random(500)); End;
        2: ExamineInv;
        3: RandomAngle(1);
        4: Begin GameTab(Tab_Stats); Wait(3000 + Random(500)); GameTab(Tab_Inv); End;
        5: HoverSkill('random', False);
      End;
    End;
    
    Function CheckAndClick(X,Y:Integer):Boolean;
    Begin
      MMouse(x, y, 5, 5);
      {Wait(100 + Random(50));
      If CountUpColor('B', 41, 5, 86, 24, 70, 140) Then}
      If WaitUpTextMulti(['Mine','ine'], 150) Then
      Begin
        Result:=True;
        GetMousePos(x, y);
        Mouse(x, y, 0, 0,True);
        Wait(100+Random(50));
        FFlag(0);
      End;
    End;
    
    Procedure FailSafe(Reason:String);
    Begin;
      Players[CurrentPlayer].Loc:=Reason;
      Logout;
      Stats_Commit;
      //ProgressReport;
      TerminateScript;
    End;
    
    Function ChopDown: BooLean;
    Var
      x, y: Integer;
    
    Begin
        //FindObjCustom(x, y, ['att', 'ack'], [123456, 345678], 5);
      if FindObjCustom(x, y, ['Chop', 'down'], [1055001 , 1911853, 1845288, 1252379  ], 15) Then
      WriteLn('Yea i found a tree');
      End;
    
    
    
    Begin
    
      SetupSRL;
      DeclarePlayers;
      //Repeat
        Chopdown;
      //Until(False);
    
    End.
    And this is the debug box:

    Code:
    Hint] (72:10): Variable 'Result' never used at line 71
    Compiled successfully in 858 ms.
    SRL Compiled in 15 msec
    Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.
    Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.
    Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.
    Warning! You passed a wrong ys to a finder function: -5. That is below 0, thus out of bounds. Setting the value to 0 for now.
    Help please and thank you :P <3

  11. #111
    Join Date
    Feb 2012
    Location
    US
    Posts
    83
    Mentioned
    0 Post(s)
    Quoted
    17 Post(s)

    Default

    THANK YOU YOHOJO! I have become slightly enlightened to the various functions and procedures offered by SRL and Simba! Off to read more tutorials!

    Really appreciated this I might start off with something easier... say a fletcher or something.

  12. #112
    Join Date
    Feb 2012
    Posts
    4
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I have no clue what I'm doing wrong with the codes. I'm trying to make the script that'll pick flax for me, then bank the inventory full (Which I haven't written yet. ): ). While I've had the tests going, it seems to like to open up "text.simba" or "inventory.simba", causing the script to screw up.

    Any Suggestions?

    Simba Code:
    program Cats;
    //{$DEFINE SMART}
    {.include SRL\SRL.simba}
    {.Include SRL\SRL\Misc\Debug.simba}

    Const
     SERVER            = '72';  // Enter "0" to pick a random server.
     SRLStats_Username = '';    // Your SRL Stats Username.
     SRLStats_Password = '';    // Your SRL Stats Password.
     NumbOfPlayers     = 1;     //How many players are you using
     StartPlayer       = 0;   //Player to start auoting with! (0 means first char)
     BreakEvery        = 120;   // Break interval.
     BreakFor          = 5;     // Break time.
     Version           = '1.0';




    procedure DeclarePlayers;
    var i:integer;
    begin
      NumberOfPlayers(NumbOfPlayers);
      CurrentPlayer := StartPlayer;
      for i := 0 to NumbOfPlayers-1 do
        Players[i].BoxRewards  := ['ostume', 'ithril', 'lay'];

      with Players[0] do
      begin
        Name        := '';     //Player username.
        Pass        := '';     //Player password.
        Active      := True;
      end;

    end;



    Procedure StatsGuise(wat:String);
    Begin
      Status(wat);
      Disguise(wat);
    End;


    Function CheckAndClick(X,Y:Integer):Boolean;
    Begin
      MMouse(x, y, 5, 5);
      {Wait(100 + Random(50));
      If CountUpColor('B', 41, 5, 86, 24, 70, 140) Then}

      If WaitUpTextMulti(['Pic','ick'], 150) Then
      Begin
        Result:=True;
        GetMousePos(x, y);
        Mouse(x, y, 0, 0,True);
        Wait(100+Random(50));
        FFlag(0);
      End;
    End;

    Procedure Antiban;
    Begin
      Case Random(192) Of
        0: HoverSkill('Craft', False);
        1: Begin PickUpMouse; SleepAndMoveMouse(3000 + Random(500)); End;
        2: ExamineInv;
        3: RandomAngle(1);
        4: Begin GameTab(Tab_Stats); Wait(3000 + Random(500)); GameTab(Tab_Inv); End;
        5: HoverSkill('random', False);
      End;
    End;

    Procedure FailSafe(Reason:String);
    Begin
      Players[CurrentPlayer].Loc:=Reason;
      Logout;
      Stats_Commit;
      // ProgressReport;
      TerminateScript;
    End;



    Function PickFlax:Boolean;
    Var
      x, y, PlusOne: Integer;
    Begin
      PlusOne:= InvCount +1;
      If FindObjCustom(x, y, ['Flax', 'ick', 'Pic'], [14474423, 4877641, 12429665, 15592920, 2966317], 30) Then
      Begin
        StatsGuise('Flax Found!')
        WriteLn('Flax Found!');
        GetMousePos(x, y);

        Case Random(2) Of
         0: Mouse(x, y, 5, 5, True);
         1: Begin
              Mouse(x, y, 5, 5, False);
              WaitOption('Pick', 500);
             End;
        End;

         Repeat
            Antiban;
            Wait(100);
            If InvCount=PlusOne Then
               Writeln('Flax Obtained!');
         Until (InvCount=Plusone)

      End;
    End;










    begin

      SetupSRL;
      DeclarePlayers;
      Repeat
        PickFlax;
      Until(false);

    end.

    Debug Console:
    [Hint] (87:10): Variable 'Result' never used at line 86
    Compiled successfully in 1234 ms.
    SRL Compiled in 0 msec
    Flax Found!
    Error: Exception: Out of memory at line 801
    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]
    Last edited by t4nner; 02-18-2012 at 08:15 PM.

  13. #113
    Join Date
    Nov 2011
    Posts
    24
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I freaking love this community! The day I realize that I really want to learn scripting I find these tuts and Coh3n's beginners tuts and there is just so much info! It has helped so much and I actually understand! Thank you so much!
    It's not brainfreeze. It's Flavo-Masochism.

  14. #114
    Join Date
    Mar 2007
    Location
    Brisbane, AUS
    Posts
    305
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    gonna watch them tommo when i have time, i appericate it thankyou ill post back what i learnt =o

  15. #115
    Join Date
    Oct 2008
    Location
    Hawaii
    Posts
    228
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Your tutorials are amazing, I have gotten the basics down.

  16. #116
    Join Date
    Dec 2011
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    I love you man! Part 1 down, Part 2 to go!



    Edit: I haven't a clue why this won't compile, says mismatch at line 105:

    Simba Code:
    program Chopper;
    //{$DEFINE SMART}
    {$i SRL\SRL.simba}


    Const
    SRLStats_Username = ''; // Your SRL Stats Username
    SRLStats_Password = ''; // Your SRL Stats Password
    BreakEvery= 120;
    Breakfor= 5;
    Version= '1.0Beta';
    NumbOfPlayers=1;
    StartPlayer=0;



    procedure DeclarePlayers;
    var i:integer;
    begin
    NumberOfPlayers(NumbOfPlayers);
    CurrentPlayer := StartPlayer;
    for i := 0 to NumbOfPlayers-1 do
    Players[i].BoxRewards := ['mote', 'ostume', 'XP', 'Gem', 'ithril', 'oal', 'une', 'oins'];

    with Players[0] do
    begin
      Name := ''; //Player username.
      Pass := ''; //Player password.
      Nick := ''; //Player nickname - 3-4 letters of Player username.
      Active := True;
      Integers[1] := 4; //1=BrightCopper,2=DarkCopper,3=Tin,4=Iron.
      Integers[2] := 4; //Seconds to try mining rock before clicking another.
    end;

    end;

    Procedure StatsGuise(wat:String);
    Begin
    Status(wat);
    Disguise(wat);
    End;

    Procedure Antiban;
    Begin
    Case Random(250) Of
    0: Begin StatsGuise('Antiban') GameTab(tab_Stats) HoverSkill('Woodcutting', False) GameTab(28) End;
    1: Begin StatsGuise('Antiban') SleepAndMoveMouse(7000 + Random(500)); End;
    2: Begin StatsGuise('Antiban') GameTab(tab_Inv) ExamineInv; GameTab(28) End;
    3: Begin StatsGuise('Antiban') RandomAngle(1); End;
    4: Begin StatsGuise('Antiban') GameTab(tab_Stats); Wait(3000 + Random(800)); End;
    5: Begin StatsGuise('Antiban') GameTab(tab_Stats) HoverSkill('random', False) GameTab(28) End;
    End;
    End;


    Function ChopDown:Boolean;
    Var
      Sex, SeY, PlusOne, TreeCounter: Integer;
    Begin
    PlusOne:= InvCount +1;
    Sex:=MSCX;
    Sey:=MSCY;
      If FindObjTPA(Sex, Sey, 3161417, 5, 1, 15, 60, 40, ['Cho']) Then
      begin
        StatsGuise('Hooray we found a tree!');
        GetMousePos(seX, Sey);
        Case Random(2) of
          0: Mouse(seX, seY, 5, 5, True);
          1: begin
                Mouse(seX, seY, 5, 5, False);
                WaitOption('Chop', 500);
             end;
        end;

        Flag;


        repeat
          MarkTime(TreeCounter);
          Antiban;
          wait(500);
          If InvCount=PlusOne Then
            WriteLn('We got a log!');
        Until (InvCount=PlusOne) Or (TimeFromMark(TreeCounter) > 7000)
      end;
    end;


    Procedure DropLogs;
    var
      sex, sey, LogDTM, I:Integer;
      SlotBox:TBox;
      LogPattern:TIntegerArray;

    begin
      LogDTM := DTMFromString('mwQAAAHic42RgYJjGxMDQC8SdQDwBiOcA8RIgXgDFM4H4CVDdXSB+BsQfgfgtEL8C4sdAfAeIbwNxkK0KQ5ClJEN9mjmQxwTG9vrSYNrRUIbB10qJgRD4D8SMRGA4AADbsBK7');
      LogPattern:=[1,5,9,13,17,21,25,2,6,10,14,18,22,26,3,7,11,15,19,23,27,4,8,12,16,20,24,28];

      For I:=0 To 27 Do
      begin
        SlotBox:=InvBox(LogPattern[I]);
        If FindDTm(LogDTM, sex, sey, SlotBox.X1, SlotBox.Y1, SlotBox.X2, SlotBox.Y2) Then
        begin

          MouseItem(LogPattern[I],False);
          ChooseOption('dro');

        end;
      end;

    end;




    Begin


    SetupSRL;
    DeclarePlayers;
    Repeat;
    ChopDown;
    If InvFull Then
      DropLogs;
    Until (false)

    End.

    [Hint] (57:10): Variable 'Result' never used at line 56
    [Error] (106:37): Type mismatch at line 105
    Compiling failed.
    Last edited by ILikeSmoothHeads; 02-22-2012 at 07:58 PM.

  17. #117
    Join Date
    Feb 2006
    Location
    Tracy/Davis, California
    Posts
    12,631
    Mentioned
    135 Post(s)
    Quoted
    418 Post(s)

    Default

    Change
    MouseItem(LogPattern[I],False);
    to like
    MouseItem(LogPattern[I],SRL_MOUSE_RIGHT);

    I think would fix it. SRL updated and changed a few things.

  18. #118
    Join Date
    Dec 2011
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks, SRL_MOUSE_RIGHT was unknown but MOUSE_RIGHT worked. Thanks alot
    Last edited by ILikeSmoothHeads; 02-23-2012 at 05:07 PM.

  19. #119
    Join Date
    Feb 2012
    Location
    Texas
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Thanks, because i cant understand anything when i only read it.

  20. #120
    Join Date
    Dec 2011
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    MOUSE_RIGHT compiled, but now when I run it, when the inventory is full, it doesn't do anything, just stops and runs antibans forever?

    Heyy, the dropping doesn't work, my script is as I posted above except it now says MOUSE_RIGHT where false was. Please help, I really want to finidh this script...

    bump...can anyone else help if anyone has had the same problem as me?
    Last edited by Hobbit; 02-28-2012 at 02:13 AM. Reason: Merge

  21. #121
    Join Date
    Feb 2012
    Posts
    16
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    i have the same problem let me research it a bit more

  22. #122
    Join Date
    Feb 2012
    Location
    DON'T PM ME ASKING FOR STUFF
    Posts
    2,170
    Mentioned
    38 Post(s)
    Quoted
    423 Post(s)

    Default

    Smooth can you post this in it's own thread or PM Yohojo please... what your doing is considered Spam

  23. #123
    Join Date
    Dec 2011
    Location
    Nj
    Posts
    2,341
    Mentioned
    1 Post(s)
    Quoted
    18 Post(s)

    Default

    Hey YoHoJo, This Tut, has inspired me to make my own RuneScape Script.
    Could you answer some questions please?
    When using a DTM on a MiniMap, would it go like this:
    if FindDtm(BankDtm,x,y) //Where BankDtm is my dtm, and x,y are the co ordinates
    This is probably wrong. Can you give some advice?

    For the basics of the basics of pascal, try my TuT. ||Photoshop Editing ||MapleResourceDung Script || Book a flight! BuySellTrip

  24. #124
    Join Date
    Jan 2011
    Posts
    46
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Would you mind uploading your tutorial chopper on this forum for learners reference? Think it will be great help for me

  25. #125
    Join Date
    Jan 2011
    Posts
    46
    Mentioned
    0 Post(s)
    Quoted
    2 Post(s)

    Default

    Scripting Tutorial #2 (1/2): Creating Your First Runescape Script

    At 02:30 of the video, you said that all this basic functions that are usually the same can be copypasted from another script, but you didn't provide an example of the 'another script' nor your 'pms' folder and make us type out all these basic function ourselves. lols

Page 5 of 9 FirstFirst ... 34567 ... LastLast

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
  •