PDA

View Full Version : Auto WoodCutter.



Fourscape
01-13-2007, 06:36 PM
Four's Powercutter.

ENT FINDER WORKS THANKS YOHOJO!
AXE HEAD FINDER WORKS!
ADDED A BUNCH OF ANTIBAN

NEXT VERSION, FIX BUGS YOU REPORT, AUTORESPONDER.


{ YOHOJO8's ENT FINDER IS IN HERE

INSTRUCTIONS v 5
1. Declare your players starting at line 27 of script.
2. Hit play then fill out Setup Form.
3. You must enter the tree name EXACTLY 'Willow' not 'willow'
4. Trees can be either 'Tree' 'Oak' or 'Willow
5. Hit OK and Watch. }

http://img49.imageshack.us/img49/9093/johojocopymg9.jpg

Fourscape
01-14-2007, 04:38 AM
Updated!

crimedevil
01-14-2007, 10:31 AM
does it find axe hat if its drops?
so he can work again...??

the scar noob
01-14-2007, 10:32 AM
wow! this is a nice script! congratz!

the scar noob
01-14-2007, 10:37 AM
does it find axe hat if its drops?
so he can work again...??
Nope it doesn't, but i think he will add it, isn' tit? :p

Rambozin
01-14-2007, 11:43 AM
:eek: Man, how can you script like THAT? :eek:

crimedevil
01-14-2007, 02:07 PM
Dam :(

If that was in it is was a damm good script

witout that i dont gonne use it...

Fourscape
01-14-2007, 02:23 PM
The reason axe and ent finder's are not in it yet, is because I want to make my own functions. And I havn't got arround to that yet. Thanks for the comments. Ill have both those things added to the script soon. Which could be a few days to a week.

crimedevil
01-14-2007, 03:22 PM
ok cool.

crimedevil
01-14-2007, 03:23 PM
anyway its working very good.

but the droping is a liltle slow.. but thats maybe for anti ban ore somthing...

Fourscape
01-14-2007, 03:43 PM
I put out V4... it has the SRL find axe and Find ent, could some ppl test it out and see if it works? I know for sure that the script is lagg slightly because of the find ent... but thats it.

crimedevil
01-14-2007, 05:59 PM
I test.

YoHoJo
01-14-2007, 06:03 PM
Hey four to speed up dropping change the wait time,
ill tell you the wait times on mine beacuse its very fast.
Ill teach you how to add axe head fining too.
Looks like your script is becoming prety popular with t3h noobs =).
Great start

Fourscape
01-14-2007, 06:58 PM
Im fine with that. Cool ill get on MSN soon. Needa study a bit first though. Dropping should be easy.

crimedevil
01-15-2007, 04:22 PM
So Has it a Find axe head option now?

crimedevil
01-15-2007, 04:26 PM
Maybe a good idea

To make a choose option Only cut and drop

Ore Cut & burn.. that would be cool to!


And can u make maybe the droping faster..
The droping takes omost longer then the cutting..:o

but it works good now . only slow drop and no axehead finding..

crimedevil
01-15-2007, 06:34 PM
He Olso dont saw the Cursed Willow

And it broke my axe

isnt there a thing for? ant the axe finder:p

then whil it be a SUPER SCRIPT!

YoHoJo
01-16-2007, 09:52 PM
please dont triple post crimedevil.
And it its called an ENT not cursed willow.
It has ent protection, but i guess it didnt work this time.
I dont belive there is an axe head finder right now, but hes gona add one soon.

Fourscape
01-17-2007, 12:54 PM
Yeah updated... works alot better.

crimedevil
01-17-2007, 04:26 PM
Thanx for the great update :D

Fourscape
01-17-2007, 04:50 PM
Oh, so the update works well?

crimedevil
01-18-2007, 01:31 PM
Axe head finding dindt work...

(i use mith axe)

legendaryhero90
01-18-2007, 11:28 PM
*stares at screen*
*blinks*
*stares at screen a little more...*
(8 hours later...)
*ZZZZZZZZZZZ*

nice and well done, well done!:D

Fourscape
01-19-2007, 01:58 AM
I'm sorry was that suposed to be funny? If so.... "Hah", just to humor you. Thanks for the complement though.

A G E N T
03-02-2007, 09:17 PM
A really awesome script... I like the DisguiseSCAR thing, it's really a nice touch that is a lot easier, you can flick on your monitor, glance at it, and leave again. Axe head finding didn't work for me the one time I saw it happen, but that's probably the exception to the rule...par for the course anyway, you lose a few axes, so what....
I know I'm being nitpicky, but in your debug report, it says
<Scrips has been running for ' + TimeRunning + '.'
Just a minor minor thing to keep in mind should you release a v6.


Oh ya, and it would be kind of nice if you could have an experience counter... I looked at the one The Nerd has and made my own: (there is probably a MUCH more concise way of doing this, I simply don't know of it)

function OakXP: integer;
var OXP : integer;
begin
OXP := 37 * TotalLogs

result := OXP
end;

function WillowXP: integer;
var WXP : integer;
begin
WXP := 67 * TotalLogs
result := WXP
end;

function TreeXP: integer;
var TXP : integer;
begin
TXP := 25 * TotalLogs
result := TXP
end;
//[][][][][][][][][][][][][][][][][][][][]
//Progress Report <======================
//[][][][][][][][][][][][][][][][][][][][]
Procedure ProgressReport;
var XPGained : integer;
Begin
If NameofTree = ('Oak') then
XPGained := OakXP
If NameofTree = ('Willow')then
XPGained := WillowXP
If NameofTree = ('Tree') then
XPGained := TreeXP

ClearDebug;
WriteLn('')
WriteLn('<---------------------------------------------------------------->')
WriteLn('<Script has been running for ' + TimeRunning + '.')
WriteLn('<---------------------------------------------------------------->')
WriteLn('<Script has chopped and dropped ' +IntToStr(TotalLogs) + ' logs.')
WriteLn('<---------------------------------------------------------------->')
WriteLN('<You have gained a total of ' + IntToStr(XPGained) + 'experience')
WriteLN('<---------------------------------------------------------------->')
end;


I also have an idea for levels gained, I'm not too familiar with the functions though, kind of like.... --> If StartLevel + XPGained > (the experience to next level, is there a function for this? ) then Writeln (you gained X levels).....or more simply, a thing that marks each time the congratulations you have gained a level text pops up.

WinterDream
03-04-2007, 02:02 AM
........

macromacro123
03-04-2007, 03:45 AM
not as good as i tough

macromacro123
03-04-2007, 05:33 PM
doesnt work ggood. i had to help it to find axe head

JAD
03-04-2007, 05:57 PM
whats with all the double/triple posting? don't any of you people read the rules? anyway.. it looks like a good script, I'll test it out. thanks four :)

Excalx
03-08-2007, 07:38 PM
Whenever I try to run the script I receive

Failed when compiling
Line 27: [Error] (18068:11): Unknown type 'interger' in script C:\Documents and Settings\Mike\Desktop\Programs\Scripts\AutoWoodCut v5.scar

It asked for WClevel and I put 8 where interger was for my Woodcutting level.What am I doing wrong? :o

Excalx
03-08-2007, 09:11 PM
Helpme ima newb? :eek:

3Garrett3
03-22-2007, 06:45 PM
it doesnt ask for ur level.. its him declaring the variables,

INSTRUCTIONS v 5
1. Declare your players starting at line 27 of script.

should say

1. Declare your players starting at line 35 of script.

TheNameless
03-22-2007, 06:59 PM
Do i need to download all the Attached Files?Help me please im new to this:o

Runecrazy
04-13-2007, 10:31 PM
but the bot drops yews ??

Blue
04-14-2007, 10:40 PM
its a great script, i ran it for one load and did it fine, found the trees alright, perfect :D

norrisemoe
04-15-2007, 05:27 PM
OMFG I thought it was amazing at the version i have. I have to post one of my best siggys, but this is the best power cutter (helping me to 60) i have EVER used, and also an amazing script to boot. (I know nice scripts have Starblasters ess miner)! siggy coming after it gets this guy I have made 1 day ago to 51.

norrisemoe
04-15-2007, 05:36 PM
NOTE:I am pretty sure this is using version 3 possibly 4.


[>-----------------------FOURS-REPORT-----------------------<]
[>Script Time: 1 Hours, 53 Minutes and 1 Seconds
[>Logs Chopped: 368
[>XP Gained: 198126
[>----------------------------------------------------------<]
Don't know if you have fixed this but these are the issues I have had.

1. Axe head finder is a No Go
2.It never updates itself figure wise after it has started running such as I am 44 wcing...../ this stays the same after i level.

Other than that it is one of the most amazing scripts i have used in a LONG time.

1-DUB
04-18-2007, 10:28 PM
change players from 6 to 4 since theres only four lines of players

canu44
04-19-2007, 03:23 AM
I dont know but i always find this bug(or whatever you call it)

Line 871: [Error] (6861:11): Unknown identifier 'FindColorCircleD' in script C:\Program Files\SCAR 2.03\includes\srl\srl\core\Color.scar

blue mage286
04-24-2007, 11:39 AM
<---------------------------------------------------------------->
<Scrips has been running for 32 Minutes and 29 Seconds.
<---------------------------------------------------------------->
<Script has chopped and dropped 63 logs.
<---------------------------------------------------------------->

tuhinb
04-25-2007, 06:53 PM
i dont get what it means by DECLARE YOUR PLAYERS STARTING???

clawzofgod
04-28-2007, 04:24 PM
ima try it out i hope this one handles randoms well

nate o
04-29-2007, 03:34 PM
Wow.. Fourscape.. Your a awesome scripter.. I am very suprised of how many scripts your making... Keep the good work up..

I will test the script later.. Nice job!

jj1232aq
04-30-2007, 05:51 AM
thanx man works well but it broke my hatchet lol on the tree face thingy

Iced_Liquid
05-10-2007, 12:36 AM
Line 386: [Error] (15102:4): Unknown identifier 'RandomRClickEvery' in script
Line 28: [Error] (14744:10): Identifier expected in script
Line 18: [Error] (14734:1): Identifier expected in script

xtrm
05-10-2007, 04:15 PM
Line 385: [Error] (15505:4): Unknown identifier 'RandomRClickEvery' in script C:\Documents and Settings\**************\Mijn documenten\AutoWoodCut v5.scar

Scarf4ce
05-11-2007, 12:18 AM
Started using this script yesterday, it's been working good for me. Handles randoms and ents well but has trouble finding the axe head as it has broke on me twice. Heres a short little proggy:

<---------------------------------------------------------------->
<Scrips has been running for 22 Minutes and 19 Seconds.
<---------------------------------------------------------------->
<Script has chopped and dropped 126 logs.
<---------------------------------------------------------------->

Thanks for the script.

Inf456
05-13-2007, 02:05 PM
Line 386: [Error] (15102:4): Unknown identifier 'RandomRClickEvery' in script
Line 28: [Error] (14744:10): Identifier expected in script
Line 18: [Error] (14734:1): Identifier expected in script

You need to download SRL 3.6

MISFERANO
05-13-2007, 04:12 PM
Failed when compiling
Line 385: [Error] (15505:4): Unknown identifier 'RandomRClickEvery' in script C:\Documents and Settings\al jazeera\Local Settings\Temporary Internet Files\Content.IE5\2M3GCW5N\AutoWoodCut%20v5[1].scar
Failed when compiling
Line 385: [Error] (15505:4): Unknown identifier 'RandomRClickEvery' in script C:\Documents and Settings\al jazeera\Local Settings\Temporary Internet Files\Content.IE5\2M3GCW5N\AutoWoodCut%20v5[1].scar

dman951753
05-19-2007, 04:02 PM
if it detected ents it wuld be THE BEST POWER CHOPPER EVER

but it doesnt so its not lol
but still it owns!!

It does detect ents but it freezes so FIX IT!! please lol

It detects it then it doesnt stop just keeps chopping till axe brakes but in the scrip says waiting for ent and it never resumes.

resource man
05-22-2007, 11:04 AM
um ya i get a "failed when compling
line 26: [error] (14797:13) identifier expected in script.... what i do?

resource man
05-22-2007, 07:28 PM
can any1 help?

downloader33
05-25-2007, 05:19 AM
im new please help how do i use it

-- guy in need HELP---!!!!

Robbiej
05-25-2007, 08:48 AM
Goin to run it now... when i'm at school i'll post result later

joshie
05-25-2007, 02:45 PM
im new please help how do i use it

-- guy in need HELP---!!!!


to you and that double posting dick up there. post what the hell is wrong god.

Wyn
05-25-2007, 04:22 PM
to you and that double posting dick up there. post what the hell is wrong god.

TY

Dew
05-30-2007, 02:55 AM
Include file C:\Program Files\SCAR 2.03\includes\SRL\SRL.SCAR does not exist.
Include file C:\Program Files\SCAR 2.03\includes\SRL\SRL\Skill\woodcutting.SCAR does not exist.
Failed when compiling

This is annoying.

Rhuarc
06-05-2007, 12:51 AM
i get this error: Line 386: [Error] (15157:4): Unknown identifier 'RandomRClickEvery' in script C:\Documents and Settings\user\Desktop\AutoWoodCut v5.scar
and i did download the latest srl stuff..

Purreze
06-05-2007, 10:33 AM
What's wrong?

Line 386: [Error] (15157:4): Unknown identifier 'RandomRClickEvery' in script C:\Documents and Settings\PurRe\Työpöytä\AutoWoodCut v5.scar

Bl00dshade
06-06-2007, 01:03 AM
Same hapening to me

Smartzkid
06-06-2007, 01:14 AM
You need SRL 3.6

Check out the 1337 search button! (http://www.srl-forums.com/forum/search.php)

Decs
06-07-2007, 07:25 AM
ok heres my results so far

<---------------------------------------------------------------->
<Scrips has been running for 1 Hours, 10 Minutes and 16 Seconds.
<---------------------------------------------------------------->
<Script has chopped and dropped 334 logs.
<---------------------------------------------------------------->

/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| SRL Randoms Report |
| www.villu-reborn.com |
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
| Talking Random[s] : 3 |
| Rick[s] Solved : 1 |
| Lamp[s] Solved : 2 |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

i have been using it to get higher woodcutting

so far it hasnt failed me and works perfect

rando152
06-10-2007, 03:51 PM
Hey i want to use this script with only one player but i left it to run last night and it got one full load and logged out for another player i put {}on the beggining of the other players that im not using but it still tryed to switch please hlp.

logic
06-11-2007, 08:58 AM
What scar i need for it?

randy marsh
06-11-2007, 09:06 PM
Do i need to download all four files?

KKK666
06-12-2007, 05:14 AM
it says "Failed when compiling
Line 386: [Error] (15157:4): Unknown identifier 'RandomRClickEvery' in script C:\Documents and Settings\Alex\Desktop\AutoWoodCut v5.scar" when i run it

kenny n java
06-13-2007, 03:57 AM
I get this Error

[Runtime Error] : Out Of Range in line 47 in script C:\Documents and Settings\Owner\My Documents\AutoWoodCut v5.scar

hostilities
06-15-2007, 06:49 AM
what dos the v5 versiong do guys? what dfrence is it?

Whitefang OC
06-15-2007, 09:54 PM
I have SCAR 3.06 but the 'RandomRCclickevery' error is still coming up.
Fixed! :)

Whitefang OC
06-16-2007, 12:43 PM
Is there to make it so that it banks them, at Draynor the willows are so close to the bank it takes more time to drop them.

Whitefang OC
06-16-2007, 05:47 PM
Ok, it was working but now it say "Include file C:/Program Files/Scar 2.03/includes/srl/srl.SCAR does not exist, Failed when compiling

knoxas1
06-18-2007, 05:16 AM
ok i keep getting that one error for that randomrcliker thing to it sucks
i have scar 3.06 and just finish seting up srl but it still dont work

Knoot
06-18-2007, 10:28 AM
/~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~\
| SRL Randoms Report |
| www.villu-reborn.com |
|~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~|
| Logged in : 1 |
| Talking Random[s] : 1 |
| Dwarf[s] Solved : 1 |
| New Box[es] Solved : 1 |
\~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~/

Then system update -.- Great script should be nice if it solved system update hehe

wcmastery
06-18-2007, 05:24 PM
nice power autoer. The bug i found is when im cutting willows at draynor and someone else attacks a mage it will check my helth and since it is not 54/54 it will run away. (my hp dropped because of random, but it ran away from that fine)

onyxgem
06-20-2007, 11:01 PM
it says declare players on line 27 and line 27 is WClevel : integer;

p0rtugal93
06-21-2007, 06:22 AM
dude when i do it it ....when i hit play it says : Line 386: [Error] (15164:4): Unknown identifier 'RandomRClickEvery' in script C:\Documents and Settings\Bernardo Botelho\Local Settings\Temporary Internet Files\Content.IE5\IWER4453\AutoWoodCut%20v5[1].scar
Failed when compiling

p0rtugal93
06-21-2007, 03:13 PM
il try and use it ........ hope it works for me =]

Thief Lord
06-22-2007, 04:48 PM
Hey, this is the first time I've ever gotten so close to an auto working but now it saws,

Failed when compiling

Line 386: [Error] (15164:4): Unknown identifier 'RandomRClickEvery' in script C:\Documents and Settings\Terry & Roger\Local Settings\Temporary Internet Files\Content.IE5\4PHV2R04\AutoWoodCut%20v5[1].scar

What do I do to fix this. Plz tell me soon cause like I said this is by far the closest I've ever gotten to an auto working. :confused:

trojan
06-24-2007, 12:27 PM
hey that randomrclick error is coz ur usin scar DIVI (3.06) you need to use 2.03

C4rl1t0
06-24-2007, 12:33 PM
loooks nice ill check it out right now ill be back in hour see how it does

devykohl
06-24-2007, 07:09 PM
ok this is what it sais for me:

[Runtime Erorr] : Out of range in line 47 in script c:\...

so if anyonr could tell me what to do, that would be Great.


Thanks,:)

Gort
06-24-2007, 08:39 PM
hey that randomrclick error is coz ur usin scar DIVI (3.06) you need to use 2.03 I am using Scar 2.03 and I still get the error "Line 385: [Error] (15505:4): Unknown identifier 'RandomRClickEvery' in script"

kingkp
06-24-2007, 08:41 PM
what do i have to edit in you script i dnt understand how to make it work? it says include

Include file C:\Program Files\SCAR 3.06\includes\SRL\SRL.SCAR does not exist.
Include file C:\Program Files\SCAR 3.06\includes\SRL\SRL\Skill\woodcutting.SCAR does not exist.
Failed when compiling:fiery:

daconcerror
06-25-2007, 06:28 AM
this is a stupid script i tried it like ten times but it comes up with
Line 150: [Error] (14928:4): Unknown identifier 'RandomRClickEvery' in script C:\Documents and Settings\test\Desktop\Any Tree Power Chopper 3.scar
and thats the same for every script i try and run. I downloaded all the includes and srl aswell.

ghostboy
06-25-2007, 05:58 PM
Try do delete that line or something maybe it will work

Th3_S0rr0w
06-27-2007, 04:32 AM
Hmm... I wonder how not to get IP banned when using something like this.

Spooky cake
06-27-2007, 10:52 PM
[QUOTE=Fourscape;51768]Four's Powercutter.

ENT FINDER WORKS THANKS YOHOJO!
AXE HEAD FINDER WORKS!
ADDED A BUNCH OF ANTIBAN

NEXT VERSION, FIX BUGS YOU REPORT, AUTORESPONDER.


{ YOHOJO8's ENT FINDER IS IN HERE

INSTRUCTIONS v 5
1. Declare your players starting at line 27 of script.
2. Hit play then fill out Setup Form.
3. You must enter the tree name EXACTLY 'Willow' not 'willow'
4. Trees can be either 'Tree' 'Oak' or 'Willow
5. Hit OK and Watch. }

http://img49.imageshack.us/img49/9093/johojocopymg9.jpg

man! i need help! im very nw in this and i suck!!!!:( can you stepp by stepp say what i an do whit you script... i know how to add it in to scar...but then...?:confused: :confused: :confused:

Meowkitty
07-01-2007, 03:44 PM
I keep gettig this msg

Line 386: [Error] (15164:4): Unknown identifier 'RandomRClickEvery'

productionz3
07-02-2007, 09:55 PM
haha idk how ur suppose to make the script work i know ur gonna say go read toturials and shit like tht but i have for that past 6 hours so if anyone could give me a hand i would be thankful ;-)! i cant wait till someone teaches me how to use the scripts in game:f:

lazy1000
07-03-2007, 05:19 PM
Look,
i am new to this scar stuff and every script i try i follow the instructions but there is always an error!!Can someone please talk me through how to set this up

also i am getting this error with the script
Line 386: [Error] (15200:4): Unknown identifier 'RandomRClickEvery' in script C:\DOCUME~1\Wes\LOCALS~1\Temp\AutoWoodCut v5.scar

TigerX
07-04-2007, 03:04 AM
Failed when compiling
Line 371: [Error] (15185:4): Unknown identifier 'RandomRClickEvery' in script C:\Documents and Settings\****\Desktop\RS Scripts\AutoWoodCut v5.scar

I m using Scar 3.06 with the Newest SRL ( i think it was 3.81 )

any help??

thematt222
07-04-2007, 07:47 PM
i keep geting this error when i go to run it


Failed when compiling
Line 309: [Error] (5534:11): Unknown identifier 'FindColorCircleD' in script C:\Program Files\SCAR 2.03\includes\srl\srl\core\Color.scar

thematt222
07-04-2007, 07:50 PM
i tried useing v3.06 of scar but it said this


Include file C:\Program Files\SCAR 3.06\includes\SRL\SRL.SCAR does not exist.
Include file C:\Program Files\SCAR 3.06\includes\SRL\SRL\Skill\woodcutting.SCAR does not exist.
Failed when compiling

loljkss
07-06-2007, 08:31 AM
Uhh help please!? it says succses! but nothing happens! thats been going on for every script that i have please help!!!!:(

C4rl1t0
07-06-2007, 02:23 PM
Failed when compiling
Line 371: [Error] (15185:4): Unknown identifier 'RandomRClickEvery' in script C:\Documents and Settings\****\Desktop\RS Scripts\AutoWoodCut v5.scar

I m using Scar 3.06 with the Newest SRL ( i think it was 3.81 )

any help??

noob read next time :D use srl 3.6 with scar 2.03 :google: :google: :google: :google: :google:

C4rl1t0
07-06-2007, 02:25 PM
haha idk how ur suppose to make the script work i know ur gonna say go read toturials and shit like tht but i have for that past 6 hours so if anyone could give me a hand i would be thankful ;-)! i cant wait till someone teaches me how to use the scripts in game:f:

its really easy.

1. make sure ur using scar 2.03 with srl 3.6 get it at www.freddy1990.com

after installed click unstal updates etc.. open the script with the correct scar

then just add ur chars name then press go :spot: :stirthepot:

soppa_z
07-06-2007, 04:39 PM
im new here

what can i do to fix this

"Line 385: [Error] (15199:4): Unknown identifier 'RandomRClickEvery' in script C:\Program\SCAR 3.10\Scripts\AutoWoodCut v5.scar"

C4rl1t0
07-06-2007, 08:07 PM
it wont drop the last row of logs on the (the right line down)

fuzzball109
07-11-2007, 01:01 PM
User specified a new RS window
Failed when compiling
Line 385: [Error] (15505:4): Unknown identifier 'RandomRClickEvery' in script
thats been happening for all the good auto woodcutter including yours plz help

Dilligaf
07-11-2007, 07:13 PM
This worked really well for me. its scar 2.03 with srl 3.6 i beleive and it got 2 lvl 1 wcers up to 30 so i could willow them =p. now i just need a Uber willower

coolang4
07-11-2007, 11:29 PM
very nice :D

O M G owns
07-16-2007, 10:26 AM
[Error] (15505:4): Unknown identifier 'RandomRClickEvery' in script C:\Documents and Settings\Muut\Työpöytä\runescape\AutoWoodCut v5.scar
:(why wont any script work for me....

mikey_bee
07-22-2007, 12:11 AM
what do you do with a script? I'm confused...

isjusme
07-24-2007, 01:53 AM
Unknown identifier: RandomRClickEvery

Help?

garrettandro
08-05-2007, 12:35 PM
same thing happening not working

papa smurf
08-05-2007, 10:09 PM
i cant use it :( it says:
include file C:\ program files\SCAR 2.0.3\INCLUDES\SRL\SRL.SCAR does not work???

T0pain
08-05-2007, 10:20 PM
how do you get the includes i fill out the forums and stuff but it says include sr/srl.scar and srl/srl/skill/woodcutting.scar what do i do for that

garrettandro
08-05-2007, 11:13 PM
when i load and dowload i clik run script and it says error and stuff every time how do i fix

back2fala4u
08-10-2007, 03:54 PM
what do i write in line 27??

Mongo
08-11-2007, 05:04 AM
I don't think you actually write it in Line 27, I'm pretty sure you enter your username and password into line 39.

I also got an error for RandomClickEvery. Anyone help?

spitfire1234
08-11-2007, 10:16 PM
ahw i got this :( (im new with scar so dont be to harsh on me please ><)

Line 385: [Error] (15199:4): Unknown identifier 'RandomRClickEvery' in script C:\Documents and Settings\*****\Desktop\AutoWoodCut v5.scar

:duh:

pls help me >< ty

usam-beret
08-18-2007, 04:12 AM
Line 385: [Error] (15505:4): Unknown identifier 'RandomRClickEvery' in script C:\Documents and Settings\**********\Local Settings\Temporary Internet Files\Content.IE5\F4SC7JDB\AutoWoodCut%20v5[1].scar



???????/

Viciousbeast
08-18-2007, 04:41 AM
this script and all the other scripts wont be working till SRL is updated,go to the link below to find out more

http://www.srl-forums.com/forum/state-srl-current-p188203.html#post188203

ConneX
08-18-2007, 08:02 PM
Line 386: [Error] (15200:4): Unknown identifier 'RandomRClickEvery' in script C:\Documents and Settings\asd\asd\AutoWoodCut v5.scar

warrockownz
08-18-2007, 08:14 PM
Read The Post's Above And Work Out That Srl Is No Longer Working Atm!

ham520
08-19-2007, 08:09 PM
hello im new here... could you explain the instructions? i dont get the current ones...

kingdm
08-27-2007, 04:06 PM
it wont work on my PC
it comes up with
Include file C:\Program Files\SCAR 3.10\includes\SRL\SRL.SCAR does not exist.
Include file C:\Program Files\SCAR 3.10\includes\SRL\SRL\Skill\woodcutting.SCAR does not exist.

can u help??
plz

Hugolord
08-27-2007, 04:10 PM
it wont work on my PC
it comes up with
Include file C:\Program Files\SCAR 3.10\includes\SRL\SRL.SCAR does not exist.
Include file C:\Program Files\SCAR 3.10\includes\SRL\SRL\Skill\woodcutting.SCAR does not exist.

can u help??
plz

what do you think that means?

kingdm
08-27-2007, 04:11 PM
i cant use it :( it says:
include file C:\ program files\SCAR 2.0.3\INCLUDES\SRL\SRL.SCAR does not work???

same with me

:mad: HELP!!!:mad:

Hugolord
08-27-2007, 04:13 PM
Srl 4

kingdm
08-27-2007, 04:14 PM
dunno wat it means but it does it with all the scripts

kingdm
08-27-2007, 04:15 PM
wat is slr 4
i am new to scar plz help

paisoe
08-31-2007, 09:57 PM
i m new to scar and i hav this error


Line 386: [Error] (15200:4): Unknown identifier 'RandomRClickEvery' in script C:\Documents and Settings\nAYaSoE\Desktop\paisoe\scar\includes\gogo .scar

scarer123
09-02-2007, 03:48 PM
idk why but it not work for me -.-
i do everyyything right it doesnt say anything but when i hit play it moves around once and scar says found compass then it doesnt do anything

[N]ick
09-06-2007, 03:06 AM
I got this Error


Line 223: [Error] (12675:5): Unknown identifier 'x' in script C:\Program Files\SCAR 3.11\Scripts\AutoWoodCut v5.scar

cathering_
09-06-2007, 02:53 PM
Well Maybe Its Not For Srl 4 Hmm?

x-x-umbra-x-x
01-11-2008, 03:48 AM
if something goes wrong with files go 2 file- download srl

this worked 4 me