Page 3 of 5 FirstFirst 12345 LastLast
Results 51 to 75 of 114

Thread: YouJustGotCraftedLite

  1. #51
    Join Date
    Mar 2012
    Posts
    148
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by punkd View Post
    @Suiman101. I'm not going to modify a script completely for you. I have a large to-do list. Sorry. But it looks like u already have a script like that. So why do u need mine.
    You are very smart, but the script i commonly use is right now inactive cause of the bot-nuke day. Anyway, nice script though i will poss my progress later on.

  2. #52
    Join Date
    Apr 2007
    Location
    Los Angeles
    Posts
    622
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    The script will constantly be updated. And I hope you understand that the reason I do it the way I do, is for the safety of the user.

  3. #53
    Join Date
    Mar 2012
    Posts
    148
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    two problem exist in your bot.
    1st: http://youtu.be/vNtR1FYBfNU
    it happens sometimes.
    2rd: http://youtu.be/2hzHDp4srhY
    it happens sometimes.
    Hope you can fix it.

  4. #54
    Join Date
    Apr 2007
    Location
    Los Angeles
    Posts
    622
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Siuman101, Those problems are unfortunately misclicks due to the client. The problem fixes itself after a few sec but I'll take care of it in the update.

  5. #55
    Join Date
    Mar 2012
    Posts
    148
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    thx

  6. #56
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    Simba Code:
    procedure Path;
    begin
    if WhatType = 'Gold' then
      begin
      if Item = 'Bracelet' then
        begin
          Obj := Bracelet;
        end;
      if Item = 'Ring' then
        begin
          Obj := Ring;
        end;
      if Item = 'Necklace' then
        begin
          Obj := Necklace;
        end;
      if Item = 'Amulet' then
        begin
          Obj := Amulet;
        end;
        Inc1 := 28;
      end else
    Inc1 := 14;
    end;

    Mine^

    Yours v
    Simba Code:
    procedure Typeofjewlery;
    begin

    //Gold
    if WhatJewl = 'Gold' then
    begin
      items := 28;
        Jewl := Bar;
      end;
      if WhatJewl = 'Gold' then
      begin
      if Item = 'Bracelet' then
        begin
          MPoint := Point(130, 290);
        end else
      if Item = 'Ring' then
        begin
          MPoint := Point(117, 106);
        end else
      if Item = 'Necklace' then
        begin
          MPoint := Point(136, 167);
        end else
      if Item = 'Amulet' then
        begin
          MPoint := Point(130, 230);
          end;
         items := 28;
        end else

    Oh, you thought of that yourself did you?
    Simba Code:
    if BankScreen then
      begin
        wait(1000);
        DepositAll;
        Inv1 := InvCount;
        if WhatType = 'Gold' then
        begin
          if FindDTM(Bar,x,y,MBX1,MBy1,MBX2,MBY2) then
          begin
            Mouse(x,y,1,1,False);
            ChooseOption('All');
            repeat
              wait(100);
              Inv2 := InvCount;
            until(Inv2 > Inv1);
    //MINE]
    Simba Code:
    if bankscreen then
          begin
            wait(1000);
            DepositAll;
            Inv1 := InvCount;
              begin

                if whatjewl = 'Gold' then
                begin
                if FindDTM(bar,x,y,MBX1,MBy1,MBX2,MBY2) then
                  begin
                    repeat
                    humanmmouse(x,y,1,1);
                    clickmouse2(false);
                    WaitOptionMulti(['Withdraw-all', 'w-A'], 300)
                    wait(1500);
                      if (invcount > 28) then
                        begin
                        depositall;
                        itemwithdrawal;
                        exit;
                        end;
                    until(invcount = 28);
                      inv2 := Invcount;    

    //Yours

    Lmfao, nerd you forgot to delete the inv2 when you copied it, you call it but dont even use it. Seems familiar? But wait!


    Simba Code:
    StartTime:=GetSystemTime;
      if LoggedIn then
        ClickNorth(SRL_ANGLE_HIGH);

      if (Players[CurrentPlayer].Integers[1] = 0) then
      begin
        if not IsXPBarOpen then ToggleXPBar(true);
        Players[CurrentPlayer].Integers[0] := GetXPBarTotal;
        Players[CurrentPlayer].Integers[1] := (Players[CurrentPlayer].Integers[1] + 1);
      end;  

    //Mine
    Simba Code:
    StartTime:=GetSystemTime;
      if LoggedIn then
        ClickNorth(SRL_ANGLE_HIGH);

      if (Players[CurrentPlayer].Integers[1] = 0) then
      begin
        if not IsXPBarOpen then ToggleXPBar(true);
        Players[CurrentPlayer].Integers[0] := GetXPBarTotal;
        Players[CurrentPlayer].Integers[1] := (Players[CurrentPlayer].Integers[1] + 1);
      end;  
    //Yours
    Same variables, same way of calling start time, Seems legit.

    Simba Code:
    egin
        GetMousePos(x8,y8);
        Mouse(x8,y8,1,1,false);
        WaitOptionMulti(['Bank Banker'], 300)
        if DidRedClick then
          begin
          MarkTime(t);
          repeat
            wait(100);
            if TimeFromMark(t) > 7000 then
              begin
                Bank;
                exit;
              end;
          until(PinScreen or BankScreen);
          end;
    Yours^
    Simba Code:
    //if FindChest(x,y) then  //TPA's are buggy
      if FindObjCustom(x,y,['Use', 'ank', 'Chest'],[2117995,7368821],2) then
      begin
        GetMousePos(x,y);
        Mouse(x,y,1,1,True);
        if DidRedClick then
        begin
          MarkTime(t);
          repeat
            wait(100);
            if TimeFromMark(t) > 7000 then
            begin
              Bank;
              exit;
            end;
          until(PinScreen or BankScreen);
        end;
    Mine^
    Wow, doesn't that seem similar??

    Simba Code:
    if  FindDTM(Bar, x4, y4, MIX1, MIY1, MIX2, MIY2)then
          begin
            MouseItem(RandomRange(1,14),mouse_move);
            ClickMouse2(True);
            Mouse(x7,y7,10,10,False);
            waitoptionmulti(['-> Furnace'], 300);
              if DidRedClick then
                begin
                  if WaitColor(56,164,15724794,7,4000) then
                    begin
    Rofl, that won't even work.
    Nice copy and paste.

    Simba Code:
    if FindObjCustom(x,y,['Smelt'],[7372162,8030093], 2) then
      begin
        GetMousePos(x,y);
        MouseItem(RandomRange(25,28),0);
        WaitOption('Use',4000);
        Mouse(x,y,1,1,False);
        ChooseOption('-> Clay');
        if DidRedClick then
        begin
          if WaitColor(56,164,15724794,7,4000) then
            begin
              wait(1000);
            end;

    Wowzer, same wait time, same coordinates and same Tolerance in WaitColor?


    What you basically did was change the SPS to support for Al Kharid and that's it...
    Seriously, I can't wait till you apply for members.

    Mine v
    Simba Code:
    if FindDTM(Obj,x2,y2,MSX1,MSY1,MSX2,MSY2) then
                    begin
                      Mouse(x2,y2,1,1,False);
                      ChooseOption('All');
                        repeat
                          wait(1000);
                          case random(300) of
                          0..10: HoverSkill(SKILL_CRAFTING,False);
                          20..30: BoredHuman;
                          60..65: RandomMovement;
                          end;
                        until(TimeFromMark(t) > 52000);

    Yours v
    Simba Code:
    if whatjewl = 'Gold' then
                         begin
                          repeat
                            wait(1000);
                            case random(300) of
                            0..10: HoverSkill(SKILL_CRAFTING,False);
                            20..30: BoredHuman;
                          end;
                        until(TimeFromMark(t) > 52000);

    Oh joy, you removed an Antiban line! You're a l33t coder bro.

    Simba Code:
    nv1 := InvCount;
                        if invcount < 15 then
                        begin
                          Made := Made + Items
                          exit;
                        end else
    Yours
    Again calling Inv1 without using it.. Made seems familiar no?

    Simba Code:
    until(InvCount = 14);
                      end;
                  end;
              end;
          end;
       end;
    GameTab(25);
    Made := Made + Inc1;

    Mine.
    Seriously? I can go on if you'd liek..

  7. #57
    Join Date
    Sep 2006
    Location
    Texas
    Posts
    1,349
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Hey Sin,


    Your claims are invalid. You're making your self look like a whiny 'female dog'.

    If he did in anyway copy your script get over it. In the real world everyone gets left with other people's code and they have to make edits to it to make it better. I'm doing it all the time in the C++ class I'm taking. So shut the front door already and kindly step back from this.

    @OP script looks great, don't listen to Sin he's on that time of the year where kids will rage. (seriously I had respect for Sin till this immature stunt)

    They have similarities but they aren't the same. Get over it Sin.
    Seriously.

  8. #58
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Wink

    Quote Originally Posted by Overtime View Post
    Hey Sin,


    Your claims are invalid. You're making your self look like a whiny 'female dog'.

    If he did in anyway copy your script get over it. In the real world everyone gets left with other people's code and they have to make edits to it to make it better. I'm doing it all the time in the C++ class I'm taking. So shut the front door already and kindly step back from this.

    @OP script looks great, don't listen to Sin he's on that time of the year where kids will rage. (seriously I had respect for Sin till this immature stunt)

    They have similarities but they aren't the same. Get over it Sin.
    Seriously.
    You are the most THICK HEADED guy i've seen.
    I've posted numerous copy and pastes and even Kyle agrees with me.
    How about you just leave?
    For one, my claims are NOT invalid just because you say so.

  9. #59
    Join Date
    Sep 2006
    Location
    Texas
    Posts
    1,349
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Kyle Undefined View Post
    There are HUGE differences between his and Sins script. There's a few similarities, but most of it isn't copied.
    Quote Originally Posted by Kyle Undefined View Post
    Actually, he has completely different methods and logic in his. Like I said, there's similarities, but it's not completely ripped.

    I'm comparing his Lite version, as you can see in the title of the document.
    Actually he doesn't agree with you.

    And your copy and paste's are invalid. They aren't even the same lol.

    They have different simalarities and his code is just better.
    U mad?
    Yea I think you're mad.

  10. #60
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    Via PM genius, ill post screenshots when I get home.

  11. #61
    Join Date
    Apr 2007
    Location
    Los Angeles
    Posts
    622
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Sin, the thing is, you think you own the SRL library. Obviously if you want for the bankscreen before you depositall, you put a if this then that to know what your going to withdraw. The last part is only cuz I used your proggy but I took it out. I never claimed to not use it. You don't own the way functions are setup and neither do I. When you make functions like Flight and develop your own library and someone uses it, then you can whine like a girl. Till then get off my thread your really starting to get to me.

  12. #62
    Join Date
    Apr 2007
    Location
    Los Angeles
    Posts
    622
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Simba Code:
    procedure Path;
    begin
    if WhatType = 'Gold' then
      begin
      if Item = 'Bracelet' then
        begin
          Obj := Bracelet;
        end;
      if Item = 'Ring' then
        begin
          Obj := Ring;
        end;
      if Item = 'Necklace' then
        begin
          Obj := Necklace;
        end;
      if Item = 'Amulet' then
        begin
          Obj := Amulet;
        end;
        Inc1 := 28;
      end else
    Inc1 := 14;
    end;

    Mine^

    Yours v
    Simba Code:
    procedure Typeofjewlery;
    begin

    //Gold
    if WhatJewl = 'Gold' then
    begin
      items := 28;
        Jewl := Bar;
      end;
      if WhatJewl = 'Gold' then
      begin
      if Item = 'Bracelet' then
        begin
          MPoint := Point(130, 290);
        end else
      if Item = 'Ring' then
        begin
          MPoint := Point(117, 106);
        end else
      if Item = 'Necklace' then
        begin
          MPoint := Point(136, 167);
        end else
      if Item = 'Amulet' then
        begin
          MPoint := Point(130, 230);
          end;
         items := 28;
        end else

    Sin, you have to think to yourself. Ok these scripts do the same thing, There are only a handful of procedures that can be used. You can own the 'IF' Func. When you do, Let me know I promise I'll delete it.
    Simba Code:
    if BankScreen then
      begin
        wait(1000);
        DepositAll;
        Inv1 := InvCount;
        if WhatType = 'Gold' then
        begin
          if FindDTM(Bar,x,y,MBX1,MBy1,MBX2,MBY2) then
          begin
            Mouse(x,y,1,1,False);
            ChooseOption('All');
            repeat
              wait(100);
              Inv2 := InvCount;
            until(Inv2 > Inv1);
    //MINE]
    Simba Code:
    if bankscreen then
          begin
            wait(1000);
            DepositAll;
            Inv1 := InvCount;
              begin

                if whatjewl = 'Gold' then
                begin
                if FindDTM(bar,x,y,MBX1,MBy1,MBX2,MBY2) then
                  begin
                    repeat
                    humanmmouse(x,y,1,1);
                    clickmouse2(false);
                    WaitOptionMulti(['Withdraw-all', 'w-A'], 300)
                    wait(1500);
                      if (invcount > 28) then
                        begin
                        depositall;
                        itemwithdrawal;
                        exit;
                        end;
                    until(invcount = 28);
                      inv2 := Invcount;    

    //Yours

    I didnt forget anything, I used the invcount for cannonball addition, smelting, and so on.


    Simba Code:
    StartTime:=GetSystemTime;
      if LoggedIn then
        ClickNorth(SRL_ANGLE_HIGH);

      if (Players[CurrentPlayer].Integers[1] = 0) then
      begin
        if not IsXPBarOpen then ToggleXPBar(true);
        Players[CurrentPlayer].Integers[0] := GetXPBarTotal;
        Players[CurrentPlayer].Integers[1] := (Players[CurrentPlayer].Integers[1] + 1);
      end;  

    //Mine
    Simba Code:
    StartTime:=GetSystemTime;
      if LoggedIn then
        ClickNorth(SRL_ANGLE_HIGH);

      if (Players[CurrentPlayer].Integers[1] = 0) then
      begin
        if not IsXPBarOpen then ToggleXPBar(true);
        Players[CurrentPlayer].Integers[0] := GetXPBarTotal;
        Players[CurrentPlayer].Integers[1] := (Players[CurrentPlayer].Integers[1] + 1);
      end;  
    //Yours

    Like I said before I DID use your proggy, but I removed it. These lines were necessary for it to work. Dnt worry about them anymore

    Simba Code:
    egin
        GetMousePos(x8,y8);
        Mouse(x8,y8,1,1,false);
        WaitOptionMulti(['Bank Banker'], 300)
        if DidRedClick then
          begin
          MarkTime(t);
          repeat
            wait(100);
            if TimeFromMark(t) > 7000 then
              begin
                Bank;
                exit;
              end;
          until(PinScreen or BankScreen);
          end;
    Yours^
    Simba Code:
    //if FindChest(x,y) then  //TPA's are buggy
      if FindObjCustom(x,y,['Use', 'ank', 'Chest'],[2117995,7368821],2) then
      begin
        GetMousePos(x,y);
        Mouse(x,y,1,1,True);
        if DidRedClick then
        begin
          MarkTime(t);
          repeat
            wait(100);
            if TimeFromMark(t) > 7000 then
            begin
              Bank;
              exit;
            end;
          until(PinScreen or BankScreen);
        end;

    Unfortunatly you DONT own The library. The script requires to do the same thing and use a similar procedure.

    Simba Code:
    if  FindDTM(Bar, x4, y4, MIX1, MIY1, MIX2, MIY2)then
          begin
            MouseItem(RandomRange(1,14),mouse_move);
            ClickMouse2(True);
            Mouse(x7,y7,10,10,False);
            waitoptionmulti(['-> Furnace'], 300);
              if DidRedClick then
                begin
                  if WaitColor(56,164,15724794,7,4000) then
                    begin

    Trust me IT WORKS. And it works a hell lot better than yours.

    Simba Code:
    if FindObjCustom(x,y,['Smelt'],[7372162,8030093], 2) then
      begin
        GetMousePos(x,y);
        MouseItem(RandomRange(25,28),0);
        WaitOption('Use',4000);
        Mouse(x,y,1,1,False);
        ChooseOption('-> Clay');
        if DidRedClick then
        begin
          if WaitColor(56,164,15724794,7,4000) then
            begin
              wait(1000);
            end;


    My procedure uses Edgeville not Al Kharid. Mine use Tpoints to detect the item, yours uses dtms (which are a fail btw)

    Mine v
    Simba Code:
    if FindDTM(Obj,x2,y2,MSX1,MSY1,MSX2,MSY2) then
                    begin
                      Mouse(x2,y2,1,1,False);
                      ChooseOption('All');
                        repeat
                          wait(1000);
                          case random(300) of
                          0..10: HoverSkill(SKILL_CRAFTING,False);
                          20..30: BoredHuman;
                          60..65: RandomMovement;
                          end;
                        until(TimeFromMark(t) > 52000);

    Mine uses a completely different function for detecting the item. Antiban's were used from a guide. I can direct you if you'd like.


    Simba Code:
    if whatjewl = 'Gold' then
                         begin
                          repeat
                            wait(1000);
                            case random(300) of
                            0..10: HoverSkill(SKILL_CRAFTING,False);
                            20..30: BoredHuman;
                          end;
                        until(TimeFromMark(t) > 52000);

    Oh joy, you removed an Antiban line! You're a l33t coder bro.

    Simba Code:
    nv1 := InvCount;
                        if invcount < 15 then
                        begin
                          Made := Made + Items
                          exit;
                        end else
    Yours
    Again calling Inv1 without using it.. Made seems familiar no?

    Simba Code:
    until(InvCount = 14);
                      end;
                  end;
              end;
          end;
       end;
    GameTab(25);
    Made := Made + Inc1;

    The Invcounts were for the cannonball addition, Which IS complete. SMARTONE

    [/QUOTE]

  13. #63
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default



    Lol youmad?
    I will get off since Kyle told me too and I also will appreciate that you called it flawless.
    Since it's my script, thanks for complimenting me.

  14. #64
    Join Date
    Dec 2011
    Location
    Hyrule
    Posts
    8,662
    Mentioned
    179 Post(s)
    Quoted
    1870 Post(s)

    Default

    IMO it just looks like you took Sins code and made some edits to try and improve/expand it. You should not have released it as your own work. BTW I also edited sins script to expand the crafting, but I would never release it, unless I had his permission (you should always ask about these things first). Structurally pretty much every script writer has their own style, since it is so close to Sin's, it makes it look sketch

  15. #65
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    Ashaman summed it up perfectly lmfao.

  16. #66
    Join Date
    Feb 2012
    Posts
    317
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    he at least tryed, i think ur acting like a kid right now ^^

  17. #67
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    Quote Originally Posted by Xenophis View Post
    he at least tryed, i think ur acting like a kid right now ^^
    Copying other people's scripts isn't ``trying", it's being a dick.

  18. #68
    Join Date
    Dec 2011
    Location
    USA
    Posts
    88
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Quote Originally Posted by Overtime View Post
    Hey Sin,


    Your claims are invalid. You're making your self look like a whiny 'female dog'.

    If he did in anyway copy your script get over it. In the real world everyone gets left with other people's code and they have to make edits to it to make it better. I'm doing it all the time in the C++ class I'm taking. So shut the front door already and kindly step back from this.

    @OP script looks great, don't listen to Sin he's on that time of the year where kids will rage. (seriously I had respect for Sin till this immature stunt)

    They have similarities but they aren't the same. Get over it Sin.
    Seriously.
    Chill. You shouldn't speak to 12 year olds like that. You need to treat them like babies.

  19. #69
    Join Date
    Apr 2007
    Location
    Los Angeles
    Posts
    622
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Lol guys. Relax let sin say whatever he wants. Still doesn't change the fact that he's jelous.

  20. #70
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    Loljealous of a person who can't script for beans?
    Saw what Kyle said? Lululul noob.

  21. #71
    Join Date
    Dec 2011
    Posts
    237
    Mentioned
    0 Post(s)
    Quoted
    1 Post(s)

    Default

    Im not judging either way because I wouldnt know, but im just saying that ur comeing off a little harsh sin. Im not saying u dont have the right to or do have it. Im just saying you might get more compliance with different presentation.
    ps i love all ur work sin
    "The holy grail is to spend less time making the picture then it takes poeple to look at it"- Banksy

  22. #72
    Join Date
    Apr 2007
    Location
    Los Angeles
    Posts
    622
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    Your arguments are pointless. Your just mad because I made what you couldn't.

  23. #73
    Join Date
    Dec 2011
    Location
    Toronto, Ontario
    Posts
    6,424
    Mentioned
    84 Post(s)
    Quoted
    863 Post(s)

    Default

    1)
    Explain my points.

    2)

    Why would I be jealous?

    3)
    My script performs its task 100x better than this ripoff lmfao.

    Incase you didn't see it -
    http://puu.sh/lUDu

  24. #74
    Join Date
    Mar 2012
    Posts
    25
    Mentioned
    0 Post(s)
    Quoted
    0 Post(s)

    Default

    Great script!
    One thing though: In the bank when its withdrawing either the bars or gems (mostly happens on the bars) it right clicks the item and then just stops doing anything. I have to disable smart give the mouse a flick and then enable smart to get it going again.

  25. #75
    Join Date
    Apr 2007
    Location
    Los Angeles
    Posts
    622
    Mentioned
    0 Post(s)
    Quoted
    6 Post(s)

    Default

    It is most likely from a lag after clicking. I'll take care of it.

Page 3 of 5 FirstFirst 12345 LastLast

Thread Information

Users Browsing this Thread

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

Tags for this Thread

Posting Permissions

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