PDA

View Full Version : How to install/setup Simba for RS3



Pages : [1] 2 3 4 5 6 7 8

Coh3n
07-13-2009, 10:16 PM
How to install and setup Simba for RS3!
This guide was last updated on September 29th, 2014.

BEFORE posting, look at SRL's Frequently Asked Questions! (http://villavu.com/forum/showthread.php?p=851555)

If you want to setup Simba for Old School Runescape, go here! (http://villavu.com/forum/showthread.php?t=107436)


Introduction


As you will soon realize, setting up Simba is extremely easy. This guide covers the following:


How to install Simba so it works with Runescape on both Windows and Linux operating systems.
How to setup Simba so it will automatically download and update SRL, SPS, plugins, and extensions.
How to properly setup your in-game graphics and interfaces.
How to add players to the SRL player manager, Rafiki.
How to setup a script that uses the SRL Player Form.
How to setup a script's declarePlayers procedure.
Other Simba extensions.
Some troubleshooting tips.
How to fix some common errors.
Where to find quick help if needed.




Setting up your Ubuntu for Simba
Note that this may not work for all versions of Linux.


WARNING: If you are using ANY version of Windows, skip to How to install/setup Simba!

How to install and setup WINE:


If you don't already have WINE, run this command in the Terminal, then hit 'Y' to install and wait for it to finish downloading:


sudo apt-get install wine

To test it out, go to Applications > Wine > Programs > Accessories > Notepad. If it opens, you've successfully installed WINE!


How to install Java Runtime Environment (JRE):


In order for you to run Runescape, you need to install the Windows version of JRE in WINE. Go here > http://www.java.com/en/download/manual_v6.jsp, and download the OFFLINE version.
Run the .exe with WINE (should run with WINE by default) and wait for everything to be installed.
At this point, if you don't want to use SMART, you'll have to download and install the Windows version of Firefox (or another browser) the same way you installed Java.
If you have trouble running a .exe through WINE, you may have to set your permissions. To do this, simply run this command in the terminal:chmod a+x jre-6u26-windows-i586-s.exe


How to install/setup Simba


At this point, the steps are the same for both Windows and Linux. To avoid some possible errors, I recommended you disable your firewall for the duration of this tutorial.


Make sure you have Java Runtime Environment 7+. This is required to run SMART. If you don't know what version of Java you have, go here (https://www.java.com/en/download/installed.jsp?detect=jre&try=1).
Download and install Simba from here (http://wizzup.org/simba/#downloading-simba). If it gives you the option, download the 32-bit version (even if you are on a 64-bit machine).
Open Simba; go to View > Extensions.
Enable extensions.sex.
Click View > Extensions Menu.
Click Extensions > Check for Updates. Let it update.
Restart Simba.
Go to View > Extensions.
Enable srl.sex and associate.sex.
Click SRL > Check for Updates. Let the files download.
Click SPS > Check for Updates. Let the files download (this may take a few minutes).
Restart Simba.
Go to Script > Interpreter > Lape. VERY IMPORTANT! Scripts will not compile if Lape isn't selected as the interpreter.

Now, let's test your setup to make sure everything is working properly. At this point, you have two options: using SMART (recommended) or using your browser. SMART allows you to still use your computer while running a script whereas using your browser takes control of you mouse. The following steps cover both options.


Navigate to your Simba/Includes/ folder, and make sure you have both an SPS and an SRL-6 folder.
Go back to Simba, and copy/paste the following code into the text editor:

program new;
{$DEFINE SMART} // comment this line out if you don't want to use SMART
{$i srl-6/srl.simba}

begin
clearDebug();
setupSRL();
end.

If you are not using SMART, skip to Setting up in-game graphics and interfaces.
Hit run (the green arrow) in Simba, or press F9 to run the current script. A console window will pop up, followed by SMART (this may take several minutes). You will also see a lot of text appearing in the debug box - this is where you will see the progress of everything, including any error messages (hopefully you won't see any of these).
A security window may pop up asking if you want to allow access to a file. Choose Always Allow and click Okay. A second/third window may pop up, in which case you should choose Always Allow for both.




Setting up in-game graphics and interfaces


*** THIS IS A VERY IMPORTANT STEP ***

Without this step, it is likely any script you run will exhibit very odd behavior. You need to properly set your graphics settings and in-game interface layout (don't worry, it is very easy):


If you're using SMART disable it, so you can use your mouse.
In the Runescape login screen, open the Options interface.
Set screen-sizing to Fixed.
Set graphics settings to Min (may vary from script-to-script, but is the default for most).
Under Manual Setup, click Custom.
Make sure you're in OpenGL mode (for SMART users) or DirectX mode for browser users. WARNING: If RS gives an error not allowing you to load OpenGL, you need to add JRE to your system's PATH (http://stackoverflow.com/questions/3518172/how-do-i-set-the-path-environment-variable-to-point-to-jre-version-1-5) settings before JDK.
Login your player.
Open the settings interface and select the preset layout Old School.
Click Interface Settings and make sure that the "Slim Headers" is checked.
Make sure the "Hide title bars when locked" is not checked.
Make sure the transparency bar is slid all the way to to left (so there is 0% transparency).
Although it's not required, it is recommended that you lock your interfaces.
You also have the option to make the chatbox smaller, and move the action bar down do the entire 3D game screen can be seen. But again, this is optional.
When you're done, you should have a setup that looks something like this (http://i.imgur.com/mnKEZvG.png) (I made the chatbox smaller).

Unfortunately, you may have to do this for every player you use.

If you're using your browser, start a script by dragging Simba's crosshairs (green target icon) over your loaded RS client, and hit the green play button. :)



Adding players to Rafiki (Player Manager)


Adding players to the player manager is very, very easy. It is a very basic form, but does allow multiple player files to be saved/loaded, as well and username and password encryption. It also means you will never have to enter your username and password in a script ever again. Open Simba and go to SRL > Player Manager. A script will open and a form should pop up:

http://i.imgur.com/lrKmGk3.png

The setup is pretty straight forward:


Click the green "+" button to add a player.
Edit the players information on the right. You'll notice only the login name and password are required. I recommend you also enter a nickname. This nickname can be used to load your player into a script, otherwise you will have to use your login name. The display name is used only for debugging.
Choose whether or not you want to use encryption.
Save your players!
You can add/delete players from the list at any time.

Note that the Player Manager opens a new script file and runs it. It will still run if you're running another script in the same instance of Simba.

If you want to access the file that stores your player information, open Simba/settings.xml.



How to setup a script that uses the SRL Player Form


For the most part setting up this form is really straight forward, but there's always the possibility for confusion. Hopefully this will clear some things up. There are two things you need to worry about: the player file and your players. Any other settings should be explained by the author of the script you're using.

The player file

The player file is the file you saved using the Rafiki player manager (from above). Simply type in the name of the file you want to use. You'll know it's a valid file if the red X turns into a green checkmark:

http://i.imgur.com/xfGi4MN.png

When you see a green checkmark, click Load Players, and the player list below should populate with all the players you have in that file.



Your players

It is very simple to select which players you want to use. Check the box next to their name and you will be able to set specific script settings for that player.




How to setup a script's declarePlayers procedure


** Note: If the script you're using uses the SRL Player Form (from above), skip this section!

As a new user you may have trouble setting up each script for what you need, and for some of you this could be the first time you're looking at any code. Hopefully this will help with that. Each script has a procedure called "declarePlayers" where you setup your player information. In addition to this guide, each script writer should provide detailed instructions on how to properly setup the script.

Here's a brief lowdown on declarePlayers():


players.setup(['Account1', 'Account2'], 'FileName');

This line determines the player(s) you want to use. 'Account1' and 'Account2' are the names of the accounts you want the script to use. You can use the account's login name, nickname, or display name (as long as you filled them out in the Rafiki player manager), and you can add as many players as you wish.

'FileName' is the name of the player file you saved in Rafiki. If you are unsure of the file name, it is likely 'default', otherwise you can to go your Simba/Includes/Players/ folder and check.


The specific player information is usually associated with a "with players[X] do" clause. If you need to add more than the script provides, you can use copy/paste and change the "X" value.

procedure declarePlayers();
begin
players.setup(['Account1', 'Account2'], 'FileName');
currentPlayer := 0;

// this part is specific player settings, and will be different for every script

// this is to setup "Account1"
with players[0] do
begin
integers[0] := 50;
integers[1] := 25;
booleans[0] := true;
end;

// this is to setup "Account2"
with players[1] do
begin
integers[0] := 50;
integers[1] := 25;
booleans[0] := true;
end;
end;


If you have any questions, please don't hesitate to ask. :)



Fixing common problems


Your problem is most likely outlined in this (http://villavu.com/forum/showthread.php?p=851555)thread. The same thread will be helpful for a lot of things. ;) If your error doesn't appear there, please post here or on that thread, and someone will help you out as soon as possible.



Troubleshooting


There are a couple things you can try if you come across and unknown error:


Make sure the JRE is in your system's PATH before JDK (if you have JDK). Restart Simba/SMART.
Close Simba/SMART and delete all Jagex related files on your system. Try again.




Where to find quick help


There are several ways to get help at SRL. Most of the members here are more than happy to give a helping hand to newcomers. Here are the best ways to get help:


Probably the easiest and fastest way to get help is to join SRL's IRC Channel on irc.rizon.net (#srl), or click here (http://villavu.com/forum/chat_irc.php).
Post on this thread, and someone will reply as soon as possible.
Visit the Botting Help and Guides (http://villavu.com/forum/forumdisplay.php?f=488) section of the forums.





I hope this helped you and was clear enough to understand. If you have any comments/problems/suggestions, please post. :)

Cheers,
Coh3n

Nava2
07-13-2009, 10:18 PM
Well done, always feel free to PM anyone with a Purple, black, or Red name. They will be more than happy to help you out!

Coh3n
07-13-2009, 10:31 PM
Rep++

This was needed.

You may just want to write in that you can use command-line subversion as well.


cd c:/Program Files/scarprerelease/
svn co "http://freddy1990.com/svn/scarprerelease"

Thanks, added. :)

Awkwardsaw
07-13-2009, 10:52 PM
thanks :)

i already got it, but it was just guessing and hoping it would work ;P

+rep though, because you made it clear

Sabzi
07-13-2009, 11:22 PM
I already got that too(I like subversion!). But you can just Tools -> Associate .scar files and tada double click will work aswell.

Coh3n
07-13-2009, 11:33 PM
I already got that too(I like subversion!). But you can just Tools -> Associate .scar files and tada double click will work aswell.

Like in your old version of SCAR, you can just go tools > Assiciate .scar files, and it will update to 3.21+?

Da 0wner
07-14-2009, 12:40 AM
Successfully compiled (36 ms)
Obtaining file list...
Obtained file and folder list. There are 20 folders and 667 files.
Downloading and installing files...
c:\scar 3.21\Changelog.txt
c:\scar 3.21\License.txt
c:\scar 3.21\SCAR Readme.txt
c:\scar 3.21\scar.exe
c:\scar 3.21\Help\asciifull.gif
c:\scar 3.21\Help\fold.gif
c:\scar 3.21\Help\list.gif
c:\scar 3.21\Help\manual.htm
c:\scar 3.21\Help\manual1.gif
c:\scar 3.21\Help\manual3.gif
c:\scar 3.21\Help\manual4.jpg
c:\scar 3.21\Help\mask.gif
c:\scar 3.21\Help\open.gif
c:\scar 3.21\Help\skipbox.PNG
c:\scar 3.21\Includes\Placeholder.txt
c:\scar 3.21\Plugins\Accessable SCAR Functions.txt
c:\scar 3.21\Plugins\CppTestPlugin.dpr
c:\scar 3.21\Plugins\CppTestPlugin.scar
c:\scar 3.21\Plugins\FastShareMem.pas
c:\scar 3.21\Plugins\Readme For Developers.txt
c:\scar 3.21\Plugins\SCARFunctions.pas
c:\scar 3.21\Plugins\TestPlugin.dpr
c:\scar 3.21\Plugins\TestPlugin_Globals.pas
c:\scar 3.21\Plugins\TestPlugin_Main.pas
c:\scar 3.21\Fonts\CharsNPC\100.bmp
c:\scar 3.21\Fonts\CharsNPC\101.bmp
c:\scar 3.21\Fonts\CharsNPC\102.bmp
c:\scar 3.21\Fonts\CharsNPC\103.bmp
c:\scar 3.21\Fonts\CharsNPC\104.bmp
c:\scar 3.21\Fonts\CharsNPC\105.bmp
c:\scar 3.21\Fonts\CharsNPC\106.bmp
c:\scar 3.21\Fonts\CharsNPC\107.bmp
c:\scar 3.21\Fonts\CharsNPC\108.bmp
c:\scar 3.21\Fonts\CharsNPC\109.bmp
c:\scar 3.21\Fonts\CharsNPC\110.bmp
c:\scar 3.21\Fonts\CharsNPC\111.bmp
c:\scar 3.21\Fonts\CharsNPC\112.bmp
c:\scar 3.21\Fonts\CharsNPC\113.bmp
c:\scar 3.21\Fonts\CharsNPC\114.bmp
c:\scar 3.21\Fonts\CharsNPC\115.bmp
c:\scar 3.21\Fonts\CharsNPC\116.bmp
c:\scar 3.21\Fonts\CharsNPC\117.bmp
c:\scar 3.21\Fonts\CharsNPC\118.bmp
c:\scar 3.21\Fonts\CharsNPC\119.bmp
c:\scar 3.21\Fonts\CharsNPC\120.bmp
c:\scar 3.21\Fonts\CharsNPC\121.bmp
c:\scar 3.21\Fonts\CharsNPC\122.bmp
c:\scar 3.21\Fonts\CharsNPC\32.bmp
c:\scar 3.21\Fonts\CharsNPC\33.bmp
c:\scar 3.21\Fonts\CharsNPC\39.bmp
c:\scar 3.21\Fonts\CharsNPC\44.bmp
c:\scar 3.21\Fonts\CharsNPC\45.bmp
c:\scar 3.21\Fonts\CharsNPC\46.bmp
c:\scar 3.21\Fonts\CharsNPC\63.bmp
c:\scar 3.21\Fonts\CharsNPC\65.bmp
c:\scar 3.21\Fonts\CharsNPC\66.bmp
c:\scar 3.21\Fonts\CharsNPC\67.bmp
c:\scar 3.21\Fonts\CharsNPC\68.bmp
c:\scar 3.21\Fonts\CharsNPC\69.bmp
c:\scar 3.21\Fonts\CharsNPC\70.bmp
c:\scar 3.21\Fonts\CharsNPC\71.bmp
c:\scar 3.21\Fonts\CharsNPC\72.bmp
c:\scar 3.21\Fonts\CharsNPC\73.bmp
c:\scar 3.21\Fonts\CharsNPC\74.bmp
c:\scar 3.21\Fonts\CharsNPC\75.bmp
c:\scar 3.21\Fonts\CharsNPC\76.bmp
c:\scar 3.21\Fonts\CharsNPC\77.bmp
c:\scar 3.21\Fonts\CharsNPC\78.bmp
c:\scar 3.21\Fonts\CharsNPC\79.bmp
c:\scar 3.21\Fonts\CharsNPC\80.bmp
c:\scar 3.21\Fonts\CharsNPC\81.bmp
c:\scar 3.21\Fonts\CharsNPC\82.bmp
c:\scar 3.21\Fonts\CharsNPC\83.bmp
c:\scar 3.21\Fonts\CharsNPC\84.bmp
c:\scar 3.21\Fonts\CharsNPC\85.bmp
c:\scar 3.21\Fonts\CharsNPC\86.bmp
c:\scar 3.21\Fonts\CharsNPC\87.bmp
c:\scar 3.21\Fonts\CharsNPC\88.bmp
c:\scar 3.21\Fonts\CharsNPC\89.bmp
c:\scar 3.21\Fonts\CharsNPC\90.bmp
c:\scar 3.21\Fonts\CharsNPC\97.bmp
c:\scar 3.21\Fonts\CharsNPC\98.bmp
c:\scar 3.21\Fonts\CharsNPC\99.bmp
c:\scar 3.21\Fonts\CharsTrade\48.bmp
c:\scar 3.21\Fonts\CharsTrade\49.bmp
c:\scar 3.21\Fonts\CharsTrade\50.bmp
c:\scar 3.21\Fonts\CharsTrade\51.bmp
c:\scar 3.21\Fonts\CharsTrade\52.bmp
c:\scar 3.21\Fonts\CharsTrade\53.bmp
c:\scar 3.21\Fonts\CharsTrade\54.bmp
c:\scar 3.21\Fonts\CharsTrade\55.bmp
c:\scar 3.21\Fonts\CharsTrade\56.bmp
c:\scar 3.21\Fonts\CharsTrade\57.bmp
c:\scar 3.21\Fonts\CharsTrade\75.bmp
c:\scar 3.21\Fonts\CharsTrade\77.bmp
c:\scar 3.21\Fonts\FriendChars\100.bmp
c:\scar 3.21\Fonts\FriendChars\101.bmp
c:\scar 3.21\Fonts\FriendChars\102.bmp
c:\scar 3.21\Fonts\FriendChars\103.bmp
c:\scar 3.21\Fonts\FriendChars\104.bmp
c:\scar 3.21\Fonts\FriendChars\105.bmp
c:\scar 3.21\Fonts\FriendChars\106.bmp
c:\scar 3.21\Fonts\FriendChars\107.bmp
c:\scar 3.21\Fonts\FriendChars\108.bmp
c:\scar 3.21\Fonts\FriendChars\109.bmp
c:\scar 3.21\Fonts\FriendChars\110.bmp
c:\scar 3.21\Fonts\FriendChars\111.bmp
c:\scar 3.21\Fonts\FriendChars\112.bmp
c:\scar 3.21\Fonts\FriendChars\113.bmp
c:\scar 3.21\Fonts\FriendChars\114.bmp
c:\scar 3.21\Fonts\FriendChars\115.bmp
c:\scar 3.21\Fonts\FriendChars\116.bmp
c:\scar 3.21\Fonts\FriendChars\117.bmp
c:\scar 3.21\Fonts\FriendChars\118.bmp
c:\scar 3.21\Fonts\FriendChars\119.bmp
c:\scar 3.21\Fonts\FriendChars\120.bmp
c:\scar 3.21\Fonts\FriendChars\121.bmp
c:\scar 3.21\Fonts\FriendChars\122.bmp
c:\scar 3.21\Fonts\FriendChars\32.bmp
c:\scar 3.21\Fonts\FriendChars\48.bmp
c:\scar 3.21\Fonts\FriendChars\49.bmp
c:\scar 3.21\Fonts\FriendChars\50.bmp
c:\scar 3.21\Fonts\FriendChars\51.bmp
c:\scar 3.21\Fonts\FriendChars\52.bmp
c:\scar 3.21\Fonts\FriendChars\53.bmp
c:\scar 3.21\Fonts\FriendChars\54.bmp
c:\scar 3.21\Fonts\FriendChars\55.bmp
c:\scar 3.21\Fonts\FriendChars\56.bmp
c:\scar 3.21\Fonts\FriendChars\57.bmp
c:\scar 3.21\Fonts\FriendChars\65.bmp
c:\scar 3.21\Fonts\FriendChars\66.bmp
c:\scar 3.21\Fonts\FriendChars\67.bmp
c:\scar 3.21\Fonts\FriendChars\68.bmp
c:\scar 3.21\Fonts\FriendChars\69.bmp
c:\scar 3.21\Fonts\FriendChars\70.bmp
c:\scar 3.21\Fonts\FriendChars\71.bmp
c:\scar 3.21\Fonts\FriendChars\72.bmp
c:\scar 3.21\Fonts\FriendChars\73.bmp
c:\scar 3.21\Fonts\FriendChars\74.bmp
c:\scar 3.21\Fonts\FriendChars\75.bmp
c:\scar 3.21\Fonts\FriendChars\76.bmp
c:\scar 3.21\Fonts\FriendChars\77.bmp
c:\scar 3.21\Fonts\FriendChars\78.bmp
c:\scar 3.21\Fonts\FriendChars\79.bmp
c:\scar 3.21\Fonts\FriendChars\80.bmp
c:\scar 3.21\Fonts\FriendChars\81.bmp
c:\scar 3.21\Fonts\FriendChars\82.bmp
c:\scar 3.21\Fonts\FriendChars\83.bmp
c:\scar 3.21\Fonts\FriendChars\84.bmp
c:\scar 3.21\Fonts\FriendChars\85.bmp
c:\scar 3.21\Fonts\FriendChars\86.bmp
c:\scar 3.21\Fonts\FriendChars\87.bmp
c:\scar 3.21\Fonts\FriendChars\88.bmp
c:\scar 3.21\Fonts\FriendChars\89.bmp
c:\scar 3.21\Fonts\FriendChars\90.bmp
c:\scar 3.21\Fonts\FriendChars\97.bmp
c:\scar 3.21\Fonts\FriendChars\98.bmp
c:\scar 3.21\Fonts\FriendChars\99.bmp
c:\scar 3.21\Fonts\SmallChars\100.bmp
c:\scar 3.21\Fonts\SmallChars\101.bmp
c:\scar 3.21\Fonts\SmallChars\102.bmp
c:\scar 3.21\Fonts\SmallChars\103.bmp
c:\scar 3.21\Fonts\SmallChars\104.bmp
c:\scar 3.21\Fonts\SmallChars\105.bmp
c:\scar 3.21\Fonts\SmallChars\106.bmp
c:\scar 3.21\Fonts\SmallChars\107.bmp
c:\scar 3.21\Fonts\SmallChars\108.bmp
c:\scar 3.21\Fonts\SmallChars\109.bmp
c:\scar 3.21\Fonts\SmallChars\110.bmp
c:\scar 3.21\Fonts\SmallChars\111.bmp
c:\scar 3.21\Fonts\SmallChars\112.bmp
c:\scar 3.21\Fonts\SmallChars\113.bmp
c:\scar 3.21\Fonts\SmallChars\114.bmp
c:\scar 3.21\Fonts\SmallChars\115.bmp
c:\scar 3.21\Fonts\SmallChars\116.bmp
c:\scar 3.21\Fonts\SmallChars\117.bmp
c:\scar 3.21\Fonts\SmallChars\118.bmp
c:\scar 3.21\Fonts\SmallChars\119.bmp
c:\scar 3.21\Fonts\SmallChars\120.bmp
c:\scar 3.21\Fonts\SmallChars\121.bmp
c:\scar 3.21\Fonts\SmallChars\122.bmp
c:\scar 3.21\Fonts\SmallChars\123.bmp
c:\scar 3.21\Fonts\SmallChars\124.bmp
c:\scar 3.21\Fonts\SmallChars\125.bmp
c:\scar 3.21\Fonts\SmallChars\126.bmp
c:\scar 3.21\Fonts\SmallChars\128.bmp
c:\scar 3.21\Fonts\SmallChars\140.bmp
c:\scar 3.21\Fonts\SmallChars\152.bmp
c:\scar 3.21\Fonts\SmallChars\156.bmp
c:\scar 3.21\Fonts\SmallChars\159.bmp
c:\scar 3.21\Fonts\SmallChars\161.bmp
c:\scar 3.21\Fonts\SmallChars\162.bmp
c:\scar 3.21\Fonts\SmallChars\163.bmp
c:\scar 3.21\Fonts\SmallChars\164.bmp
c:\scar 3.21\Fonts\SmallChars\165.bmp
c:\scar 3.21\Fonts\SmallChars\166.bmp
c:\scar 3.21\Fonts\SmallChars\167.bmp
c:\scar 3.21\Fonts\SmallChars\168.bmp
c:\scar 3.21\Fonts\SmallChars\169.bmp
c:\scar 3.21\Fonts\SmallChars\170.bmp
c:\scar 3.21\Fonts\SmallChars\171.bmp
c:\scar 3.21\Fonts\SmallChars\172.bmp
c:\scar 3.21\Fonts\SmallChars\173.bmp
c:\scar 3.21\Fonts\SmallChars\174.bmp
c:\scar 3.21\Fonts\SmallChars\175.bmp
c:\scar 3.21\Fonts\SmallChars\176.bmp
c:\scar 3.21\Fonts\SmallChars\177.bmp
c:\scar 3.21\Fonts\SmallChars\178.bmp
c:\scar 3.21\Fonts\SmallChars\179.bmp
c:\scar 3.21\Fonts\SmallChars\180.bmp
c:\scar 3.21\Fonts\SmallChars\181.bmp
c:\scar 3.21\Fonts\SmallChars\182.bmp
c:\scar 3.21\Fonts\SmallChars\183.bmp
c:\scar 3.21\Fonts\SmallChars\184.bmp
c:\scar 3.21\Fonts\SmallChars\185.bmp
c:\scar 3.21\Fonts\SmallChars\186.bmp
c:\scar 3.21\Fonts\SmallChars\187.bmp
c:\scar 3.21\Fonts\SmallChars\188.bmp
c:\scar 3.21\Fonts\SmallChars\189.bmp
c:\scar 3.21\Fonts\SmallChars\190.bmp
c:\scar 3.21\Fonts\SmallChars\191.bmp
c:\scar 3.21\Fonts\SmallChars\192.bmp
c:\scar 3.21\Fonts\SmallChars\193.bmp
c:\scar 3.21\Fonts\SmallChars\194.bmp
c:\scar 3.21\Fonts\SmallChars\195.bmp
c:\scar 3.21\Fonts\SmallChars\196.bmp
c:\scar 3.21\Fonts\SmallChars\197.bmp
c:\scar 3.21\Fonts\SmallChars\198.bmp
c:\scar 3.21\Fonts\SmallChars\199.bmp
c:\scar 3.21\Fonts\SmallChars\200.bmp
c:\scar 3.21\Fonts\SmallChars\201.bmp
c:\scar 3.21\Fonts\SmallChars\202.bmp
c:\scar 3.21\Fonts\SmallChars\203.bmp
c:\scar 3.21\Fonts\SmallChars\204.bmp
c:\scar 3.21\Fonts\SmallChars\205.bmp
c:\scar 3.21\Fonts\SmallChars\206.bmp
c:\scar 3.21\Fonts\SmallChars\207.bmp
c:\scar 3.21\Fonts\SmallChars\208.bmp
c:\scar 3.21\Fonts\SmallChars\209.bmp
c:\scar 3.21\Fonts\SmallChars\211.bmp
c:\scar 3.21\Fonts\SmallChars\212.bmp
c:\scar 3.21\Fonts\SmallChars\213.bmp
c:\scar 3.21\Fonts\SmallChars\214.bmp
c:\scar 3.21\Fonts\SmallChars\215.bmp
c:\scar 3.21\Fonts\SmallChars\216.bmp
c:\scar 3.21\Fonts\SmallChars\217.bmp
c:\scar 3.21\Fonts\SmallChars\218.bmp
c:\scar 3.21\Fonts\SmallChars\219.bmp
c:\scar 3.21\Fonts\SmallChars\220.bmp
c:\scar 3.21\Fonts\SmallChars\221.bmp
c:\scar 3.21\Fonts\SmallChars\222.bmp
c:\scar 3.21\Fonts\SmallChars\223.bmp
c:\scar 3.21\Fonts\SmallChars\224.bmp
c:\scar 3.21\Fonts\SmallChars\225.bmp
c:\scar 3.21\Fonts\SmallChars\226.bmp
c:\scar 3.21\Fonts\SmallChars\227.bmp
c:\scar 3.21\Fonts\SmallChars\228.bmp
c:\scar 3.21\Fonts\SmallChars\229.bmp
c:\scar 3.21\Fonts\SmallChars\230.bmp
c:\scar 3.21\Fonts\SmallChars\231.bmp
c:\scar 3.21\Fonts\SmallChars\232.bmp
c:\scar 3.21\Fonts\SmallChars\233.bmp
c:\scar 3.21\Fonts\SmallChars\234.bmp
c:\scar 3.21\Fonts\SmallChars\235.bmp
c:\scar 3.21\Fonts\SmallChars\236.bmp
c:\scar 3.21\Fonts\SmallChars\237.bmp
c:\scar 3.21\Fonts\SmallChars\238.bmp
c:\scar 3.21\Fonts\SmallChars\239.bmp
c:\scar 3.21\Fonts\SmallChars\240.bmp
c:\scar 3.21\Fonts\SmallChars\241.bmp
c:\scar 3.21\Fonts\SmallChars\242.bmp
c:\scar 3.21\Fonts\SmallChars\243.bmp
c:\scar 3.21\Fonts\SmallChars\244.bmp
c:\scar 3.21\Fonts\SmallChars\245.bmp
c:\scar 3.21\Fonts\SmallChars\246.bmp
c:\scar 3.21\Fonts\SmallChars\247.bmp
c:\scar 3.21\Fonts\SmallChars\248.bmp
c:\scar 3.21\Fonts\SmallChars\249.bmp
c:\scar 3.21\Fonts\SmallChars\250.bmp
c:\scar 3.21\Fonts\SmallChars\251.bmp
c:\scar 3.21\Fonts\SmallChars\252.bmp
c:\scar 3.21\Fonts\SmallChars\253.bmp
c:\scar 3.21\Fonts\SmallChars\254.bmp
c:\scar 3.21\Fonts\SmallChars\255.bmp
c:\scar 3.21\Fonts\SmallChars\32.bmp
c:\scar 3.21\Fonts\SmallChars\33.bmp
c:\scar 3.21\Fonts\SmallChars\34.bmp
c:\scar 3.21\Fonts\SmallChars\35.bmp
c:\scar 3.21\Fonts\SmallChars\36.bmp
c:\scar 3.21\Fonts\SmallChars\37.bmp
c:\scar 3.21\Fonts\SmallChars\38.bmp
c:\scar 3.21\Fonts\SmallChars\39.bmp
c:\scar 3.21\Fonts\SmallChars\40.bmp
c:\scar 3.21\Fonts\SmallChars\41.bmp
c:\scar 3.21\Fonts\SmallChars\42.bmp
c:\scar 3.21\Fonts\SmallChars\43.bmp
c:\scar 3.21\Fonts\SmallChars\44.bmp
c:\scar 3.21\Fonts\SmallChars\45.bmp
c:\scar 3.21\Fonts\SmallChars\46.bmp
c:\scar 3.21\Fonts\SmallChars\47.bmp
c:\scar 3.21\Fonts\SmallChars\48.bmp
c:\scar 3.21\Fonts\SmallChars\49.bmp
c:\scar 3.21\Fonts\SmallChars\50.bmp
c:\scar 3.21\Fonts\SmallChars\51.bmp
c:\scar 3.21\Fonts\SmallChars\52.bmp
c:\scar 3.21\Fonts\SmallChars\53.bmp
c:\scar 3.21\Fonts\SmallChars\54.bmp
c:\scar 3.21\Fonts\SmallChars\55.bmp
c:\scar 3.21\Fonts\SmallChars\56.bmp
c:\scar 3.21\Fonts\SmallChars\57.bmp
c:\scar 3.21\Fonts\SmallChars\58.bmp
c:\scar 3.21\Fonts\SmallChars\59.bmp
c:\scar 3.21\Fonts\SmallChars\60.bmp
c:\scar 3.21\Fonts\SmallChars\61.bmp
c:\scar 3.21\Fonts\SmallChars\62.bmp
c:\scar 3.21\Fonts\SmallChars\63.bmp
c:\scar 3.21\Fonts\SmallChars\64.bmp
c:\scar 3.21\Fonts\SmallChars\65.bmp
c:\scar 3.21\Fonts\SmallChars\66.bmp
c:\scar 3.21\Fonts\SmallChars\67.bmp
c:\scar 3.21\Fonts\SmallChars\68.bmp
c:\scar 3.21\Fonts\SmallChars\69.bmp
c:\scar 3.21\Fonts\SmallChars\70.bmp
c:\scar 3.21\Fonts\SmallChars\71.bmp
c:\scar 3.21\Fonts\SmallChars\72.bmp
c:\scar 3.21\Fonts\SmallChars\73.bmp
c:\scar 3.21\Fonts\SmallChars\74.bmp
c:\scar 3.21\Fonts\SmallChars\75.bmp
c:\scar 3.21\Fonts\SmallChars\76.bmp
c:\scar 3.21\Fonts\SmallChars\77.bmp
c:\scar 3.21\Fonts\SmallChars\78.bmp
c:\scar 3.21\Fonts\SmallChars\79.bmp
c:\scar 3.21\Fonts\SmallChars\80.bmp
c:\scar 3.21\Fonts\SmallChars\81.bmp
c:\scar 3.21\Fonts\SmallChars\82.bmp
c:\scar 3.21\Fonts\SmallChars\83.bmp
c:\scar 3.21\Fonts\SmallChars\84.bmp
c:\scar 3.21\Fonts\SmallChars\85.bmp
c:\scar 3.21\Fonts\SmallChars\86.bmp
c:\scar 3.21\Fonts\SmallChars\87.bmp
c:\scar 3.21\Fonts\SmallChars\88.bmp
c:\scar 3.21\Fonts\SmallChars\89.bmp
c:\scar 3.21\Fonts\SmallChars\90.bmp
c:\scar 3.21\Fonts\SmallChars\91.bmp
c:\scar 3.21\Fonts\SmallChars\92.bmp
c:\scar 3.21\Fonts\SmallChars\93.bmp
c:\scar 3.21\Fonts\SmallChars\94.bmp
c:\scar 3.21\Fonts\SmallChars\95.bmp
c:\scar 3.21\Fonts\SmallChars\97.bmp
c:\scar 3.21\Fonts\SmallChars\98.bmp
c:\scar 3.21\Fonts\SmallChars\99.bmp
c:\scar 3.21\Fonts\StatChars\100.bmp
c:\scar 3.21\Fonts\StatChars\101.bmp
c:\scar 3.21\Fonts\StatChars\102.bmp
c:\scar 3.21\Fonts\StatChars\103.bmp
c:\scar 3.21\Fonts\StatChars\104.bmp
c:\scar 3.21\Fonts\StatChars\105.bmp
c:\scar 3.21\Fonts\StatChars\106.bmp
c:\scar 3.21\Fonts\StatChars\107.bmp
c:\scar 3.21\Fonts\StatChars\108.bmp
c:\scar 3.21\Fonts\StatChars\109.bmp
c:\scar 3.21\Fonts\StatChars\110.bmp
c:\scar 3.21\Fonts\StatChars\111.bmp
c:\scar 3.21\Fonts\StatChars\112.bmp
c:\scar 3.21\Fonts\StatChars\113.bmp
c:\scar 3.21\Fonts\StatChars\114.bmp
c:\scar 3.21\Fonts\StatChars\115.bmp
c:\scar 3.21\Fonts\StatChars\116.bmp
c:\scar 3.21\Fonts\StatChars\117.bmp
c:\scar 3.21\Fonts\StatChars\118.bmp
c:\scar 3.21\Fonts\StatChars\119.bmp
c:\scar 3.21\Fonts\StatChars\120.bmp
c:\scar 3.21\Fonts\StatChars\121.bmp
c:\scar 3.21\Fonts\StatChars\122.bmp
c:\scar 3.21\Fonts\StatChars\32.bmp
c:\scar 3.21\Fonts\StatChars\33.bmp
c:\scar 3.21\Fonts\StatChars\34.bmp
c:\scar 3.21\Fonts\StatChars\35.bmp
c:\scar 3.21\Fonts\StatChars\36.bmp
c:\scar 3.21\Fonts\StatChars\37.bmp
c:\scar 3.21\Fonts\StatChars\39.bmp
c:\scar 3.21\Fonts\StatChars\40.bmp
c:\scar 3.21\Fonts\StatChars\41.bmp
c:\scar 3.21\Fonts\StatChars\42.bmp
c:\scar 3.21\Fonts\StatChars\43.bmp
c:\scar 3.21\Fonts\StatChars\46.bmp
c:\scar 3.21\Fonts\StatChars\48.bmp
c:\scar 3.21\Fonts\StatChars\49.bmp
c:\scar 3.21\Fonts\StatChars\50.bmp
c:\scar 3.21\Fonts\StatChars\51.bmp
c:\scar 3.21\Fonts\StatChars\52.bmp
c:\scar 3.21\Fonts\StatChars\53.bmp
c:\scar 3.21\Fonts\StatChars\54.bmp
c:\scar 3.21\Fonts\StatChars\55.bmp
c:\scar 3.21\Fonts\StatChars\56.bmp
c:\scar 3.21\Fonts\StatChars\57.bmp
c:\scar 3.21\Fonts\StatChars\58.bmp
c:\scar 3.21\Fonts\StatChars\59.bmp
c:\scar 3.21\Fonts\StatChars\61.bmp
c:\scar 3.21\Fonts\StatChars\63.bmp
c:\scar 3.21\Fonts\StatChars\64.bmp
c:\scar 3.21\Fonts\StatChars\65.bmp
c:\scar 3.21\Fonts\StatChars\66.bmp
c:\scar 3.21\Fonts\StatChars\67.bmp
c:\scar 3.21\Fonts\StatChars\68.bmp
c:\scar 3.21\Fonts\StatChars\69.bmp
c:\scar 3.21\Fonts\StatChars\70.bmp
c:\scar 3.21\Fonts\StatChars\71.bmp
c:\scar 3.21\Fonts\StatChars\72.bmp
c:\scar 3.21\Fonts\StatChars\73.bmp
c:\scar 3.21\Fonts\StatChars\74.bmp
c:\scar 3.21\Fonts\StatChars\75.bmp
c:\scar 3.21\Fonts\StatChars\76.bmp
c:\scar 3.21\Fonts\StatChars\77.bmp
c:\scar 3.21\Fonts\StatChars\78.bmp
c:\scar 3.21\Fonts\StatChars\79.bmp
c:\scar 3.21\Fonts\StatChars\80.bmp
c:\scar 3.21\Fonts\StatChars\81.bmp
c:\scar 3.21\Fonts\StatChars\82.bmp
c:\scar 3.21\Fonts\StatChars\83.bmp
c:\scar 3.21\Fonts\StatChars\84.bmp
c:\scar 3.21\Fonts\StatChars\85.bmp
c:\scar 3.21\Fonts\StatChars\86.bmp
c:\scar 3.21\Fonts\StatChars\87.bmp
c:\scar 3.21\Fonts\StatChars\88.bmp
c:\scar 3.21\Fonts\StatChars\89.bmp
c:\scar 3.21\Fonts\StatChars\90.bmp
c:\scar 3.21\Fonts\StatChars\91.bmp
c:\scar 3.21\Fonts\StatChars\92.bmp
c:\scar 3.21\Fonts\StatChars\93.bmp
c:\scar 3.21\Fonts\StatChars\97.bmp
c:\scar 3.21\Fonts\StatChars\98.bmp
c:\scar 3.21\Fonts\StatChars\99.bmp
c:\scar 3.21\Fonts\UpChars\100.bmp
c:\scar 3.21\Fonts\UpChars\101.bmp
c:\scar 3.21\Fonts\UpChars\102.bmp
c:\scar 3.21\Fonts\UpChars\103.bmp
c:\scar 3.21\Fonts\UpChars\104.bmp
c:\scar 3.21\Fonts\UpChars\105.bmp
c:\scar 3.21\Fonts\UpChars\106.bmp
c:\scar 3.21\Fonts\UpChars\107.bmp
c:\scar 3.21\Fonts\UpChars\108.bmp
c:\scar 3.21\Fonts\UpChars\109.bmp
c:\scar 3.21\Fonts\UpChars\110.bmp
c:\scar 3.21\Fonts\UpChars\111.bmp
c:\scar 3.21\Fonts\UpChars\112.bmp
c:\scar 3.21\Fonts\UpChars\113.bmp
c:\scar 3.21\Fonts\UpChars\114.bmp
c:\scar 3.21\Fonts\UpChars\115.bmp
c:\scar 3.21\Fonts\UpChars\116.bmp
c:\scar 3.21\Fonts\UpChars\117.bmp
c:\scar 3.21\Fonts\UpChars\118.bmp
c:\scar 3.21\Fonts\UpChars\119.bmp
c:\scar 3.21\Fonts\UpChars\120.bmp
c:\scar 3.21\Fonts\UpChars\121.bmp
c:\scar 3.21\Fonts\UpChars\122.bmp
c:\scar 3.21\Fonts\UpChars\123.bmp
c:\scar 3.21\Fonts\UpChars\124.bmp
c:\scar 3.21\Fonts\UpChars\125.bmp
c:\scar 3.21\Fonts\UpChars\126.bmp
c:\scar 3.21\Fonts\UpChars\163.bmp
c:\scar 3.21\Fonts\UpChars\32.bmp
c:\scar 3.21\Fonts\UpChars\33.bmp
c:\scar 3.21\Fonts\UpChars\34.bmp
c:\scar 3.21\Fonts\UpChars\35.bmp
c:\scar 3.21\Fonts\UpChars\36.bmp
c:\scar 3.21\Fonts\UpChars\37.bmp
c:\scar 3.21\Fonts\UpChars\38.bmp
c:\scar 3.21\Fonts\UpChars\39.bmp
c:\scar 3.21\Fonts\UpChars\40.bmp
c:\scar 3.21\Fonts\UpChars\41.bmp
c:\scar 3.21\Fonts\UpChars\42.bmp
c:\scar 3.21\Fonts\UpChars\43.bmp
c:\scar 3.21\Fonts\UpChars\44.bmp
c:\scar 3.21\Fonts\UpChars\45.bmp
c:\scar 3.21\Fonts\UpChars\46.bmp
c:\scar 3.21\Fonts\UpChars\47.bmp
c:\scar 3.21\Fonts\UpChars\48.bmp
c:\scar 3.21\Fonts\UpChars\49.bmp
c:\scar 3.21\Fonts\UpChars\50.bmp
c:\scar 3.21\Fonts\UpChars\51.bmp
c:\scar 3.21\Fonts\UpChars\52.bmp
c:\scar 3.21\Fonts\UpChars\53.bmp
c:\scar 3.21\Fonts\UpChars\54.bmp
c:\scar 3.21\Fonts\UpChars\55.bmp
c:\scar 3.21\Fonts\UpChars\56.bmp
c:\scar 3.21\Fonts\UpChars\57.bmp
c:\scar 3.21\Fonts\UpChars\58.bmp
c:\scar 3.21\Fonts\UpChars\59.bmp
c:\scar 3.21\Fonts\UpChars\60.bmp
c:\scar 3.21\Fonts\UpChars\61.bmp
c:\scar 3.21\Fonts\UpChars\62.bmp
c:\scar 3.21\Fonts\UpChars\63.bmp
c:\scar 3.21\Fonts\UpChars\64.bmp
c:\scar 3.21\Fonts\UpChars\65.bmp
c:\scar 3.21\Fonts\UpChars\66.bmp
c:\scar 3.21\Fonts\UpChars\67.bmp
c:\scar 3.21\Fonts\UpChars\68.bmp
c:\scar 3.21\Fonts\UpChars\69.bmp
c:\scar 3.21\Fonts\UpChars\70.bmp
c:\scar 3.21\Fonts\UpChars\71.bmp
c:\scar 3.21\Fonts\UpChars\72.bmp
c:\scar 3.21\Fonts\UpChars\73.bmp
c:\scar 3.21\Fonts\UpChars\74.bmp
c:\scar 3.21\Fonts\UpChars\75.bmp
c:\scar 3.21\Fonts\UpChars\76.bmp
c:\scar 3.21\Fonts\UpChars\77.bmp
c:\scar 3.21\Fonts\UpChars\78.bmp
c:\scar 3.21\Fonts\UpChars\79.bmp
c:\scar 3.21\Fonts\UpChars\80.bmp
c:\scar 3.21\Fonts\UpChars\81.bmp
c:\scar 3.21\Fonts\UpChars\82.bmp
c:\scar 3.21\Fonts\UpChars\83.bmp
c:\scar 3.21\Fonts\UpChars\84.bmp
c:\scar 3.21\Fonts\UpChars\85.bmp
c:\scar 3.21\Fonts\UpChars\86.bmp
c:\scar 3.21\Fonts\UpChars\87.bmp
c:\scar 3.21\Fonts\UpChars\88.bmp
c:\scar 3.21\Fonts\UpChars\89.bmp
c:\scar 3.21\Fonts\UpChars\90.bmp
c:\scar 3.21\Fonts\UpChars\91.bmp
c:\scar 3.21\Fonts\UpChars\92.bmp
c:\scar 3.21\Fonts\UpChars\93.bmp
c:\scar 3.21\Fonts\UpChars\94.bmp
c:\scar 3.21\Fonts\UpChars\95.bmp
c:\scar 3.21\Fonts\UpChars\97.bmp
c:\scar 3.21\Fonts\UpChars\98.bmp
c:\scar 3.21\Fonts\UpChars\99.bmp
c:\scar 3.21\Plugins\CppTestPlugin\Main.c
c:\scar 3.21\Plugins\CppTestPlugin\Main.obj
c:\scar 3.21\Scripts\Examples\BoolToStr.scar
c:\scar 3.21\Scripts\Examples\Ceil.scar
c:\scar 3.21\Scripts\Examples\FloatToStr.scar
c:\scar 3.21\Scripts\Examples\Floor.scar
c:\scar 3.21\Scripts\Examples\IntToStr.scar
c:\scar 3.21\Scripts\Examples\ReadLn.scar
c:\scar 3.21\Scripts\Examples\Round.scar
c:\scar 3.21\Scripts\Examples\StrToInt.scar
c:\scar 3.21\Scripts\Examples\StrToIntDef.scar
c:\scar 3.21\Scripts\Examples\WriteLn.scar
c:\scar 3.21\Scripts\Flash Games\Castle.scar
c:\scar 3.21\Scripts\Flash Games\GoldFishSaver.scar
c:\scar 3.21\Scripts\Flash Games\KickUps.scar
c:\scar 3.21\Scripts\Flash Games\RadialPong.scar
c:\scar 3.21\Scripts\Flash Games\SonarChallenge.scar
c:\scar 3.21\Scripts\Games\Bejeweled.scar
c:\scar 3.21\Scripts\Games\CanYouClickIt.scar
c:\scar 3.21\Scripts\Games\ClickEm.scar
c:\scar 3.21\Scripts\Games\Tic Tac Toe.scar
c:\scar 3.21\Scripts\Games\Tins.scar
c:\scar 3.21\Scripts\Misc\DragSnake.scar
c:\scar 3.21\Scripts\Misc\Parabola.scar
c:\scar 3.21\Scripts\Misc\SCAR Paint.scar
c:\scar 3.21\Scripts\Movies\Movie_by_Mastaraymond.scar
c:\scar 3.21\Scripts\Neopets\TugOWar.scar
c:\scar 3.21\Scripts\Neopets\mathnightmare.scar
c:\scar 3.21\Scripts\Neopets\national.scar
c:\scar 3.21\Scripts\Neopets\peanut.scar
c:\scar 3.21\Scripts\Scripting Tools\DFM Parser v.26c by Ron.scar
c:\scar 3.21\Scripts\Test\ArrayTest.scar
c:\scar 3.21\Scripts\Test\BitmapFromStringBenchmark.scar
c:\scar 3.21\Scripts\Test\BubbleSort.scar
c:\scar 3.21\Scripts\Test\CheckListBoxTest.scar
c:\scar 3.21\Scripts\Test\ColorPickTest.scar
c:\scar 3.21\Scripts\Test\CompilerDirectivesTest.scar
c:\scar 3.21\Scripts\Test\CompilerDirectivesTest2.scar
c:\scar 3.21\Scripts\Test\CountColor.bmp
c:\scar 3.21\Scripts\Test\CountColorExample.scar
c:\scar 3.21\Scripts\Test\DebugParamsTest.scar
c:\scar 3.21\Scripts\Test\DiviDirective.scar
c:\scar 3.21\Scripts\Test\DllTest.scar
c:\scar 3.21\Scripts\Test\FindColorCircle.bmp
c:\scar 3.21\Scripts\Test\FindColorCircleExample.scar
c:\scar 3.21\Scripts\Test\FindColorSkipBox.bmp
c:\scar 3.21\Scripts\Test\FindColorSkipBox.scar
c:\scar 3.21\Scripts\Test\FindColorSkipBoxArray.scar
c:\scar 3.21\Scripts\Test\FindColorSkipCoords.bmp
c:\scar 3.21\Scripts\Test\FindColorSkipCoords.scar
c:\scar 3.21\Scripts\Test\FindColorToleranceBenchmark.scar
c:\scar 3.21\Scripts\Test\FindColorTriangle.bmp
c:\scar 3.21\Scripts\Test\FindColorTriangleExample.scar
c:\scar 3.21\Scripts\Test\FindColorsTest.scar
c:\scar 3.21\Scripts\Test\FindMMColorsTest.scar
c:\scar 3.21\Scripts\Test\FindWindowtest2.txt
c:\scar 3.21\Scripts\Test\FontTest.scar
c:\scar 3.21\Scripts\Test\FontTest2.scar
c:\scar 3.21\Scripts\Test\FontTest3.scar
c:\scar 3.21\Scripts\Test\FormTest.scar
c:\scar 3.21\Scripts\Test\FormatTest.scar
c:\scar 3.21\Scripts\Test\GetBitmapAreaColorsTest.scar
c:\scar 3.21\Scripts\Test\GetFilesTest.scar
c:\scar 3.21\Scripts\Test\GetnTrimTest.scar
c:\scar 3.21\Scripts\Test\HSLConversion.scar
c:\scar 3.21\Scripts\Test\INITest.scar
c:\scar 3.21\Scripts\Test\IncludeTest.txt
c:\scar 3.21\Scripts\Test\LabelGotoTest.scar
c:\scar 3.21\Scripts\Test\LabeledEditTest.scar
c:\scar 3.21\Scripts\Test\MenuTest.scar
c:\scar 3.21\Scripts\Test\MinimapAngleTest.scar
c:\scar 3.21\Scripts\Test\OpenDialogTest.scar
c:\scar 3.21\Scripts\Test\PopupMenuTest.scar
c:\scar 3.21\Scripts\Test\ProgressBarExample.scar
c:\scar 3.21\Scripts\Test\QuickSort.scar
c:\scar 3.21\Scripts\Test\RGBConversion.scar
c:\scar 3.21\Scripts\Test\ReplaceRegex.scar
c:\scar 3.21\Scripts\Test\RichEditTest.scar
c:\scar 3.21\Scripts\Test\ScriptTerminateTest.scar
c:\scar 3.21\Scripts\Test\ScrollBarTest.scar
c:\scar 3.21\Scripts\Test\StatusBarTest.scar
c:\scar 3.21\Scripts\Test\TBitmapFromBmp.scar
c:\scar 3.21\Scripts\Test\TColorDialogTest.scar
c:\scar 3.21\Scripts\Test\TColorPickerTest.scar
c:\scar 3.21\Scripts\Test\TFontDialogExample.scar
c:\scar 3.21\Scripts\Test\TNxButtonEdit.scar
c:\scar 3.21\Scripts\Test\TNxFontComboBox.scar
c:\scar 3.21\Scripts\Test\TStringListExample.scar
c:\scar 3.21\Scripts\Test\TStringListExample2.scar
c:\scar 3.21\Scripts\Test\TabsTest.scar
c:\scar 3.21\Scripts\Test\TestTcp.scar
c:\scar 3.21\Scripts\Test\ThreadSafeTest.scar
c:\scar 3.21\Scripts\Test\TimeOutTest.txt
c:\scar 3.21\Scripts\Test\TimeTest.scar
c:\scar 3.21\Scripts\Test\TimerTest.scar
c:\scar 3.21\Scripts\Test\WelcomeToRS.scar
c:\scar 3.21\Scripts\Test\XYZConversionTest.scar
c:\scar 3.21\Scripts\Test\brainfuck.scar
c:\scar 3.21\Scripts\Test\canvasbagatest.scar
c:\scar 3.21\Scripts\Test\chri.scar
c:\scar 3.21\Scripts\Test\colorspeed2test.scar
c:\scar 3.21\Scripts\Test\debugcanvastest.scar
c:\scar 3.21\Scripts\Test\dtmtest.scar
c:\scar 3.21\Scripts\Test\errortest.scar
c:\scar 3.21\Scripts\Test\fastdrawtest.scar
c:\scar 3.21\Scripts\Test\filetest.scar
c:\scar 3.21\Scripts\Test\findcolorspiraltest.scar
c:\scar 3.21\Scripts\Test\findwindowtest.txt
c:\scar 3.21\Scripts\Test\fishes.scar
c:\scar 3.21\Scripts\Test\formtut.scar
c:\scar 3.21\Scripts\Test\getmousetest.txt
c:\scar 3.21\Scripts\Test\huetest.scar
c:\scar 3.21\Scripts\Test\imagetest.scar
c:\scar 3.21\Scripts\Test\imagetest2.scar
c:\scar 3.21\Scripts\Test\imagetest3.scar
c:\scar 3.21\Scripts\Test\include.txt
c:\scar 3.21\Scripts\Test\interscarmessagetest.scar
c:\scar 3.21\Scripts\Test\iskeydowntest.scar
c:\scar 3.21\Scripts\Test\istextat2test.scar
c:\scar 3.21\Scripts\Test\message_plane.scar
c:\scar 3.21\Scripts\Test\message_tower.scar
c:\scar 3.21\Scripts\Test\mouseshifttest.scar
c:\scar 3.21\Scripts\Test\performance tester.txt
c:\scar 3.21\Scripts\Test\rgbtest.scar
c:\scar 3.21\Scripts\Test\savescreenshot.txt
c:\scar 3.21\Scripts\Test\settingstest.txt
c:\scar 3.21\Scripts\Test\simple.scar
c:\scar 3.21\Scripts\Test\smoothmousemovetest.scar
c:\scar 3.21\Scripts\Test\spiralbitmaptest.txt
c:\scar 3.21\Scripts\Test\testdeformedimages.scar
c:\scar 3.21\Scripts\Test\testhttp.scar
c:\scar 3.21\Scripts\Test\testhttp2.scar
c:\scar 3.21\Scripts\Test\testkeydown.scar
c:\scar 3.21\Scripts\Test\testplugintest.scar
c:\scar 3.21\Scripts\Test\testrotateddtms.scar
c:\scar 3.21\Scripts\Test\testsearchinbitmap.scar
c:\scar 3.21\Scripts\Test\testsendkeys.scar
c:\scar 3.21\Scripts\Test\testsoundplugins.scar
c:\scar 3.21\Scripts\Test\vbsendkeystest.scar
Verifying all files and contents...
All files were installed successfully.
True
Successfully executed
Downloaded with my downloadrepository function :p.

Coh3n
07-14-2009, 01:28 AM
Downloaded with my downloadrepository function :p.

Well aren't you just unreal. :p

lewiss
07-14-2009, 01:33 AM
+ rep
thanks a lot man, this is clear and easy to get.
(easily confused in some situations!)
thanks alot!
of i go to wc.

Coh3n
07-14-2009, 01:34 AM
+ rep
thanks a lot man, this is clear and easy to get.
(easily confused in some situations!)
thanks alot!
of i go to wc.

No problem at all, glad I could help. :D

yo123
07-14-2009, 11:58 AM
what do you mean by: Right click on you desktop (or where ever you want SCAR to be), then click SVN Checkout
I can only find update srl svn
Thanks

Da 0wner
07-14-2009, 12:18 PM
No, Update SRL SVN is in SCAR. Not your desktop.

ian.
07-14-2009, 12:24 PM
"Move plugins if you haven't already." I say that in my post :p But thanks for helping people ^^ <3 you too! :)

Coh3n
07-14-2009, 09:34 PM
what do you mean by: Right click on you desktop (or where ever you want SCAR to be), then click SVN Checkout
I can only find update srl svn
Thanks

Click the right button on your mouse on the desktop, and there should be an option that says SVN Checkout. If you don't have it, then download and install Tortoise SVN. When you right click you should get something like this:


http://i25.tinypic.com/6z3kox.jpg


"Move plugins if you haven't already." I say that in my post :p But thanks for helping people ^^ <3 you too! :)

I know :p But it seems to be a common mistake.

Floor66
07-14-2009, 10:33 PM
I'm missing a whole lot of DLL's...
bass.dll
bassflac.dll
bassmidi.dll

and a whole bunch more. All starting with bass

Coh3n
07-14-2009, 11:10 PM
I'm missing a whole lot of DLL's...
bass.dll
bassflac.dll
bassmidi.dll

and a whole bunch more. All starting with bass

I don't even know what those are. :confused: Pretty sure I don't have those, what folder are they missing from? And was this after you downloaded 3.21?

Floor66
07-14-2009, 11:37 PM
Yup, as soon as I launched scar.exe version 3.21a :)
Never had it before. They don't give a directory, just that it's missing.

Coh3n
07-15-2009, 12:48 AM
Yup, as soon as I launched scar.exe version 3.21a :)
Never had it before. They don't give a directory, just that it's missing.

Sorry, I have no idea, try posting on Freddy's thread (link in first post). Have you tried running any scripts or anything?

Floor66
07-15-2009, 01:27 AM
Tried Open With -> scar.exe
No worky.

Coh3n
07-15-2009, 01:34 AM
Tried Open With -> scar.exe
No worky.

Did SCAR just come up blank? Because I explain that that doesn't work. You have to open the script from SCAR.

Floor66
07-15-2009, 01:41 AM
It didn't open scar. at all ^^

Coh3n
07-15-2009, 03:04 AM
Odd, since I couldn't find those .dlls at all, maybe they're not part of SCAR? :confused: I'm assuming you've tried redownloading it and everything?

Floor66
07-15-2009, 04:00 AM
Yup. Tried redownloading the freddy1990 svn twice.

Coh3n
07-15-2009, 04:57 AM
Yup. Tried redownloading the freddy1990 svn twice.

Very weird, sorry man I don't know what else to tell you. You can try searching Google for the missing .dll, but other than that I have no idea what you should do. :confused:

Sorry I couldn't be of more help.

k1ng duffy
07-15-2009, 10:26 AM
I get "This application has failed to start because bass.dll was not found. Re-installing the application may fix this problem"

Tried reinstalling numerous times.

senrath
07-15-2009, 10:28 AM
I get "This application has failed to start because bass.dll was not found. Re-installing the application may fix this problem"

Tried reinstalling numerous times.

Try installing one of the older versions, then try running 3.21 again.

Coh3n
07-15-2009, 12:04 PM
Try installing one of the older versions, then try running 3.21 again.

You can also try going to Tools > Associate .scar files if you have an older version of SCAR.

I'll add that to my first post.

ShowerThoughts
07-15-2009, 06:13 PM
Add this for the bass dll problem you have to install Scar 3.20D then run the 3.21 and do associate scar files.

Floor66
07-15-2009, 06:26 PM
What the fuuuck.
Now even SCAR 3.20 won't open l0l.

Freddy1990
07-15-2009, 07:13 PM
I'm missing a whole lot of DLL's...
bass.dll
bassflac.dll
bassmidi.dll

and a whole bunch more. All starting with bass

Normally if you've had SCAR 3.20 installed you should have those...

Nice guide btw, I like it how people write guides for everything here, makes it easy for new guys :)

Floor66
07-15-2009, 07:13 PM
I've always used 3.15 ^^ Worked just as good. If I try 3.20d now I get the same >.>

Coh3n
07-23-2009, 01:13 PM
Add this for the bass dll problem you have to install Scar 3.20D then run the 3.21 and do associate scar files.

Added, thanks, although nothing seems to be working for Floor. :confused:


Nice guide btw, I like it how people write guides for everything here, makes it easy for new guys :)

Thanks very much. :D


I've always used 3.15 ^^ Worked just as good. If I try 3.20d now I get the same >.>

I don't know what you tell you, I've told you everything I know. :confused:

EDIT: I updated the guide since Freddy finished SCAR 3.21.

Brandon02852
07-23-2009, 05:00 PM
This works perfectly. Thank you so much you saved me from mass aggravation! +REP if I knew how to give rep

Coh3n
07-23-2009, 10:42 PM
This works perfectly. Thank you so much you saved me from mass aggravation! +REP if I knew how to give rep

Thanks, glad I could help you out.

Also, to give rep, just loop at the top right of the post, there is a blue check mark and a red "X". The checkmark is to add to the poster's reputation, while the "X" reports the post if the poster is breaking the rules. :)

Coh3n
07-26-2009, 12:38 PM
This works perfectly. Thank you so much you saved me from mass aggravation! +REP if I knew how to give rep

Thanks, glad I could help you out.

Also, to give rep, just loop at the top right of the post, there is a blue check mark and a red "X". The checkmark is to add to the poster's reputation, while the "X" reports the post if the poster is breaking the rules. :)
__________________________________

I updated the guide, I added in a simple section on how to get Tortoise SVN. Enjoy. :)

jayzarks95
07-26-2009, 01:22 PM
dang coh3n, it seems anywhere i need help i turn and your there =P
ty very much, it was much needed.

Coh3n
07-26-2009, 09:46 PM
dang coh3n, it seems anywhere i need help i turn and your there =P
ty very much, it was much needed.

That's what I'm here for. ;) Glad I could help you, again. :p

cman334
07-29-2009, 08:11 AM
Thanks a lot, learned how to get reflection. But, just to make sure, I only had to move one plugin from the reflection folder to the scar directory, and I replaced another in the scar plugins with it. Am i missing any?

shadowcon
07-29-2009, 09:45 AM
this rly helped me:)

Coh3n
07-29-2009, 12:57 PM
Thanks a lot, learned how to get reflection. But, just to make sure, I only had to move one plugin from the reflection folder to the scar directory, and I replaced another in the scar plugins with it. Am i missing any?

No, what you did is right. The reflection folder only has the SMART.dll file it it. :) You should be fine, glad this helped you. :)


this rly helped me:)

That's great to hear, always glad to see people use this guide. :)

Gorthdar
07-31-2009, 04:34 AM
I'm missing a whole lot of DLL's...
bass.dll
bassflac.dll
bassmidi.dll


I had the same problem, but found out that missing dlls are in portable version. :)

Dracody
08-03-2009, 01:06 PM
Nicely done man! :D

ideadonei
08-03-2009, 03:18 PM
Right click on the SRL folder and choose "SVN Checkout". Enter the following link, and click OK.

Code:
http://www.villavu.com/repositories/srl-opendevWait for all the files to be downloaded.


When I do this step I keep getting "Failed - Access Denied"

Im using vista

Rizowski
08-05-2009, 04:37 AM
Testing out,
Proggy soon
[edit] Yeah idk y i put that sorry :P

winteraven
08-06-2009, 07:35 AM
Command: Checkout from http://scardevreflection.googlecode.com/svn/trunk, revision HEAD, Fully recursive, Externals included
Error: Can't create directory 'C:\Program Files (x86)\SCAR
Error: 3.21\Includes\SRL\SRL\reflection\.svn': Access is denied.
Finished!:

that's what I get when I try to checkout the reflection link you gave me.
couldn't check them out to put into the folder or move them or anything.
I'm running Vista.

Coh3n
08-06-2009, 11:28 AM
Coh3n could you also please include the link for the dev reflection?
Some scripts may use that instead of the release version.

(I would provide the SVN link but haven't found it yet)


awesome guide!

Thanks. :) And the link in the guide is the Dev Reflection as far as I know. :p


Nicely done man! :D

Thanks, and I love you siggy. :p




Testing out,
Proggy soon

Ehm what? There's no proggy...

For the "Access is denied" error, make sure you have Tortoise SVN installed correctly, and you put the right link in the address bar. I'll test the link now to make sure it's working.

EDIT: The link works perfectly for me, so I'm thinking Tortoise SVN isn't installed correctly. I'll ask around for another possible fix.

x[Warrior]x3500
08-08-2009, 05:53 AM
To all those Vista users that had access denied errors:

i also run vista and was having the same error, but then i found a way to fix it on my comp.

1. go to the includes folder in explorer or w/e program u wish
2. right click the srl folder -> properties -> security
3. click edit
4. find "users(...)" and check mark all the "allow"
5. click apply and ok twice to exit out of everything


hope that helped :)

Coh3n
08-08-2009, 05:55 AM
x3500;612751']To all those Vista users that had access denied errors:

i also run vista and was having the same error, but then i found a way to fix it on my comp.

1. go to the srl folder in explorer or w/e program u wish
2. right click -> properties -> security
3. click edit
4. find "users(...)" and check mark all the "allow"
5. click apply and ok twice to exit out of everything


hope that helped :)

Thanks a lot, I'm going to add to the first post, if that's okay with you. :D

x[Warrior]x3500
08-08-2009, 06:01 AM
yah of course its ok, but i edited my post slightly to help ppl understand it better

Coh3n
08-08-2009, 06:02 AM
x3500;612755']yah of course its ok, but i edited my post slightly to help ppl understand it better

Okay awesome, and thanks again. :)

<3
__________________________________________________ __

I updated the guide again, added in common errors and how to fix them. If you know a fix to another error, please tell me and I'll add it. :)

Enjoy!

archer790
08-10-2009, 10:41 AM
When i right click the folder and press "SVN Checkout" it starts downloading and like 10 seconds later i get an error...

Error: Can't create directory 'C:\Program Files\SCAR 3.21\Includes\SRL\.svn': Access

Error: is denied.

what do i do? :(

Coh3n
08-10-2009, 10:42 AM
When i right click the folder and press "SVN Checkout" it starts downloading and like 10 seconds later i get an error...

Error: Can't create directory 'C:\Program Files\SCAR 3.21\Includes\SRL\.svn': Access

Error: is denied.

what do i do? :(

Look at the bottom of the guide. There is a section on common errors and how to fix them, try that and hopefully that works.

archer790
08-10-2009, 10:49 AM
Yea I'm Sorry Didn't see his post...just fixed it. Thanks For the help anyway tho :)

Coh3n
08-10-2009, 10:56 AM
Yea I'm Sorry Didn't see his post...just fixed it. Thanks For the help anyway tho :)

Lol, don't worry, and no problem. :)

Death-Magnetic
08-12-2009, 08:16 PM
Is this tutorial for Vista as well? :)


~D-M

EDIT: When I was going to do the Checkout thing on the SRL folder, it said: No access, written in red.
Im using Vista.

Thanks.

Coh3n
08-12-2009, 09:06 PM
Is this tutorial for Vista as well? :)


~D-M

EDIT: When I was going to do the Checkout thing on the SRL folder, it said: No access, written in red.
Im using Vista.

Thanks.

Yes it's made for Vista as I'm using Vista, but should work on other version of Windows. As for your error, look at the bottom of the guide for common problems and how to fix them. :)

nikos
08-12-2009, 09:42 PM
i've been getting an error in RandomTool script part of SRL. Any script i try to run gives me this error:
Line 128: [Error] (19856:48): Unknown identifier 'CurRandom' in script C:\Program Files\SCAR 3.21\includes\SRL\SRL\Core\AntiRandoms\RandomTool. scar

I installed scar correctly and srl and reflection..

Coh3n
08-12-2009, 09:44 PM
i've been getting an error in RandomTool script part of SRL. Any script i try to run gives me this error:
Line 128: [Error] (19856:48): Unknown identifier 'CurRandom' in script C:\Program Files\SCAR 3.21\includes\SRL\SRL\Core\AntiRandoms\RandomTool. scar

I installed scar correctly and srl and reflection..

Hmm I've never seen that error before, did you move your plugins correctly?

EDIT: I was just talking to Zeph and he said things like this tend to happen in you don't update all the SRL. For example, you only update a subfolder such as "core" without updating the rest of SRL. Just try updating SRL and see if that works. If you have no luck with that, reinstalling everything seems to fix a lot of people's problems.

Good luck!

jojoe
08-13-2009, 01:33 AM
hey this was a great explanation and i got zero errors doing this though i am a little confused because when i manually moved everything to the plugins folder there were several folders with question marks on them surrounded by a blue circle is this supposed to happen or do i have a problem?

Coh3n
08-13-2009, 01:35 AM
hey this was a great explanation and i got zero errors doing this though i am a little confused because when i manually moved everything to the plugins folder there were several folders with question marks on them surrounded by a blue circle is this supposed to happen or do i have a problem?

I know what you mean, but where are these question marks? Like what folders are they on? Can you post a screenshot or something?

jojoe
08-13-2009, 12:53 PM
um i don't know how to take a screen shot :( if you can tell me i'm not really a computer wiz all help with computers appreciated :)

Coh3n
08-13-2009, 12:57 PM
um i don't know how to take a screen shot :( if you can tell me i'm not really a computer wiz all help with computers appreciated :)

Haha no problem, there's a button on your keyboard that looks something like this (It's usually at the top right of your keyboard):


http://www.istartedsomething.com/wp-content/uploads/2007/07/printscreen.jpg

Once you have open what you want to take a screenshot of, you hit that button.

Then you open Paint and hit Ctrl + V to paste the image. Then you can save it to wherever you want, then post it here, as an attachment if you like. :)

Hopefully that was clear enough.

jojoe
08-13-2009, 01:01 PM
what about for laptop i have the sysrq part but above that it says delete?

whoops after closer examination i found it under insert which was a little to the left of the key you indicated :p guess laptop different from regular wired keyboard :/

um now i don't know how to post the image.... :(

Coh3n
08-13-2009, 01:04 PM
what about for laptop i have the sysrq part but above that it says delete?

There should be a Print Screen button somewhere. On my laptop it says "PrtSc".

jojoe
08-13-2009, 01:12 PM
k i managed to get a screen shot of it but now i don't know how to post my screen shot :(

Coh3n
08-13-2009, 01:14 PM
k i managed to get a screen shot of it but now i don't know how to post my screen shot :(

When you go to write a new reply (make sure you go to advanced) then at the top of the message box you'll see something that looks like a paperclip. Click on that and you can upload a picture that is saved on your computer.

jojoe
08-13-2009, 01:19 PM
does it take a short while to load it? becasue it still says sending request to www.vilavu.com :confused:

Coh3n
08-13-2009, 01:20 PM
does it take a short while to load it? becasue it still says sending request to www.vilavu.com :confused:

Uhm it should only take a few seconds at most. If you can't get that working, can you describe your problem more clearly? Be specific.

EDIT: I read what you said in your original post, and, if you can run scripts without problems, then you have no problem. :) Just try it out, and if you get an error in the SCAR debug box, then it will be easier to tell what you did wrong, if you did something wrong.

jojoe
08-13-2009, 01:30 PM
well i tried splitting it in half and yet it still wouldnt load so ill try to explain it

i have 23 files that have question marks :confused:

alot of them are at the top and have plugin at the end of them

the reason im not sure if this is right is because so far i have only been able to run one script out of all the ones i can find all the others i get errors and im not sure if it has to do with this

Coh3n
08-13-2009, 01:31 PM
well i tried splitting it in half and yet it still wouldnt load so ill try to explain it

i have 23 files that have question marks :confused:

alot of them are at the top and have plugin at the end of them

You're going to have to be more specific than that. What are the files called? What folder are they in?

And try running a couple scripts and see if you have problems, you may not have any problems at all.

jojoe
08-13-2009, 01:35 PM
ok theres cpptestplugin , accessable scar functions, boxpllugin.dll , centerplugin.dll , cpptestpluginSCAR scriptfile, cpptestplugin.dpr , embedded SMART.dll FastShareMem.pas irokiplugin.dll , quizzplugin.dll , readmefordevelopers, SCARfuncitons.pas Skyplugin.dll, testplugin.dpr , testplugin_Globals.pas, testplugin_main.pas

wizzyplugin.dll SRLManual, SRL, SRL, Compile SRL, Scrap, Scrap(2), place inside plugins folder has an x over it , and everything else has green checkmarks

Coh3n
08-13-2009, 02:01 PM
ok theres cpptestplugin , accessable scar functions, boxpllugin.dll , centerplugin.dll , cpptestpluginSCAR scriptfile, cpptestplugin.dpr , embedded SMART.dll FastShareMem.pas irokiplugin.dll , quizzplugin.dll , readmefordevelopers, SCARfuncitons.pas Skyplugin.dll, testplugin.dpr , testplugin_Globals.pas, testplugin_main.pas

wizzyplugin.dll SRLManual, SRL, SRL, Compile SRL, Scrap, Scrap(2), place inside plugins folder has an x over it , and everything else has green checkmarks

Hmm those seem to be right, not sure when there's question marks on them, but try and use some scripts and see how it goes. :)

jojoe
08-13-2009, 09:57 PM
alright thanks for the help :) yay i learned how to take screen shots :) lol

Coh3n
08-13-2009, 09:57 PM
alright thanks for the help :) yay i learned how to take screen shots :) lol

Haha no problem, glad I could help you out. :D

chriz001
08-15-2009, 01:52 PM
thanks coh3n, your guides are great

Death-Magnetic
08-16-2009, 03:32 AM
How do i give rep?

Is rep positive or negative?


~D-M

Sabzi
08-16-2009, 04:36 AM
How do i give rep?

Is rep positive or negative?


~D-M

Rep can be positive and negative too and you can give someone rep by clicking the the blue tick near a persons name. Then you can choose approve or disapprove but you can read more about it in the rep tut by NaumanAkhlaQ. Link in a sec.

EDIT: Here: http://www.villavu.com/forum/showthread.php?t=35118

Own ur azz5
08-18-2009, 10:25 AM
hey guys im a noobie at this stuff so could you give me a hand? when i run i get this:

Include file C:\Program Files\SCAR 3.21\includes\SRL\SRL\Misc\SMART.SCAR does not exist.
Include file C:\Program Files\SCAR 3.21\includes\SRL\SRL.scar does not exist.
Include file C:\Program Files\SCAR 3.21\includes\SRL\SRL\Misc\Debug.scar does not exist.
Failed when compiling

could you guys help me? it would be greatly appreciated.thanks! :)

Coh3n
08-18-2009, 11:54 AM
hey guys im a noobie at this stuff so could you give me a hand? when i run i get this:

Include file C:\Program Files\SCAR 3.21\includes\SRL\SRL\Misc\SMART.SCAR does not exist.
Include file C:\Program Files\SCAR 3.21\includes\SRL\SRL.scar does not exist.
Include file C:\Program Files\SCAR 3.21\includes\SRL\SRL\Misc\Debug.scar does not exist.
Failed when compiling

could you guys help me? it would be greatly appreciated.thanks! :)

Well it looks like you didn't install SRL at all, you just installed SCAR. Did you follow this guide at all?

sweetleaf
08-18-2009, 03:41 PM
OK, so today I got a new laptop for college, its a Mac. Can I still run scar? and what would a replacement be for tortoisesvn be? Its not compatible with a mac

Coh3n
08-18-2009, 11:28 PM
OK, so today I got a new laptop for college, its a Mac. Can I still run scar? and what would a replacement be for tortoisesvn be? Its not compatible with a mac

Well since SCAR it for windows, you should research a program that can run Windows applications in Mac. Similar to WINE and Ubuntu. I know nothing about Macs, so I don't know one off the top of my head. For the SVN thing, also research Mac SVN applications. You would think there would be something out there.

Own ur azz5
08-20-2009, 01:01 PM
Well it looks like you didn't install SRL at all, you just installed SCAR. Did you follow this guide at all?

IM A FRIGGEN NOOB, I KNOW IM PATHETIC, COULD YOU JUST PLEASE HELP ME?? I NEED A LINK TO DOWNLOAD THIS SRL THINGIE. :mad:

Coh3n
08-20-2009, 09:27 PM
IM A FRIGGEN NOOB, I KNOW IM PATHETIC, COULD YOU JUST PLEASE HELP ME?? I NEED A LINK TO DOWNLOAD THIS SRL THINGIE. :mad:

That's what this guide is for. If you follow this guide from start to finish, it tells you how to get SCAR and SRL. You shouldn't have any problems.

Also, next time, please try to avoid using all capital letters.

Own ur azz5
08-22-2009, 12:00 AM
umm when i try to download those files for the SRL i just get this:

Command: Checkout from http://www.villavu.com/repositories/srl-opendev, revision HEAD, Fully recursive, Externals included
Error: Can't create directory 'C:\Program Files\SCAR 3.21\Includes\SRL\.svn': Access
Error: is denied.
Finished!:

Ugh, help mee!

Coh3n
08-22-2009, 12:07 AM
umm when i try to download those files for the SRL i just get this:

Command: Checkout from http://www.villavu.com/repositories/srl-opendev, revision HEAD, Fully recursive, Externals included
Error: Can't create directory 'C:\Program Files\SCAR 3.21\Includes\SRL\.svn': Access
Error: is denied.
Finished!:

Ugh, help mee!

Look at the bottom of the guide, there is a section on how to fix that problem.

i_reklaw
08-31-2009, 07:22 AM
Great post Coh3n, thanks it was very informative for me :)

Coh3n
08-31-2009, 11:29 PM
Great post Coh3n, thanks it was very informative for me :)

Not a problem, glad I could help you out. :)

fifa499
09-01-2009, 08:14 AM
with vista people may have to create the folder's on the desktop and svn checkout them there due to permission failure it's the only thing that work's

Coh3n
09-01-2009, 08:24 AM
with vista people may have to create the folder's on the desktop and svn checkout them there due to permission failure it's the only thing that work's

That why you follow the "Fixing Common Problems" part of the tutorial. :p It tells you how to edit the permissions so it will work.

fifa499
09-01-2009, 11:03 AM
i tried all that coh3n otherwise i wouldnt of said anything.

Coh3n
09-01-2009, 09:28 PM
i tried all that coh3n otherwise i wouldnt of said anything.

Hmm so it didn't work even after you edited the permissions?

outlaa
09-04-2009, 05:26 PM
I download the new srl Releas for update from Rs i Start a Script whit The Scar
The program Essminer and it starts it says compiled And i dont Get 2 see a smart Screen it dosent Start is That a problem Whit my scar or a problem whit The Script

YoHoJo
09-04-2009, 05:36 PM
I download the new srl Releas for update from Rs i Start a Script whit The Scar
The program Essminer and it starts it says compiled And i dont Get 2 see a smart Screen it dosent Start is That a problem Whit my scar or a problem whit The Script

Well first of all, you need to see if the essminer SCRIPT is even SMART compatible. Near the top of the script of you should see in green letters something like ".include smart.scar" if not, then that script doesnt use smart, and you just gotta go to runescape on your web browser and run the script.
Also, if your having problems with a specific script, then post the problem there please.

outlaa
09-04-2009, 05:45 PM
Its whit all The Scripts I used Them before They Workt



stil u dont see a smart screen coming up

SRL Compiled in 16 msec
SMART Initialized.
Loaded: Server 30, Members: False, Signed: True, Super Detail: False.

Coh3n
09-04-2009, 10:35 PM
Its whit all The Scripts I used Them before They Workt



stil u dont see a smart screen coming up

SRL Compiled in 16 msec
SMART Initialized.
Loaded: Server 30, Members: False, Signed: True, Super Detail: False.
SMART is currently broken. It will load if you use an Unsigned client, but even then I haven't been able to get anything to log in. Your best bet would be to forget using SMART for now, and so what YoHoJo said.

outlaa
09-04-2009, 10:39 PM
Ok Thx

Mr. Doctor
09-05-2009, 03:39 AM
I think the reflection svn link thing is broken. Saying

Command: Checkout from http://scardevreflection.googlecode.com/svn/trunk, revision HEAD, Fully recursive, Externals included
Error: OPTIONS of 'http://scardevreflection.googlecode.com/svn/trunk': could not
Error: connect to server (http://scardevreflection.googlecode.com)
Finished!:

Ovation
09-05-2009, 04:21 AM
Go to your Includes folder (...SCAR 3.21/Includes), there should be a file called "Placeholder". It is your choice to delete it or not.

Once you are in the Includes folder, right click, and make a new folder, call it SRL.

Right click on the SRL folder and choose "SVN Checkout". Enter the following link, and click OK.
Code:
http://www.villavu.com/repositories/srl-opendev

That part doesnt work for me... When i click SVN CHeckout and put in the link, it starts downlaoding, but this error message comes: Can't create directory 'C:\Program Files\SCAR 3.21\Includes\SRL\.svn': Ingen

Coh3n
09-05-2009, 04:47 AM
I think the reflection svn link thing is broken. Saying

Thanks, I'll look in to it.

EDIT: It works fine for me:

http://i30.tinypic.com/ay4w9z.jpg

@Ovation: Check the PM I sent you. ;)

EDIT2: I just edited the guide, so hopefully it's a little more clear for you guys. :) Enjoy!

m a d ranger
09-06-2009, 07:21 AM
Thanks for the great tutorial, finally got this working on my other comp. Been having tons of trouble with SCAR/SVN on that machine but this tutorial fixed it up :D

Coh3n
09-06-2009, 07:46 AM
Thanks for the great tutorial, finally got this working on my other comp. Been having tons of trouble with SCAR/SVN on that machine but this tutorial fixed it up :D

Hey that's great to hear, I'm glad I could help you out. :D

mattt7
09-06-2009, 12:13 PM
Since this thread is active, ah what the heck i'll ask my question :)

Every time the tut told me to "move everything inside 'place inside plugins' folder to your plugins folder", when i did this it asked me to overwrite file a with file a. and file b with file b. ect...
So I already had everything i needed inside my plugins folder without any work?
Is that normal? hahah
Thanks in advance :)

mattt7
09-06-2009, 12:23 PM
OK, so today I got a new laptop for college, its a Mac. Can I still run scar? and what would a replacement be for tortoisesvn be? Its not compatible with a mac


Well since SCAR it for windows, you should research a program that can run Windows applications in Mac. Similar to WINE and Ubuntu. I know nothing about Macs, so I don't know one off the top of my head. For the SVN thing, also research Mac SVN applications. You would think there would be something out there.

Sorry for the double post...

Uhm to run windows on your mac: you could run bootcamp, Parallel Desktop, VMWareFusion. Those are the main ones.

Parrellel Desktop and VMWareFusion runs windows as an application on your mac, while Bootcamp is actually running true windows.

Here's a quick little comparison i found in the interwebs to get you started off: http://www.labnol.org/software/download/compare-parallels-bootcamp-fusion-vmware-review/1036/

Coh3n
09-06-2009, 09:45 PM
Since this thread is active, ah what the heck i'll ask my question :)

Every time the tut told me to "move everything inside 'place inside plugins' folder to your plugins folder", when i did this it asked me to overwrite file a with file a. and file b with file b. ect...
So I already had everything i needed inside my plugins folder without any work?
Is that normal? hahah
Thanks in advance :)

Hmm no, that's not normal, I've never heard of that happening before. Lol, but I'm assuming you got SCAR working just fine? Well, hoping you did. :p

rspur
09-07-2009, 02:55 AM
Help! wen i run SCAR 3.22 beta i open the script do evrything rite then wen SMART is supposed to open up it doesent but on the botttom it says script running plz help! i have moved all plug ins and i hav subversion and i have made a reflecton folder and all that
If u can help PLZ PM me :)

King ?
09-07-2009, 04:52 AM
im having the same problem, im using multi fighter and the mouse just hovers around the screen a bit and scar never opens. trying to mess around with settings but iv not had any luck yet

Coh3n
09-07-2009, 05:35 AM
To the both of you, it could be that the script you're trying to run is messed up. Try running another script and see if that works. Also, make sure you downloaded the Open Dev Repository properly. If you didn't, SMART will not work.

King ?
09-07-2009, 06:25 AM
haha thanks for the tip, i have dev repository of srl latest loaded and have used the smart fix as directed by that thread, i thought it must be the script, but the thread says it is working and when i mentioned it there they said the same thing. il just uninstall everything and start again i suppose, will update here if it works. thanks

Coh3n
09-07-2009, 08:28 AM
haha thanks for the tip, i have dev repository of srl latest loaded and have used the smart fix as directed by that thread, i thought it must be the script, but the thread says it is working and when i mentioned it there they said the same thing. il just uninstall everything and start again i suppose, will update here if it works. thanks

Okay. Also, since the update, I haven't really been able to try any scripts out, so I don't know exactly how to fix some problems from personal experience. When I get back home I'm going to update my scripts/guides the way I made it work, so hopefully that will work for other people as well.

Darkgamer
09-08-2009, 03:01 AM
bass.dll not found. I'm running 64bit if that helps.

Coh3n
09-08-2009, 03:04 AM
bass.dll not found. I'm running 64bit if that helps.

Try opening SCAR, go to Tools > Associate .scar files

See if that helps.

Darkgamer
09-08-2009, 03:05 AM
Try opening SCAR, go to Tools > Associate .scar files

See if that helps.

Fast reply was fast. But I just ran fixscar and it downloaded the necessary files.

Coh3n
09-08-2009, 03:06 AM
Fast reply was fast. But I just ran fixscar and it downloaded the necessary files.

Oh nice, I'm going to add that to the first post. :)

Darkgamer
09-08-2009, 03:07 AM
Oh nice, I'm going to add that to the first post. :)

Mmmk I'm currently following the tutorial, I'll tell you how it works out.

Coh3n
09-08-2009, 03:17 AM
Mmmk I'm currently following the tutorial, I'll tell you how it works out.

Okay great! :) I hope it's easy enough for you to follow.

Darkgamer
09-08-2009, 03:43 AM
Okay great! :) I hope it's easy enough for you to follow.

I installed it fine but I tryed to run a script and it's not working :(

Coh3n
09-08-2009, 04:04 AM
I installed it fine but I tryed to run a script and it's not working :(

Could you be more specific, what exactly isn't working?

Ayrtoo
09-09-2009, 02:07 PM
Thank you for tut very helpful Rep++ :D

Coh3n
09-09-2009, 08:18 PM
Thank you for tut very helpful Rep++ :D

No problem, I'm always happy to help out. :D

l3v3l 1 pj3r
09-14-2009, 11:45 PM
Im folowing this guide thuroly ( if that is misspelt i apologise. ). I have never managed to get scar to work, but i have autoed with rsbot in the past. I want to give both bots a chance and see which one is better for me. I hope this works because ive been told scar is very undetectable and an all round good bot. Il update this post saying wether it worked or not but in the meen-time, Thanks. I hope i can contribute to this comunity in the future.

Gsus
09-15-2009, 09:02 AM
Thanks. Probably the best guide about setting up scar, which is probably why it is stickied lol.

Coh3n
09-15-2009, 08:43 PM
Im folowing this guide thuroly ( if that is misspelt i apologise. ). I have never managed to get scar to work, but i have autoed with rsbot in the past. I want to give both bots a chance and see which one is better for me. I hope this works because ive been told scar is very undetectable and an all round good bot. Il update this post saying wether it worked or not but in the meen-time, Thanks. I hope i can contribute to this comunity in the future.

Hey that's a good attitude to have, and you'll soon see how much better SRL is than RSBot. :rolleyes:


Thanks. Probably the best guide about setting up scar, which is probably why it is stickied lol.

Thanks! I didn't even know it was stickied. Lol, thanks to whoever did that!

Imayer
09-29-2009, 09:12 PM
Great guide man!
I have used it like 3 times now on my computers, it realy helps, i have followed all steps and i think that without this guide i wouldnt be autoing right now :D

Coh3n
10-01-2009, 04:58 AM
Great guide man!
I have used it like 3 times now on my computers, it realy helps, i have followed all steps and i think that without this guide i wouldnt be autoing right now :D
That's great to hear! I'm glad you like it and that it works for you. :)

moody
10-01-2009, 09:47 AM
dude im so lost i dont know if ive downloaded the rong things or not compiled the right stuff because all the giudes u r showing me dont look like the scar that ive downloaded i got 3.21 on vista and tortoise but i dont know how to download srl and reflection plz if u can spare like a few mins to help me out

Seizure
10-01-2009, 11:04 AM
You think you can help me out with my SVN error?
http://www.villavu.com/forum/showthread.php?goto=newpost&t=51264

Coh3n
10-02-2009, 06:04 AM
dude im so lost i dont know if ive downloaded the rong things or not compiled the right stuff because all the giudes u r showing me dont look like the scar that ive downloaded i got 3.21 on vista and tortoise but i dont know how to download srl and reflection plz if u can spare like a few mins to help me out

I can't explain it any clearer than I have in this guide, sorry. :( If you've downloaded SCAR using the SVN link, you do the same thing for SRL and Reflection.


You think you can help me out with my SVN error?
http://www.villavu.com/forum/showthread.php?goto=newpost&t=51264

I have absolutely no idea. I've never even seen that error before, sorry. :(

warlord1994
10-04-2009, 07:41 AM
Great guide, definatley helped me with my autoing rustiness.

yosupg
10-11-2009, 04:07 AM
even after doing this step by step(3 times) i still get this error
Line 96: [Error] (146:197): Invalid number of parameters in script C:\Users\Gateway\Desktop\scarprerelease\includes\S RL\SRL\Misc\Smart.scar

Coh3n
10-11-2009, 02:28 PM
even after doing this step by step(3 times) i still get this error
Line 96: [Error] (146:197): Invalid number of parameters in script C:\Users\Gateway\Desktop\scarprerelease\includes\S RL\SRL\Misc\Smart.scar

Hmm, you're the second person to come to me with this error. I would say to make sure you have the latest version of SRL, but you should if you followed this guide. Something may be messed up with SMART, you may just have to wait until it gets fixed.

yosupg
10-11-2009, 09:41 PM
Hmm, you're the second person to come to me with this error. I would say to make sure you have the latest version of SRL, but you should if you followed this guide. Something may be messed up with SMART, you may just have to wait until it gets fixed.

ok, i fixed the problem. but now smart comes up and it doesnt ever log in.

MylesMadness
10-11-2009, 09:43 PM
ok, i fixed the problem. but now smart comes up and it doesnt ever log in.You have to manually pick fixed size

yosupg
10-12-2009, 02:18 PM
You have to manually pick fixed size

how?

Bobarkinator
10-13-2009, 12:13 AM
Hmm, you're the second person to come to me with this error. I would say to make sure you have the latest version of SRL, but you should if you followed this guide. Something may be messed up with SMART, you may just have to wait until it gets fixed.

The Embedded_Smart.dll in SRL needs a width and height in the parameters for SmartSetup. The Embedded_Smart.dll in Reflection doesn't need these two parameters when calling SmartSetup so it throws and error because Smart.scar has calls SmartSetup(root, params, width, height)

Coh3n
10-14-2009, 12:18 AM
how?
I'm pretty sure it's in the graphics options on the RS login screen.


The Embedded_Smart.dll in SRL needs a width and height in the parameters for SmartSetup. The Embedded_Smart.dll in Reflection doesn't need these two parameters when calling SmartSetup so it throws and error because Smart.scar has calls SmartSetup(root, params, width, height)
Yeah, I learned this shortly after I posted. :) Just forgot to edit.

Zerghunter3000
10-17-2009, 06:30 AM
Umm, I keep getting this error, can aynone plz help?
this is for tortoise svn. Failed!?



Command: Checkout from http://www.villavu.com/repositories/srl-opendev, revision HEAD, Fully recursive, Externals included
Error: Can't create directory 'C:\Program Files\SCAR 3.21\Includes\SRL\.svn': Access
Error: is denied.
Finished!:

O.O
And at the top it says:


srl-opendev - Checkout - TortoiseSVN Failed!

YoHoJo
10-17-2009, 06:41 AM
ZergHuner: http://www.villavu.com/forum/showpost.php?p=619068&postcount=86
(It says how to fix your error at bottom of the first post -.-)
Learn to use the search button man cmon :D.
Also, Zerg pwns YOU!

Tresscross
10-18-2009, 05:22 PM
lol the torstase thing is as slow as a tortoise at downloading (i am atm)
When im done ima rep you because this helped ;D

Coh3n
10-18-2009, 07:57 PM
lol the torstase thing is as slow as a tortoise at downloading (i am atm)
When im done ima rep you because this helped ;D
Lol thanks, but it wasn't slow for me. You're internet connection may have been bad when you downloaded it.

Alek000
10-31-2009, 03:41 AM
I know this is an old post and sorry if you guys see it as grave digging, but I set up everything and scripts work except for scripts with forms. The scripts compile then the forms come up, and Scar throws an error and closes. Anyone else have this problem?

Coh3n
10-31-2009, 12:47 PM
I know this is an old post and sorry if you guys see it as grave digging, but I set up everything and scripts work except for scripts with forms. The scripts compile then the forms come up, and Scar throws an error and closes. Anyone else have this problem?
You can't gravedig a stickied post. ;) I haven't heard of this problem personally. Could you copy/paste the error message you get?

crusader657
11-01-2009, 05:00 PM
I'm having trouble setting SCAR up on a 64-bit Vista. I have heard rumors that it won't work on that OS. Is that true? I have done everything anyone has suggested to solve my problems but none of them work.

Coh3n
11-02-2009, 12:36 AM
I'm having trouble setting SCAR up on a 64-bit Vista. I have heard rumors that it won't work on that OS. Is that true? I have done everything anyone has suggested to solve my problems but none of them work.
I've never heard of this problem. What kind of errors are you getting?

Orrealis
11-02-2009, 05:32 PM
this guide was awsome, i made it great :D

Coh3n
11-02-2009, 09:38 PM
this guide was awsome, i made it great :D
Lol what do you mean you made it great?

op_ivy_freak
11-04-2009, 02:37 AM
Hi, I jus installed Scar 3.21 and it gives me this bass.dll missing error. I am using Windows 7, and I have tried looking up for all those dll's but i only found 1, and I need the other ones. Is there any other way to fix this? I also tried downloading an older version and using that, but it didn't work.

Coh3n
11-04-2009, 03:14 PM
Hi, I jus installed Scar 3.21 and it gives me this bass.dll missing error. I am using Windows 7, and I have tried looking up for all those dll's but i only found 1, and I need the other ones. Is there any other way to fix this? I also tried downloading an older version and using that, but it didn't work.

When you open your SCAR folder, there is an application called "fixscar". Run that, and it should fix your problem.

op_ivy_freak
11-04-2009, 04:03 PM
When you open your SCAR folder, there is an application called "fixscar". Run that, and it should fix your problem.

I have tried that too, but no luck.

Coh3n
11-04-2009, 04:26 PM
I have tried that too, but no luck.
I don't remember the site, but if you Google "bass.dll" or something like that, there are places you can download all the missing Windows .dll files.

op_ivy_freak
11-05-2009, 01:04 AM
I don't remember the site, but if you Google "bass.dll" or something like that, there are places you can download all the missing Windows .dll files.
I have looked up bass.dll and found it, but now I need bassflac.dll and I am not finding anything to download. I have looked at some sites that have dlls but no luck.

EDIT: I have downloaded another bass.dll and now when I try to open Scar it gives me this error: The procedure entry point _ could not be located in the dynamic link library BASS.dll. Did anyone get this error before?

EDIT2: Could you upload your bass.dll file (it should be in your system32 folder)?

Coh3n
11-05-2009, 02:28 PM
I have looked up bass.dll and found it, but now I need bassflac.dll and I am not finding anything to download. I have looked at some sites that have dlls but no luck.

EDIT: I have downloaded another bass.dll and now when I try to open Scar it gives me this error: The procedure entry point _ could not be located in the dynamic link library BASS.dll. Did anyone get this error before?

EDIT2: Could you upload your bass.dll file (it should be in your system32 folder)?
Weird, I've never seen that error before. I've attached my bass.dll file.

Orrealis
11-05-2009, 04:11 PM
Thanks for this awsome guide, but i got one prob. :p thats that i just cant fill in how many players and all that, i doesn't understand how to do :p im pretty bad at scripts and just began auto, so i dont realy know how to do :p

Coh3n
11-05-2009, 04:13 PM
Thanks for this awsome guide, but i got one prob. :p thats that i just cant fill in how many players and all that, i doesn't understand how to do :p im pretty bad at scripts and just began auto, so i dont realy know how to do :p
Fill in DeclarePlayers you mean? I'll give you an example. This is from my PowerChopper:

with Players[0] do
begin
Name := 'Coh3n';
Pass := 'MyPassword';
Nick := 'oh3';//3-4 lowercase letters from username.
Active := True;//Use this player?
Strings[0] := 'yew';//Which tree to cut?
Integers[0] := 4000;//How many logs to cut?
Booleans[0] := True;//Is hatchet equiped?
Booleans[1] := True;//Take breaks?
BoxRewards := ['amp', 'mote', 'ostume', 'oins', 'unes', 're', 'ems'];
end;

I hope that helps. :)

Coh3n

Orrealis
11-05-2009, 04:13 PM
btw, im using ur Coh3n's Anywhere PowerChopper [Non-SMART] V.1.8.scar, i dont know if its old or anything, b/c im bad :D but, i will be happy if some1 answers my problem :)

sorry, didn't see u answerd :D
thanks! :)

Coh3n
11-05-2009, 04:15 PM
btw, im using ur Coh3n's Anywhere PowerChopper [Non-SMART] V.1.8.scar, i dont know if its old or anything, b/c im bad :D but, i will be happy if some1 answers my problem :)

sorry, didn't see u answerd :D
Haha, good thing I picked the right script for my example then. :p

EDIT: No problem. :D

Orrealis
11-05-2009, 04:26 PM
hehe, now im starting getting angry :) this is so weird, b/c it just comes up like this :
/\____\ _______/ / /___ _\/___ \_____ /\____\
/ / ___\/\______\/ /____\\____/ /_____\/ / ____\
/ / /__ / / ___ / ____ //___ / ____ \/ /___\
/ / /___\ / /__/ / / / / /____/ / / / / /____ /
\/_______//______/_/ /_/_/______/_/__/_/_/____/ /
\/___________________/
Anywhere Powerchopper V.1.8!
Loading, please wait...
SRL Compiled in 16 msec

and then it doesn't happends anything , ive been waiting in like 5 min, and it doesn't do anything. :p

Coh3n
11-05-2009, 04:30 PM
hehe, now im starting getting angry :) this is so weird, b/c it just comes up like this :
/\____\ _______/ / /___ _\/___ \_____ /\____\
/ / ___\/\______\/ /____\\____/ /_____\/ / ____\
/ / /__ / / ___ / ____ //___ / ____ \/ /___\
/ / /___\ / /__/ / / / / /____/ / / / / /____ /
\/_______//______/_/ /_/_/______/_/__/_/_/____/ /
\/___________________/
Anywhere Powerchopper V.1.8!
Loading, please wait...
SRL Compiled in 16 msec

and then it doesn't happends anything , ive been waiting in like 5 min, and it doesn't do anything. :p
Hmm, I just tested it with mine and it worked fine. Since you aren't using the SMART version, did you drag your crosshairs? If you did, once you run the script, it should switch to the RS screen, check the graphics, then log in your player and start cutting.

Orrealis
11-05-2009, 04:46 PM
yea, it switches to the RS screen, then it doesn't do anything more, i dont need to fill in anything else then this? :
with Players[0] do
begin
Name := 'Username';
Pass := 'Password';
Nick := 'Nick';//3-4 lowercase letters from username.
Active := True;//Use this player?
Strings[0] := '';//Which tree to cut?
Integers[0] := 2000;//How many logs to cut?
Booleans[0] := True;//Is hatchet equiped?
Booleans[1] := True;//Take breaks?
BoxRewards := ['amp', 'mote', 'ostume', 'oins', 'unes', 're', 'ems'];
end;

Coh3n
11-05-2009, 05:01 PM
yea, it switches to the RS screen, then it doesn't do anything more, i dont need to fill in anything else then this? :
with Players[0] do
begin
Name := 'Username';
Pass := 'Password';
Nick := 'Nick';//3-4 lowercase letters from username.
Active := True;//Use this player?
Strings[0] := '';//Which tree to cut?
Integers[0] := 2000;//How many logs to cut?
Booleans[0] := True;//Is hatchet equiped?
Booleans[1] := True;//Take breaks?
BoxRewards := ['amp', 'mote', 'ostume', 'oins', 'unes', 're', 'ems'];
end;

You have to say which tree you want to cut, and where is says 'Username', that's where you actually put your RS username.

Orrealis
11-05-2009, 05:04 PM
(im posting realy much now ) yeah, i do that, but it doesn't move, i doesn't know, its maybe pretty hard to understand me :p b/c im bad english i doesn't get words to describe, but yy, i got to try some more, :)

Coh3n
11-05-2009, 05:19 PM
(im posting realy much now ) yeah, i do that, but it doesn't move, i doesn't know, its maybe pretty hard to understand me :p b/c im bad english i doesn't get words to describe, but yy, i got to try some more, :)
Lol, you don't use the right words sometimes, but I know what you're trying to say. :p

Make sure you have the latest version of SCAR/SRL. Other than that, I don't know what to tell you. It should be working fine.

Orrealis
11-05-2009, 05:23 PM
yeah, i just followed your guide, and made all right, what i saw, but i think i made something wrong with the pluggin move, so i am goin to look at that..

Orrealis
11-05-2009, 05:53 PM
so, one more question ;) am i going to loggin, or the script?

Coh3n
11-05-2009, 06:03 PM
so, one more question ;) am i going to loggin, or the script?
The script should log in for you. You can start the script with your character logged in if you wish. It's up to you.

Orrealis
11-05-2009, 06:07 PM
ok : )

op_ivy_freak
11-05-2009, 11:52 PM
Weird, I am still getting the wrong version error. Do you know if there is any way to get the bass file that "fixscar" downloads?
EDIT: I have fixed it. I went into my system32 folder, and I have deleted all the bass.dll related files. Then I have reinstalled Scar, and used "fixscar" which downloaded the correct dlls. The problem was that "fixscar" could not overwrite the bass.dll I had before and bassflac.
Thanks Coh3n.

Coh3n
11-09-2009, 06:47 PM
Weird, I am still getting the wrong version error. Do you know if there is any way to get the bass file that "fixscar" downloads?
EDIT: I have fixed it. I went into my system32 folder, and I have deleted all the bass.dll related files. Then I have reinstalled Scar, and used "fixscar" which downloaded the correct dlls. The problem was that "fixscar" could not overwrite the bass.dll I had before and bassflac.
Thanks Coh3n.
Hey I'm glad you liked my guide and I'm glad you figured out your problem. I'm going to add your little fix to the front page if it's alright. I'll PM you with some more details I need.

Thanks,

Coh3n

op_ivy_freak
11-13-2009, 03:39 AM
Hey I'm glad you liked my guide and I'm glad you figured out your problem. I'm going to add your little fix to the front page if it's alright. I'll PM you with some more details I need.

Thanks,

Coh3n

Sorry I havn't replied fast, cause something was wrong with my Internet broswer and would not let me send pms.

Coh3n
11-13-2009, 04:24 PM
Sorry I havn't replied fast, cause something was wrong with my Internet broswer and would not let me send pms.
Don't worry at all, better late then never. ;)

Java Lava
11-18-2009, 01:01 PM
Thanks a lot for this I was wondering why Scar still was not working for me after following an outdated tutorial :)

Coh3n
11-19-2009, 05:26 AM
Thanks a lot for this I was wondering why Scar still was not working for me after following an outdated tutorial :)

Haha, well I'm glad you got it figured out.

Cigue
11-19-2009, 07:27 PM
I've been autoing for a while and just noticed that a few of my files have the red ! sign next to them, meaning they're broken or non-functional.

the files are...
IrokiPlugin.dll
IrokiPlugin.dpr (both in plugins folder)
SRL.scar
Compile SRL.scar
Globals.scar (in core folder)
Leo.scar (in AntiRandoms folder)

Is this normal?

Coh3n
11-19-2009, 07:47 PM
I've been autoing for a while and just noticed that a few of my files have the red ! sign next to them, meaning they're broken or non-functional.

the files are...
IrokiPlugin.dll
IrokiPlugin.dpr (both in plugins folder)
SRL.scar
Compile SRL.scar
Globals.scar (in core folder)
Leo.scar (in AntiRandoms folder)

Is this normal?
It happens. All you need to do is update your SRL and they'll all go away.

solitudee
11-23-2009, 01:28 AM
Whenever I do the scarprerelease step, the one where I'm installing scar, it keeps failing. I get almost to the end and then it says error on the last three or so lines. Is this normal? Then it stops and I can click ok.

EDIT: "In directory 'C:\Documents and Settings\Administrator\My Documents\scarprerelease'
Error processing command 'readonly' in 'C:\Documents and
Settings\Administrator\My Documents\scarprerelease'
Can't set file 'C:\Documents and Settings\Administrator\My
Documents\scarprerelease\.svn\text-base\scar.exe.svn-base' read-only: The
system cannot find the file specified.
Finished!""

This is what it says exactly.

Coh3n
11-23-2009, 01:31 AM
That's not suppose to happen. Does it say "Access denied"? If so, there's a fix at the bottom of the guide.

I hope that helps,

Coh3n

Cigue
11-23-2009, 04:42 AM
It happens. All you need to do is update your SRL and they'll all go away.

I update using TortoiseSVN and nothing?

zionz
11-23-2009, 05:18 AM
Need some help, smart wont work for me anymore, doens't have the red cursor or anything logging in and shit, just sits there at login...

Coh3n
11-23-2009, 03:29 PM
I update using TortoiseSVN and nothing?
Okay, well you must have edited a function in those files. Try deleting the files with the exclamation point on them, and then try updating SRL. Those files you deleted should be added, this time with the check mark.


Need some help, smart wont work for me anymore, doens't have the red cursor or anything logging in and shit, just sits there at login...
I have no idea, SMART isn't working properly for me either. The only thing I can tell you is try updating your Java and see if that helps.


Coh3n

Death-Magnetic
11-23-2009, 08:11 PM
This is a great tutorial, because it includes alot and it is and have been up to date a while.
Thanks for making this thread Coh3n!

~DM

Coh3n
11-23-2009, 08:13 PM
This is a great tutorial, because it includes alot and it is and have been up to date a while.
Thanks for making this thread Coh3n!

~DM
Lol no problem, I'm glad you like it. :biggrin:

xxgodsmackxx321
11-24-2009, 12:05 AM
Scar isnt working. whenever i download it (svn, or freddy1990's site) it doesnt work. from svn itll say unable to install scar.exe or something, and from the freddies site, when i select run after finishing, an error will come up saying

Unable to execute file
C:\program files\scar 3.22\scar.exe
createprocess failed; code 2
the system cannot find the file specified.

any help?

edit: if you can, send me a msg through yahoo messenger, my name is jjstaffen, or email me at jjstaffen@yahoo.com so i can get this quicker, thank you

solitudee
11-24-2009, 12:38 AM
That's not suppose to happen. Does it say "Access denied"? If so, there's a fix at the bottom of the guide.

I hope that helps,

Coh3n

It doesn't say Access Denied :(
Then I look at it and it says I need to clean up scarprerelease...

Coh3n
11-24-2009, 01:23 AM
It doesn't say Access Denied :(
Then I look at it and it says I need to clean up scarprerelease...
Hmm, weird. Try downloading it at this site:

http://freddy1990.com/scar.php

I'm going to add this part to the guide. You can also try running 'fixscar.exe' found in the scarprerelease folder.

@Godsmack: I emailed you.

xxgodsmackxx321
11-24-2009, 02:11 AM
Hmm, weird. Try downloading it at this site:

http://freddy1990.com/scar.php

I'm going to add this part to the guide. You can also try running 'fixscar.exe' found in the scarprerelease folder.

@Godsmack: I emailed you.

tried the fixscar, and when i ran it, i got an error that it couldnt find that file either.. hmm, gonna have to take a look around

edit: got it working, mcafee automatically deletes the file whenever i download it. just gotta work around that now

Coh3n
11-24-2009, 02:29 AM
tried the fixscar, and when i ran it, i got an error that it couldnt find that file either.. hmm, gonna have to take a look around

edit: got it working, mcafee automatically deletes the file whenever i download it. just gotta work around that now
That would have been my next guess. McAfee was a pain the whole time I had it. If you're working on your computer and not your parents, I would suggest getting AVG. It's free, and much better then McAfee and Norten and those other corporate companies.

Nava2
11-27-2009, 01:07 PM
Installing SCAR on WINE:

Download this (http://freddy1990.com/download.php?uid=cRcDp3WPXoXrXPr7yxYO) file, saving it to ~/.

Run the following in a terminal:

sudo apt-get install Wine svn && wine ~/SCAR315bsetup.exe && cd ~/.wine/drive_c/Program\ Files/SCAR\ 3.15/Includes/ && svn co http://www.villavu.com/repositories/srl-opendev SRL && cd ~/

This command will install WINE, SvN, and SCAR.

To update to the newest SRL Rev do:

cd ~/.wine/drive_c/Program\ Files/SCAR\ 3.15/Includes/SRL/ && svn up && cd ~/

Just thought I would add this in since I was looking for it.

Coh3n
11-27-2009, 03:24 PM
Awesome, I'll add that to the first post, thanks. :smile:

sysofadwn06
11-28-2009, 08:37 PM
Thanks a lot for the guide man. It helped me fix a bunch of problems I was having.

After struggling for a day to get TortoiseSVN to download and install on my computer I thought I'd be able to run Narcle's Fighter script but whenever SMART loads the RS login screen, both Scar and Smart close with no reason given. Any advice?

Coh3n
11-28-2009, 08:40 PM
Thanks a lot for the guide man. It helped me fix a bunch of problems I was having.

After struggling for a day to get TortoiseSVN to download and install on my computer I thought I'd be able to run Narcle's Fighter script but whenever SMART loads the RS login screen, both Scar and Smart close with no reason given. Any advice?
I've heard of that happening once or twice, it's even happened to be the odd time, but I've never heard of that happening EVERY time. Have you tried running the script without SMART?

sysofadwn06
11-28-2009, 08:57 PM
To run it without SMART, I take "{.include SRL/SRL/misc/smart.scar}," etc. out of the script and then run the game in my browser?

Coh3n
11-28-2009, 08:58 PM
To run it without SMART, I take "{.include SRL/SRL/misc/smart.scar}," etc. out of the script and then run the game in my browser?
Yes, there's also a part, probably at the end of the script that says SMARTWorld/SMARTServer, SMARTClient, something along those lines. You also have to take all that out.

sysofadwn06
11-28-2009, 09:02 PM
I'm finding a few instances of SMART-related commands throughout the script - can I remove them without changing anything drastically? Example..


Procedure FFStartUp;
var
i: integer;
begin
NarcSig;
Smart_Server := SmartServer;
Smart_Members:= SmartMembers;
Smart_Signed := SmartSigned;
SetupSRL;

Coh3n
11-28-2009, 09:04 PM
I'm finding a few instances of SMART-related commands throughout the script - can I remove them without changing anything drastically? Example..
Yeah, those are the ones I was trying to point out. ;)

sysofadwn06
11-28-2009, 09:13 PM
Line 37: [Error] (37:1): Unknown identifier 'HowManyPlayers' in script C:\Program Files\SCAR 3.22\Scripts\Narcle Fighter


procedure DeclarePlayers;
begin
HowManyPlayers := 1;//Change this accordingly
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;

:duh:

This has happened on another script and I fixed it, but I have no idea how to in this one. Last time I think added var (x,y) or somethign like it to the beginning of the script.

Coh3n
11-28-2009, 09:31 PM
Did you take out the "SetupSRL" that was on the line after the SMART settings? Because that would cause that error.

sysofadwn06
11-28-2009, 09:39 PM
I hadn't removed it. I tried it and now I get


Line 37: [Error] (37:1): Unknown identifier 'HowManyPlayers' in script C:\Program Files\SCAR 3.22\Scripts\Narcle Fighter.scar


procedure DeclarePlayers;
begin
HowManyPlayers := 1;//Change this accordingly <<line 37
NumberOfPlayers(HowManyPlayers);
CurrentPlayer := 0;

I was thinking adding HowManyPlayers = 1; to this...

Const
UseForm = True;//Use form? [true/false] False uses DeclarePlayers;
LogoutIn = 34;//Logout every ?? Minutes; +/- 3 minutes for randomness

...would help. But that yields..


Line 37: [Error] (37:1): Variable Expected in script C:\Program Files\SCAR 3.22\Scripts\Narcle Fighter.scar

I appreciate the help man but if you're getting tired of this I'll understand.

FEAR
12-01-2009, 02:33 PM
I hadn't removed it. I tried it and now I get




I was thinking adding HowManyPlayers = 1; to this...


...would help. But that yields..



I appreciate the help man but if you're getting tired of this I'll understand.

Thats because Narcles Fast Fighter already has HowManyPlayers in line 46 *frown*


Need some help, smart wont work for me anymore, doens't have the red cursor or anything logging in and shit, just sits there at login...

Manually start Runescape and set the graphics settings to Fixed.

Coh3n
12-01-2009, 08:43 PM
@sysofadwn06: Start over. Redownload the script and remove line 23. That's all you need to do. Sorry for all the confusion. If you've already figured it out then just ignore me. :tongue:

Nava2
12-05-2009, 07:22 AM
@sysofadwn06: Start over. Redownload the script and remove line 23. That's all you need to do. Sorry for all the confusion. If you've already figured it out then just ignore me. :tongue:

Its because he didn't include SRL. :)

Oh, and I lol'd when I compared how to install 3.15b on linux vs. any other release on windows.

Soo much easier via linux. :)

Coh3n
12-05-2009, 01:32 PM
Its because he didn't include SRL. :)

Oh, and I lol'd when I compared how to install 3.15b on linux vs. any other release on windows.

Soo much easier via linux. :)
Lol. I'd say, it's like one command and you're done.

Zerorex
12-05-2009, 08:41 PM
Euhm im having a Bit of a problem with the SVN Checkout part, I run it and press so that it will start then some kind of Window pops up Saying the addres i was supposed to type in then OK is pressed in so i cant press it and nothing is happening? :S (Im new to all this)

Coh3n
12-05-2009, 11:20 PM
Euhm im having a Bit of a problem with the SVN Checkout part, I run it and press so that it will start then some kind of Window pops up Saying the addres i was supposed to type in then OK is pressed in so i cant press it and nothing is happening? :S (Im new to all this)
The only thing I can think of is that you didn't put the SVN link into the right address bar. :confused:

Zerorex
12-06-2009, 10:36 AM
i think i did put it into the right address bar? can u make like a Picture of how its supposed to look like?


EDIT: Nvm i got it working somehow xD

Coh3n
12-06-2009, 03:07 PM
i think i did put it into the right address bar? can u make like a Picture of how its supposed to look like?


EDIT: Nvm i got it working somehow xD
Lol okay. Don't be afraid to ask if you have any other questions. :smile:

kevinconklin
12-09-2009, 02:09 PM
Thanks so much, im new and i really needed this! thanks!

Gnashman
12-10-2009, 07:12 PM
First of all thanks for the guide, it seemed to all work perfectly. I haven't tried to run a script yet but I'm sure it will be fabulous when I do.

I'm totally new here and I'm sorry if this is the wrong place to ask this question. If it's out of line please point me to the right place to ask. So here's the question: If I update SRL via SVN do I need to re-move my plugins or is that a once and done thing?

Floor66
12-10-2009, 07:43 PM
I'm not too sure about that one. Best is to just move them every time (c'mon, it's like... once a month+?) so you have it all up-to-date :)

Gnashman
12-10-2009, 08:57 PM
I'm not too sure about that one. Best is to just move them every time (c'mon, it's like... once a month+?) so you have it all up-to-date :)

Thanks, I figured you had to move them, but wasn't sure.

Coh3n
12-10-2009, 10:48 PM
Thanks, I figured you had to move them, but wasn't sure.
No, you don't have to move them each time, but if you get a problem after updating, that could be why. ;)

yaron369
12-12-2009, 12:21 AM
Scar doesnt work this keeps coming up
"Line 34: [Error] (5034:10): Duplicate identifier 'ISMOVING' in script X:\Program Files\SCAR 3.22\includes\SRL\SRL\Core\Flag.scar"
please help me fix this

yaron369
12-12-2009, 12:22 AM
my last name is cohen too lol

Coh3n
12-12-2009, 04:25 AM
Scar doesnt work this keeps coming up
"Line 34: [Error] (5034:10): Duplicate identifier 'ISMOVING' in script X:\Program Files\SCAR 3.22\includes\SRL\SRL\Core\Flag.scar"
please help me fix this
Did you get the latest Dev SVN? Because that error should be gone. Try updating again, in case there was a quick fix. And, my first name is Cohen. ;)

benjaa
12-12-2009, 12:41 PM
thankyou so much

Death-Magnetic
12-14-2009, 06:32 PM
I inserted the link (http://scardevreflection.googlecode.com/svn/trunk) in the SVN Checkout, do I then have to do anything else like move plugins, or click the link to Install Reflection?

Thanks!

Coh3n
12-14-2009, 08:44 PM
I inserted the link (http://scardevreflection.googlecode.com/svn/trunk) in the SVN Checkout, do I then have to do anything else like move plugins, or click the link to Install Reflection?

Thanks!
Well if you've downloaded the reflection files, you'll have to move the reflection SMART.dll file, but that sometimes causes an error because parts of reflection are broken. If you get an error, just get rid of the reflection SMART.dll file.

summerboyy
01-03-2010, 08:32 AM
Great tutorial. I'm having a problem. Everytime I run a script, i get this error:

Line 267: [Error] (19933:1): Unknown identifier 'Pete_AnalyzeAnimal' in script C:\Program Files\SCAR 3.23 beta\includes\SRL\SRL\Core\AntiRandoms\PrisonPete. scar

Any idea how i can fix this?

Coh3n
01-03-2010, 03:06 PM
Great tutorial. I'm having a problem. Everytime I run a script, i get this error:

Line 267: [Error] (19933:1): Unknown identifier 'Pete_AnalyzeAnimal' in script C:\Program Files\SCAR 3.23 beta\includes\SRL\SRL\Core\AntiRandoms\PrisonPete. scar

Any idea how i can fix this?
This usually happens as a result of not moving your plugins properly.

mounty1
01-04-2010, 08:46 PM
hi im getting an error in tortiose wondering if anyone knows whats wrong:


In directory 'C:\Users\jamie\Desktop\scarprerelease'
Error processing command 'readonly' in 'C:\Users\jamie\Desktop\scarprerelease'
Can't set file
'C:\Users\jamie\Desktop\scarprerelease\.svn\text-base\fixscar.exe.svn-base'
read-only: The system cannot find the file specified.

i tried closing my norton cause thought that might be the problem but didnt help.
i know someone got it working with a similar problem on the other page but he didnt make it clear how.

thanks to any1 who caan help.

Coh3n
01-04-2010, 08:49 PM
hi im getting an error in tortiose wondering if anyone knows whats wrong:



i tried closing my norton cause thought that might be the problem but didnt help.
i know someone got it working with a similar problem on the other page but he didnt make it clear how.

thanks to any1 who caan help.
Make sure the security settings on that folder are all set to "Allow" for your user.

mounty1
01-04-2010, 09:12 PM
Checked all that and no change but i've got it working now.

solution:
i ran tortiose until it came up wit the "readonly" error.
i then downloaded just the scar.exe file but not the scar fix.
then i just followed the srl and reflection parts of the tutorial.
Hope that helps anyone else in the future.

thanks Coh3n

ion
01-04-2010, 09:15 PM
Command: Checkout from http://www.villavu.com/repositories/srl-opendev, revision HEAD, Fully recursive, Externals included

Error: OPTIONS of 'http://www.villavu.com/repositories/srl-opendev': could not connect

Error: to server (http://www.villavu.com)

This is when I try to checkout with the second link on the SRL folder. I am using Vista and have made sure that the folder is not read-only and that users have full permission.

PS.. If you use a different flavor of linux, it may not be apt-get. I was using OpenSuse 11.1 and have to use zypper... not apt-get. It also didn't recognize SVN. That is why I am now on the Vista machine lol.

Coh3n
01-04-2010, 09:57 PM
Command: Checkout from http://www.villavu.com/repositories/srl-opendev, revision HEAD, Fully recursive, Externals included

Error: OPTIONS of 'http://www.villavu.com/repositories/srl-opendev': could not connect

Error: to server (http://www.villavu.com)

This is when I try to checkout with the second link on the SRL folder. I am using Vista and have made sure that the folder is not read-only and that users have full permission.

PS.. If you use a different flavor of linux, it may not be apt-get. I was using OpenSuse 11.1 and have to use zypper... not apt-get. It also didn't recognize SVN. That is why I am now on the Vista machine lol.
I've had your error before, I just tried again later, and it worked.

As for Linux, I know virtually nothing about it, so I honestly don't know what you're talking about, sorry. However, I will edit the first post warning people that my way may not work for every version of Linux.

ion
01-04-2010, 10:10 PM
I've had your error before, I just tried again later, and it worked.

As for Linux, I know virtually nothing about it, so I honestly don't know what you're talking about, sorry. However, I will edit the first post warning people that my way may not work for every version of Linux.

Tried again... to no avail. Not to much of a bothersome though because I managed to get through this step on my Windows 7 and am currently working on the linux one. As to the linux problem, apt-get is Debian based unlike OpenSuse and zyppher.

Of note, I have to admit Vista is still quite disappointing.

However, thank you for the quick response and your guide(s).

Coh3n
01-05-2010, 05:04 AM
Tried again... to no avail. Not to much of a bothersome though because I managed to get through this step on my Windows 7 and am currently working on the linux one. As to the linux problem, apt-get is Debian based unlike OpenSuse and zyppher.

Of note, I have to admit Vista is still quite disappointing.

However, thank you for the quick response and your guide(s).
I agree, Vista is disappointing... in more ways than one. So no matter how many times you try, you get the same error when trying to do an SVN Checkout (Cannot connect)?

ion
01-10-2010, 04:55 AM
I agree, Vista is disappointing... in more ways than one. So no matter how many times you try, you get the same error when trying to do an SVN Checkout (Cannot connect)?

Yes, that is correct. I keep attempting to do this with the same result.

Coh3n
01-10-2010, 05:07 AM
Yes, that is correct. I keep attempting to do this with the same result.
I'm stumped. Usually an error like that is caused from the internet/server timing out, and will work again later. It's odd that you only get this with Vista. However, I can't say I'm surprised. I get 100s of unexplained Vista errors.

The only thing I can tell you is to Google something like "SVN cannot connect error with Vista", or something along those lines. Let me know how it goes. :)

We run u.s.
01-12-2010, 01:14 AM
Funny part is that Freddy slipped a trojan horse into the download for scar.
Much love fredddy...

Wanted
01-12-2010, 01:15 AM
I hope that was a joke, lol

We run u.s.
01-12-2010, 01:28 AM
I hope that was a joke, lol
I get 3 threats through norton while being on his site, and regular version throws trojan horse so nortan has to decline to installation





EDIT:ice read pm?

Coh3n
01-12-2010, 01:32 AM
As far as I know it's not actually a trojan, Norton fails.

We run u.s.
01-12-2010, 01:34 AM
Idk, i had norton for a long time and this is the 1st time i get this bs.

on a new pc so idk :wacko:

Coh3n
01-12-2010, 01:40 AM
Idk, i had norton for a long time and this is the 1st time i get this bs.

on a new pc so idk :wacko:
It's up to you whether you ignore it or not. I think it's just the one file that gets that (fixscar.exe), so you can disable your firewall or w/e, download SCAR, and just delete that file. It's up to you.

We run u.s.
01-12-2010, 01:43 AM
is there a difference between portable edition and regular?
If so, what are they? i cant find descriptions on them about their differences.

Coh3n
01-12-2010, 01:44 AM
is there a difference between portable edition and regular?
If so, what are they? i cant find descriptions on them about their differences.
I have absolutely not idea, but you need to use the SVN link if you want to use any scripts for RuneScape as that version is the only one that has a working uptext OCR.

We run u.s.
01-12-2010, 01:47 AM
Oh and the trojan horse which was detected with norton.
It stops the installation because when trying to install it tried to move to a different folder/rename it self:code2
Yeah so no thanks... i seen that bs before.
same bs with portable version.



EDIT:try to check this report out if you can hit the link.

LINK (http://safeweb.norton.com/report/show?url=freddy1990.com)

Coh3n
01-12-2010, 01:49 AM
Oh and the trojan horse which was detected with norton.
It stops the installation because when trying to install it tried to move to a different folder/rename it self:code2
Yeah so no thanks... i seen that bs before.
same bs with portable version.
Lol you do what you want, it doesn't really matter to me.

We run u.s.
01-12-2010, 01:51 AM
check post above for the EDIT.

Coh3n
01-12-2010, 01:53 AM
check post above for the EDIT.
Again, I'm saying Nortan fails, but it doesn't sound like I'm going to convince you otherwise.

We run u.s.
01-12-2010, 01:56 AM
Well i cant do anything because this bs doesn't let me install...
oh well i'll just have to wait for my old pc to return from the repair shop to get old version of scar on this new pc via cd.

Coh3n
01-12-2010, 01:57 AM
Well i cant do anything because this bs doesn't let me install...
oh well i'll just have to wait for my old pc to return from the repair shop to get old version of scar on this new pc via cd.
Just disable Norton.

We run u.s.
01-12-2010, 02:08 AM
wont allow me too...
Funny computer...:spot::spot:
Oh well seems like i'll have to wait.

Coh3n
01-12-2010, 02:11 AM
wont allow me too...
Funny computer...:spot::spot:
Oh well seems like i'll have to wait.
If you do an SVN Checkout, do you still get that error?

We run u.s.
01-12-2010, 08:27 PM
Yeah gave me same stuff...
I will scan his downloads through a different PC. And if i get the same stuff with a different antivirus, ill just report him/his site.
Because i have 4 extra files which are hidden in his download which looks more than suspicious to me. But i will not act until i have info from both sources.

whitewolf
01-13-2010, 06:15 PM
Can you ctrl alt delete - processes tab - find norton & end it

We run u.s.
01-14-2010, 01:49 AM
Yes i disabled it, but i cant disable norton internet security...
it just reactivates as soon as i click on the browser window.
Its not a problem though, ill just install scar through my old pc.

ion
01-14-2010, 02:59 AM
Mate, change the Norton settings. If you ran AVG you would what a pain in the ass some antivirus' can be. Hell I encrypt my .exe files and they have a 50% shot at surviving. I doubt these files are bad. Post antivirus report?

We run u.s.
01-15-2010, 03:36 AM
Im waiting on the tech guys to call me up so i can go and pick up my desktop.
Until than, cant do anything.

Benge
01-15-2010, 12:29 PM
Thanks great help :)

Benwil06
01-15-2010, 12:48 PM
Wow man this is a great help!
I did have problems with Tortoise SVN but i don't anymore! Thanks :)

shaman
01-18-2010, 02:33 AM
Does anyone know how to do the Failed - Access Denied for windows 7? Mine still wont work after changing permissions