Hey this is my 3rd script and im having trouble..it starts AT fishing spot IN DRAYNOR (near willow) and when full inv walks to bank and banks....i DONT want it to use SMART or REFLECTION just gold 'ol scripting...please post how i can fix this or add me on msn joelster134@hotmail.com
thank you..those who help will have there name added to credits! and i will post to them b4 on here (on free for all)
SCAR Code:{ [-----------------------] o o o o o o e eeeeeeeeeeeeee L L SSSSSSSSSSSS ')
writeln(' [-----------------------] o o o e eeeeeeeeeeeeee L L SSSSSSSSSSSS ')
writeln(' [ ] o o o e L L SS ')
writeln(' [ ] o o o e L L SS ')
writeln(' [ ] o o o e eeeeeeeeeeeeee L L SS ')
writeln(' [ ] o o o e eeeeeeeeeeeeee L L SS ')
writeln(' [ ] o o o e L L SSSSSSSSSSS ')
writeln(' [ ] o o o o o o e eeeeeeeeeeeeee LLLLLLLLLLLL SS')
writeln(' [------------] o o o o o e eeeeeeeeeeeeee LLLLLLLLLLLL SSSSSSSSSSS SCRIPTS (c) (jOELSTER134)')}
{ [------------]') }
{ /\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
/\\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\ /\
/\ Draynor fisher by Joelster134 /\
/\ Credit:Joelster134 /\
/\ Version: one /\
/\ Anti randoms-and anti ban /\
/\ /\
/\ Setup lines: /\
/\ /\
/\ Intro: Start in Fishing spot, select window hit run! /\
/\ /\
/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\
\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/\/ }
program Draynor_Netter_nd_banker;
{.include SRL/SRL.scar}
{.include SRL/SRL/skill/Fishing.scar}
const
BubbleColor1 = 12828346; //Change if you want
BubbleColor2 = 10852753; //CHange if you want
BubbleColor3 = 11774370; //change if you want
procedure DeclarePlayers;
begin
HowManyPlayers := 1; //how many players
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0; //Current player
Players[0].Name := 'username'; //username for Runescape
Players[0].Pass := 'password'; // Password for RUnescape Account
Players[0].Nick := '3-4 letters of your username';
Players[0].Active := True; //is the player active?
Mousespeed := 30; //Speed of the mouse...recommended 20.
end;
procedure PreparePlayer;
begin
if not LoggedIn then LoginPlayer;
SetRun(true);
end;
procedure AntiRandoms;
begin
if not LoggedIn then Exit;
if FindFight then
RunAway('s',True,1,7000);
end;
procedure AntiBan;
begin
case random(100) of //put in a random number//
0: RandomRClick;
1: BoredHuman;
2: HoverSkill('Woodcutting',false);
end;
end;
procedure FishSpot;
var X,Y,Mark :Integer;
begin
FindObjCustom(X, Y, ['ish', 'pot', 'ing', 'fis'], [10786702,11645615,9666933,2384740] ,3);
Mouse(X, Y, 2, 2, False);
wait(25+random(10000));
if not ChooseOption('et') then Exit;
Flag;
MarkTime(Mark);
wait(2 + 5000 +random(10000));
if HPPercent < 25 then RunTo('N', true);
wait(7500);
end;
procedure MainLoop;
var Mark : Integer;
begin
repeat
repeat
MarkTime(Mark);
if not LoggedIn then Exit;
FishSpot;
until((TimeFromMark(Mark) / 1000 * 60) >= 50);
end;
procedure MainLoop;
begin
DeclarePlayers;
PreparePlayer;
end.


Reply With Quote











h):