Results 1 to 13 of 13

Thread: Help!!!!!

  1. #1
    Join Date
    Jan 2011
    Posts
    24
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default Help!!!!!

    How do you make the mouse right click???

  2. #2
    Join Date
    Nov 2010
    Location
    Australia
    Posts
    1,472
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Use ClickMouse2(false); or Mouse(x, y, randx, randy, false); if you want to move the mouse and click

  3. #3
    Join Date
    Jan 2011
    Posts
    24
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    ok thanx also is there a way to get ur exact map location, as if you was making a path for it.

  4. #4
    Join Date
    Jan 2010
    Posts
    1,414
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Reflection:
    Simba Code:
    if TileOnMS(Point(0, 0), 0) then // Use TileOnMM, if you prefer. MS = Mainscreen, MM = Minimap
    begin
      WriteLn('We have found the location!')
    end else
      WriteLn('We were unable to find the location!');
    Last edited by RISK; 01-15-2011 at 06:49 AM.

  5. #5
    Join Date
    Nov 2010
    Location
    Australia
    Posts
    1,472
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Quote Originally Posted by gsa serpent View Post
    ok thanx also is there a way to get ur exact map location, as if you was making a path for it.
    Do you want to get your tile location? If so then do this:

    Simba Code:
    procedure getme;
    var
      Me : TMe;
    begin
      Me := GetMe;
      writeln(Me.Tile);//<-- if this doesn't work  try:
      writeln(ToStr(Me.Tile.X) + ', ' + ToStr(Me.Tile.Y));
    end;

    Edit: If you actually want to make a path, then use sumilions path maker(its gonna save you time because you don't have to walk to each tile in your path)

  6. #6
    Join Date
    Oct 2010
    Location
    Under a bridge
    Posts
    648
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Or you could run this from Cstrikes tut
    Simba Code:
    program MyPositionFinder;
    {$i SRL/SRL/Misc/SMART.scar}
    {$i SRL/SRL.scar}
    {$i reflection\reflection.simba}

    // I copied this from somewhere, forget where though :(
    procedure DeclarePlayers;
    begin
      NumberOfPlayers(1); // How many players? 1 account = "1', 5 accounts = "5"...
      CurrentPlayer := 0; // Start at player "zero" (aka player 1)
      Players[0].Name := '';//Your RuneScape UserName
      Players[0].Pass := '';//Your RuneScape PassWord
      Players[0].Nick := ''; //3-4 letters from name
      Players[0].Active:= True;
      Players[0].BoxRewards := ['Xp', 'mote', 'ostume', 'oins', 'aphire', 'ssence'];
    end;

    procedure SetUpSmartStuff;
    begin
      Smart_Server := 9;
      Smart_Members:= False;
      Smart_Signed := True;
      Smart_SuperDetail := False;
    end;

    var mt : TTile; // Tile
    begin
      SetUpSmartStuff;
      SetupSRL;
      SetupReflectionEx(true);
      DeclarePlayers;
      LogInPlayer;
      MakeCompass ('n');
      SetAngle (true);
      SetRun (true);
      writeln ('2000');
      wait (2000);
      repeat
        cleardebug;
        mt := GetMyPos; // Get your global position
        writeln (inttostr(mt.x) + '/'+ inttostr(mt.y)); // Output it
        wait (1000);
      until (false)
    end.

    It will give you your pos every secound
    Quote Originally Posted by DD on IRC
    wanted to troll the troll

  7. #7
    Join Date
    Nov 2010
    Location
    Australia
    Posts
    1,472
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Thats not going to be very useful because he wants to make a path(i think) and the code you posted only gives the players unchanging location(i.e. only one tile)
    Last edited by KingKong; 01-15-2011 at 09:16 AM.

  8. #8
    Join Date
    Oct 2010
    Location
    Under a bridge
    Posts
    648
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Oh yeah. dam that would be a right pain to make a path even with out clear bedug. Just ignore the stupid troll
    Quote Originally Posted by DD on IRC
    wanted to troll the troll

  9. #9
    Join Date
    Dec 2010
    Posts
    808
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    If you want to make a path then this would work best:
    Simba Code:
    program new;
    {$i SRL/SRL/Misc/SMART.scar}
    {$i SRL/SRL.scar}
    {$i reflection\reflection.simba}
    procedure PathMaker;
    var
      Me : TMe;
    Begin
      Me := GetMe;
    Repeat
      if IsFKeyDown(10) then
        writeln(Me.Tile);
    Until IsFKeyDown(4);
    end;

    begin
      PathMaker;
    end.

    -Boom

  10. #10
    Join Date
    Nov 2010
    Location
    Australia
    Posts
    1,472
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Sumilion's path maker is a better option imo because you don't have to be in the place you wan't to walk to.

  11. #11
    Join Date
    Dec 2010
    Posts
    808
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by kongking View Post
    Sumilion's path maker is a better option imo because you don't have to be in the place you wan't to walk to.
    It is quite (the word slips my mind ffffff) / buggy.
    It sometimes doesn't get the right tile at all and you can't really click the exact tile you want...
    My 2 cents

    -Boom

  12. #12
    Join Date
    Nov 2008
    Location
    Melbourne, Australia
    Posts
    2,240
    Mentioned
    3 Post(s)
    Quoted
    11 Post(s)

    Default

    Try making your first few scripts without reflection its more of a challange and you will learn more
    Click here to find out how to get full screen without members! | Click here to check out my Ultimate Bitmap Tutorial! Edited to work with Simba! |

  13. #13
    Join Date
    Nov 2010
    Location
    Australia
    Posts
    1,472
    Mentioned
    0 Post(s)
    Quoted
    8 Post(s)

    Default

    Quote Originally Posted by Dynamite View Post
    It is quite (the word slips my mind ffffff) / buggy.
    It sometimes doesn't get the right tile at all and you can't really click the exact tile you want...
    My 2 cents

    Are you serious? Did you try zooming in to the max, then clicking show grid and
    center click? Because I never(i mean never ever never) had any problems with it.


    -Boom
    Quote Originally Posted by cycrosism View Post
    Try making your first few scripts without reflection its more of a challange and you will learn more
    For me scripting only with color was too much of a challenge, imo using color and reflection in my first few scripts helped me get the hang of things.

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
  •