>.< im so irritaded!! Ive done like 75% of my new script '' Transporter'' and btw thx p1nky for the idea, ive given u credits
but when I try 2 put the proggy; into another procedure it wont work.. heres the script
SCAR Code:
program Transporter;
{.include srl/srl.scar}
{.include srl/srl/Skill/Magic.scar}
{.include srl/srl/misc/users.scar}
{-_-_-_-_-_-_--_-_-_-_-_-_--_-_-_-_-_-_--_-_-_-_-_-_--_-_-_-_-_-_--_-_-_-_-_-_-
====---> I have used P1nky's Teleporter so some credits to him.
====---> Teleport locations: Lumbridge,Varrock,Falador,Camelot and Ardounge.
====---> Members should use Camelot transport due to low cost of runes.
====---> This script has Abbys solver.
====---> This script will go far with help with SRL's help :)
*******************************************************************************
Special thanks to Bonfield - ty for making the script correct.
Special thanks to p1nky - I got this script idea from your script.
*******************************************************************************
-_-_-_-_-_-_--_-_-_-_-_-_--_-_-_-_-_-_--_-_-_-_-_-_--_-_-_-_-_-_--_-_-_-_-_-_-}
Var
SpellToCast, Casted: Integer;
Const
TransportTime = 3000; {--> Time between Transports; 4000-8000 advised}
Transports = 20; {--> How many times to Transport?}
TransportLocation = 'Lumbridge'; {-->Lumbridge,Varrock,Falador,Camelot and Ardounge.}
{-_-_-_-_-_-_-_-_-_-_-_-_-_-_Danger: Do not touch below!-_-_-_-_-_-_-_-_-_-_-_-_}
Procedure Transport;
Begin
Case TransportLocation of
'Lumbridge' : SpellToCast :=19;
'Varrock' : SpellToCast :=16;
'Falador' : SpellToCast :=22;
'Camelot' : SpellToCast :=27;
'Ardounge' : SpellToCast :=33;
end;
end;
Procedure SpellCast;
begin
if (not(loggedin)) then exit;
Casted := 0;
Transport;
repeat
GameTab(7);
CastSpell(SpellToCast);
Casted := Casted + 1;
Wait(TransportTime + random(2000));
until (Casted=Transports);
end;
Procedure Proggy;
Begin
ClearDebug;
Writeln ('====================================================================');
Writeln ('=========================Transporter V1.0===========================');
Writeln ('--Made by Nexhou,Corrected by bonfield and ideas from p1nkys script--');
Writeln ('------------------> We have done '+ IntToStr(Casted)+ ' Transports');
end;
Procedure Signature;
Begin
Writeln ('-------------------------------------------------------------------');
Writeln (' _ _______ _______ ');
Writeln(' ( ( /|( ____ \|\ /||\ /|( ___ )|\ /|');
Writeln(' | \ ( || ( \/( \ / )| ) ( || ( ) || ) ( |');
Writeln(' | \ | || (__ \ (_) / | (___) || | | || | | |');
Writeln(' | (\ \) || __) ) _ ( | ___ || | | || | | |');
Writeln(' | | \ || ( / ( ) \ | ( ) || | | || | | |');
Writeln(' | ) \ || (____/\( / \ )| ) ( || (___) || (___) |');
Writeln(' |/ )_)(_______/|/ \||/ \|(_______)(_______)');
Writeln ('-------------------------------------------------------------------');
end;
begin
SetupSRL;
ActivateClient;
Signature;
SpellCast;
end.
I try to put Proggy; into Spellcast; and then i get this error
SCAR Code:
Line 49: [Error] (15396:1): Unknown identifier 'Proggy' in script
and this is how it looks like when ive put it in
SCAR Code:
Procedure SpellCast;
begin
if (not(loggedin)) then exit;
Casted := 0;
Transport;
repeat
GameTab(7);
CastSpell(SpellToCast);
Casted := Casted + 1;
Proggy;
Wait(TransportTime + random(2000));
until (Casted=Transports);
end;
any help is wanted and needed