У нас вы можете посмотреть бесплатно RSPeer: Installing and running your first script или скачать в максимальном доступном качестве, видео которое было загружено на ютуб. Для загрузки выберите вариант из формы ниже:
Если кнопки скачивания не
загрузились
НАЖМИТЕ ЗДЕСЬ или обновите страницу
Если возникают проблемы со скачиванием видео, пожалуйста напишите в поддержку по адресу внизу
страницы.
Спасибо за использование сервиса ClipSaver.ru
DOWNLOADS: JDK: https://www.oracle.com/technetwork/ja... RSPeer: https://rspeer.org/ IntelliJ: https://www.jetbrains.com/idea/download/ Sample code: https://pastebin.com/raw/cYNwNjiG Welcome to my tutorial to becoming an OSRS scripter. This is a great and fun way to learn programming. Use a throwaway account for testing scripts! You need basic Java knowledge for this. The first 3 steps are installs, in total about 800MB-1Gig. Links and other text used in video description 1: download and install java 8 SE development kit from oracle site. You can use another JDK8 if you want. install it selecting all default settings, especially install path. 2: go to rspeers site, download their client and RUN IT at least once and log in on any account. This is needed to download the cached jar file. 3: download and install intellij COMMUNITY edition(not the ultimate edition) from their site. After install fire up intellij, select select darcula theme if you are edgy like me and set rest to defaults. 4: click "create new project" if you just launched intellij first time. Else like me do file - new - project 5: you should have same screen as me now. If you havent got a Project SDK yet,click new and navigate to C:\Program Files\Java. select the JDK1.8 folder or whichever JDK you want to use. (32bit JDK is in programfiles(x86)) 6: select none of the buttons or other options just click next twice. Now you should have an empty project without classes. ------ 7: Select File-Project Structure- Modules - Paths Select the "Use module compile output path" option. Set output path to RSPeer scripts folder. Usually this is /yourDocumentsFolderHere/RSPeer-Scripts 8: The output Jar path is now set. Now go to the Dependencies tab and click + -JARs or directories. Find your RSpeer Jar in the list, it might have a weird name. Usually C:\Users\yourUserName\.rspeer 9: Select Run-Edit Configurations. Click + and select Application. 10: In the "Name" bar, fill in a name. In the Main class bar fill write org.rspeer.Application ---- 11: Your coding environment is now ready. Make a new class for your script to run in in the src folder. Steal some code to test if you can run a script. See description for example. Note: Your classname must be the same as whatever is written in the script as the classname. If it says "public class SickWoodCutterXXX extends Script" or something like that, change "SickWoodCutterXXX" to your classname, or your rename your class to the scripts classname. 12: Press Run- Run'yourprojectnamehere'. This should start up the RSPeer client. Login and press Play Script. tick the local script box and you should see your script. Select it and run. Now go follow the programming tutorials over at the rspeer forums or on Youtube to code what you want it to do.