infinitejl Posted January 28, 2012 Share Posted January 28, 2012 is there a way to make scar work on background, so i will be able to be on my computer and enjoy scar together, instead of it moving my mouse every time and click for me? because i can only run the script i made in night which is annoying =( Quote Link to comment Share on other sites More sharing options...
FHannes Posted January 28, 2012 Share Posted January 28, 2012 That depends... If you're using SCAR for RS, then you can do that with SMART. If you use SCAR for anything else you can only do that with a virtual machine. Quote Link to comment Share on other sites More sharing options...
bluedraqon Posted January 29, 2012 Share Posted January 29, 2012 what is rs? Quote Link to comment Share on other sites More sharing options...
FHannes Posted January 29, 2012 Share Posted January 29, 2012 RuneScape, a game Quote Link to comment Share on other sites More sharing options...
infinitejl Posted February 9, 2012 Author Share Posted February 9, 2012 can't use virtual machine on my computer lol.. anyways, after quitting for a while i thought about giving scar another chance :] how do i make an include file? i need to link my program to a different .scar file that have the DTM's in it.. Quote Link to comment Share on other sites More sharing options...
FHannes Posted February 9, 2012 Share Posted February 9, 2012 You use {$I yourfile.scar} to include another file. Whatever is in that file will be placed where you place the {$I ...} directive. Quote Link to comment Share on other sites More sharing options...
infinitejl Posted February 11, 2012 Author Share Posted February 11, 2012 You use {$I yourfile.scar} to include another file. Whatever is in that file will be placed where you place the {$I ...} directive. wait what Quote Link to comment Share on other sites More sharing options...
FHannes Posted February 11, 2012 Share Posted February 11, 2012 You create a file named for example "include.scar", you place that either in the Includes folder or in the same folder as your script. In that file you place the code you want to include, for example: [scar]procedure LoadDTMs; begin // Load DTMs here end;[/scar] Then in your script file you add "{$I include.scar}", wherever you want to have SCAR place the contents of include.scar in your script, for example: [scar]{$I include.scar} begin LoadDTMs; end.[/scar] Quote Link to comment Share on other sites More sharing options...