SCAR Scripts page controlled by Bullandbear1This is a featured page


intro to scripting.

note: if you are new to SCAR you can read instructions below to start autoing. if your a veteran you can simply scroll down to the very bottom for your scripts.......well happy scripting/autoing! =)

hi everybody this is the first time ive ever managed a page on a site so if i say something wrong ya sorry in advance lol. but SCAR is basically a program that compiles scripts using color coding and commands all the good java/whatever scripts. the program was created by freddy1990 so just in case i get somone chasing me with copywright stuff... yeah.

im going to add the link for the download it's a download site so i dont think you have to register or anything ima play around with the site options and figure out how to upload it so yeah lol.

http://freddy1990.com/scar.php

thats the download you might want to click on the most recent version obvious , which would be scar 3.04 upon installing the program you may want to go to file (when you open scar) and go down to were it says download includes you want to do that first. what to do next well you have to look for scripts but thats why im here to save you some time = ). in the course of time i will continue to add scripts for your autoing pleasure. also before i forget i will post a set of instructions on how to start autoing once scripts are at hand. (below pic hehe)

SCAR Scripts page controlled by  Bullandbear1 - Zipstacrack.com your hacking needs.


this is what it looks like (umm yeah i can see that) lol, but when you have your scripts which will be posted on the bottom of this page, simply double click on them or copy and paste all contents into the SCAR box, yes erase were it says program, start and end. find it best just in case, scripts can be annoying at times. the little thing that looks like a target all the way on the upper right hand corner, that specifies the range of which your mouse can move or the area scar will be working in. what you do is you click on it and drag it to your runescape screen a box should "square" around it and it should say runescape or RS screen specified you must do this every time before starting a script or else it wont work.
most scripts are going to ask for specific settings some are easy to figure out like when it ask for nick its asking for three letters of your name (not the first three) this is for anti-random purposes but an example would be bullandbear1 nick "bea". now some of the more complicated crap that i hate doing is finding codes for the colors. this is were in the setup it will ask for quest symbol color, or yew symbol color or even road color, meaning the quest symbol, yew color, etc, on the map, what you do is click the little dropper on the toolbar this will freeze the runescape screen simply slide your crosshairs over the quest symbol or whatever your doing it for and click on it. it should give you a code something like this color picked: 2698281 at (934, 640) this is just an example not actual color which by the way every time you log on you must repeat process becuase the colors change. instead of draging over to the required field simply click the clip board on the top left hand side and it should pop up. now if the script is auto-colored then everything i have up here dont worry about it except the target which is always a must! also one more thing if when putting colors it ask for color of something outside of map then do that lol.


scripts:

* SPM v0.71.scar a simple power miner mines and drops.
* SL Port Sarim Willow Whacker v0.97.scar this is a auto WC that banks ive use it several times succsessfully. if you have problems with angles simply try the angle which best suits the script.
* AutoTalker_ByWonderguy6.scar i never really knew what these were until i saw someone saying random things as to not be conspicouis i guess but im pretty sure someone knows.

this is a karamja power fisher: (no banking) copy and paste the entire thing to SCAR and save after filling out the settings.

program legendaryfisher;
{.include srl/srl.scar}
{.include srl/srl/skill/Fishing.scar}

//Instructions//
{Make sure you have a lobster pot in the FIRST SLOT of your inventory
and/or money in your second slot if you wish.}



//vvvvvvvvvvvvvvvvvv-----------setup----------vvvvvvvvvvvvvvvvvvvv//
const

Loads = 3; //max load to be done
publicChat= 'On'; //if you want the auto-chat and responder...
privateChat= 'Off';
WaitTime= 5; //time to wait till it finds another spot to fish

//--------------dont touch this--------------------//
var
Lobsters,LoadsToBeFished,FishingSpots,Shopkeeper,x1,y1: integer;
//--------------dont touch this--------------------//

procedure Declareplayers;
Begin

HowManyPlayers :=2;
NumberOfPlayers(HowManyPlayers);
CurrentPlayer:=0;

Players[0].Name :='';
Players[0].Pass :='';
Players[0].Nick :='';
Players[0].Active:=True;

Players[1].Name :='';
Players[1].Pass :='';
Players[1].Nick :='';
Players[1].Active:=True;

NickNameBMP := CreateBitmapMaskFromText(Players[CurrentPlayer].Nick, UpChars);
end;

//^^^^^^^----------setup----------^^^^^^^//

procedure TheSetup;
Begin
clearDebug;
MouseSpeed:= 10;
if(Not(LoggedIn)) then
LoginPlayer;
SetRun(True) ;
Setchat (PublicChat,1);
Setchat (PrivateChat,2);
HighestAngle;
end;


Procedure CustomAntiban;
var
ProtectFromBannage:Integer;
begin
ProtectFromBannage:= Random(4);
case ProtectFromBannage of
1: RandomRClickEvery(1 + Random(2));
2: RotateEvery(1 + Random(3));
3: BoredEvery(1 + Random(2));
4: GameTab(2 + Random (10));
end;
end;


//-------------credits to Dankness for the DTM----------------//
Procedure DeclareDTMs;
begin
FishingSpots:=DTMFromString('78DA63FCC4C0C070910105CC38F086410E483' +
'342F98C1F31D5E4B52C4255F399083520BB2E10A1E6127E3500EE' +
'831204')
end;


Procedure FindFishingSpots;
begin
if FindDtmIn(x1,y1,FishingSpots,10,10,MSX2,MSY2)then
begin
repeat
MMouse(x1,y1,2,2)
wait(1000+(200))
if(IsUpText('age')) or (IsUpText('et')) then
begin
Mouse(x1,y1,2,2,false)
wait(500 + random(300))
ChooseOption(x,y,'Cage')
Wait(WaitTime*1000+random(500))
end;
CustomAntiban;
if(IsUpText('et')) then
begin
Mouse(x1,y1,2,2,false)
wait(500 + random(300))
ChooseOption(x,y,'Cancel')
CustomAntiban;
end;
until (InvFull)
end;
end;


Procedure FindRandoms;
begin

If(Not(Loggedin)) then
LoginPlayer;
FindNormalRandoms;
HandleWhirlPool;
FindFishingEquipment;
SolveBox;
FindDead;
if(FindFight) then
begin
RunAwayDirection('S')
wait(5000+random(2000));
RunBack;
end;
end;



Procedure LobsterDrop;
begin
if (invfull) then
begin
DropTo(3,28)
end;
end;

Procedure AutoTalking;
var
autotalk: integer;
begin
autotalk :=random(10);
Case autotalk of
1:TypeSend('i am a noob...');
2:TypeSend('...');
3:TypeSend('*sigh*');
4:TypeSend('zzz');
5:TypeSend('this beats mining any day!');
6:TypeSend('konichiwa');
7:TypeSend('*yawn*');
8:TypeSend('im bored');
9:TypeSend('hello everyone');
10:TypeSend('ni huo');
end;
end;


Procedure AutoResponder;

begin
SetChat ('On',1);
if(InChat('Fishin lvls?') or
InChat('Fishing lvls') or
InChat('Fishing lvls?')) then

begin
Typesend('45 i think')
end;

if(InChat('Hi' + (Players[CurrentPlayer].Name))or
InChat('Hello' + (Players[CurrentPlayer].Name))or
InChat('Whats up' + (Players[CurrentPlayer].Name)))then

begin
Typesend('oh... hi')
end;

if(InChat('your a loser') or
InChat('your a noob') or
InChat('your a froob')) then
begin
Typesend('you are too!')
end;
end;

Procedure DeclareBitMaps;
begin
Shopkeeper:= BitmapFromString(8, 8, 'z78DA9D8F411203210804BF04C32078' +
'8C26FEFF49615753B5E770E8F2D03803CD44DF4C23A4252728723' +
'1C5173E9B9C1680DCF33437830E644C1F98D1BDE3F5F45DECA5E3' +
'F8CB15ADF522B6B999D960EBFC8FEA934C4AA508F963B8B7F26F0' +
'A48396313537DA76CD6AED5D6E0AAAC3B374723F5F881543D29C3' +
'A2FC7ACA95D280F27AF57C73D9E95F7739E6DE7AD2830AD94C6BC' +
'3BBFC355F40924ED3');
end;

Procedure FindShopKeeper;
begin
if (FindBitMap(Shopkeeper, x1, y1)) then
begin
MMouse(x1,y1,2,2)
wait(1000+(200))
if(IsUpText('hop'))then
begin
Mouse(x1,y1,2,2,false)
wait(500 + random(300))
ChooseOption(x,y,'Trade')
Wait(1000+random(200))
end;
end;
end;

//------------incomplete-----------------//
procedure WalkToShop;

begin
RadialWalk( 3060118 , 185, 545, 65, 2, 2);
wait(500+random(100))
FFlag(5);
RadialWalk( 1218979 , 219, 579, 58, 2, 2);
wait(1000+random(200))
FFlag(6);

end;
//------------incomplete-----------------//


procedure Authorofscript;
begin
cleardebug;
writeln('You are using LegendaryFisher');
wait(300);
writeln('written by Legendaryhero90') ;
wait(200);
writeln('please post bugs and advice at villu-reborn.com');
wait(300);
writeln('on how to make this a better script');
wait(300);
writeln('enjoy!');
wait(1000)
end;

Procedure LegendaryReport;
begin
SRLRandomsReport;
writeln (intToStr(Loads)+ ' loads were fished...maybe');
writeln ('you''ve fished for '+ TimeRunning ) ;
end;




//---------------MAIN LOOP----------------//


begin
SetupSRL;
SetupSRLFishing;
DeclarePlayers;
NickNameBMP := CreateBitmapMaskFromText(Players[CurrentPlayer].Nick, UpChars);
Authorofscript;
wait(2000+random(100));
Activateclient;
If(Not(Loggedin)) then
LoginPlayer;
TheSetup;
repeat
repeat
DeclareDTMs;
DeclareBitMaps;
FindFishingSpots;
AutoTalking;
FindRandoms;
until(invfull)
LobsterDrop;
FindRandoms;
LegendaryReport;
AutoTalking;
until ( Loads = LoadsToBeFished )
Logout;
wait(1000+random(2000))
NextPlayer(True);

end.


* Whales Prayer Leveler1.31.scar this is a prayer auto i never used but alot of my friends recommended it to me so check it out.

* Ejjman1 Account Creator.scar this basically makes accounts very quick i find it usefull for playing with zenos engine and hopefully maxes latest and greatest creations = ) hehe.


bullandbear1
bullandbear1
Latest page update: made by bullandbear1 , May 5 2007, 12:57 AM EDT (about this update About This Update bullandbear1 Edited by bullandbear1

2 words added
2 words deleted

view changes

- complete history)
More Info: links to this page
Started By Thread Subject Replies Last Post
sweetypie3.141592 hola! ^.^ 3 May 12 2007, 12:42 AM EDT by xhothackercasiex93
Thread started: May 6 2007, 6:33 PM EDT  Watch
Just wanted to highlight that:
"Natural selection is a mechanism for generating an exceedingly high degree of improbability...."



2  out of 6 found this valuable. Do you?    
Keyword tags: None
Show Last Reply
mastoides37 bagel 0 May 6 2007, 1:08 PM EDT by mastoides37
Thread started: May 6 2007, 1:08 PM EDT  Watch
im still waiting for an answer.. by the way i dont know if i wanna become a writer for this site anymore
i mean who goes around sharing hacking info if u r a real hackers
sorry ut real hackers dont do that
4  out of 7 found this valuable. Do you?    
Keyword tags: None
xhothackercasiex93 emergency!! 1 May 6 2007, 1:04 PM EDT by babbleshoe
Thread started: May 5 2007, 10:53 PM EDT  Watch
hey can anyone help me? im lost
i wanna hack tis persons acc
3  out of 9 found this valuable. Do you?    
Keyword tags: None
Show Last Reply
Showing 3 of 8 threads for this page - view all

Related Content

  (what's this?Related ContentThanks to keyword tags, links to related pages and threads are added to the bottom of your pages. Up to 15 links are shown, determined by matching tags and by how recently the content was updated; keeping the most current at the top. Share your feedback on Wetpaint Central.)