RSBud Posted June 14, 2012 Share Posted June 14, 2012 I want to make a rsc bot, I decided to use Scar cause it uses the clients outer-frame (Colors, coordinates, bitmaps...) then code in itself (a.k.a RSBot = Javascript;) But I don't know how to pull off something like this.. I'm working on a script that allows me to ratio the amount of fail attempts and successed of theiving (text in bottem left screen).. I'd also like to know how much exp I make average-hour -just like proggies. Anyway to pull this off? I'll post my coding so far please help! [b]program[/b] ProggieTheiv; [b]var[/b] x, y, a, b, c : Integer; [b]procedure[/b] FindSucesses; [b]begin[/b] [color="#008000"] {if find sucess then b := b + 1;}[/color] Wait(50); [b]end; [/b] [b]procedure[/b] FindFails; [b]begin[/b] c := 0; [b]repeat[/b] c := c + 1; Wait(500); [color="#008000"]{if find fail then a := a + 1;}[/color] Wait(50); [b]FindSucesses;[/b] Wait(50); [b]until[/b](c > 250); [b]end;[/b] [b]begin[/b] c := 0; [b]repeat[/b] c := c + 1; [b] FindFails;[/b] Wait(20+random(500)); [color="#008000"] {report a := ?, report b := ?;} [/color][b]until[/b](c > 500); [b]end.[/b] Quote Link to comment Share on other sites More sharing options...
LordJashin Posted June 14, 2012 Share Posted June 14, 2012 (edited) So basically here is what you want in steps. 1. A thieving script? 2. Counts fails and successes 3. Ratio's it 4. A proggy for exp/hour 2, 3, 4. Not hard, just use variables and constantly write to the debug box every time something important happens. Note: YOU CANNOT make a proggy like the ones RSBOT makes AFAIK. SCAR is a Macro Development Environment, you can make macros for anything, but that doesn't mean it already has built in stuff to handle Runescape. There is the OSI include, but I believe it is for Runescape 2 only. AFAIK not rsc. 1. A thieving script: Well first of all you need: [sCAR] ActivateClient; [/sCAR] You might get banned for autoing on RSC that isn't on a private server. So you would have to have a really good, safe script. Use TPA's, findColors. Then click randomly in that area of static colors. That area could be the NPC you want to steal from. Anyway, IDK if RSC has UPTEXT. If it does then you could do that + hover over him and check the uptext. Scenario: 1. Find area with a couple NPC's to steal from, and rotate around somehow ( walking ) 2. Find them somehow using FindColors, first then maybe checking the uptext. 3. Click on them and steal. 4. Repeat to next NPC RSBOT - Is JAVA based. SCAR is not. Edited June 14, 2012 by LordJashin Quote Link to comment Share on other sites More sharing options...
Janilabo Posted June 15, 2012 Share Posted June 15, 2012 I have added support for RSCEmulation to MSSL.. Fatigue-based commands work with LeoSleep. Check it out (MSSL). You can just copy and modify the stuff for your needs, I don't even need credit. Quote Link to comment Share on other sites More sharing options...