Jump to content

Free Scripting Lessons


Recommended Posts

Posted (edited)

I thought about doing this as a livestreaming thing and posting my code on codeshare.io. where users can copy and paste their own code and I can help guide them. but gl on this! 

 

Edit: oops on the gravedig. saw it was available at the top and commented


Please do. None of these damn guides use up to date code and I can't find how to even find an entity

        //Interaction : NPC
        NPC cow = getNpcs().closest("Cow");
        if (cow != null){
            if (cow.interact("Attack")){
                //sleep
            }
        }
        
        //Interaction : RS2Object
        RS2Object ladder = getObjects().closest("Ladder");
        if (ladder != null){
            if (ladder.interact("Climb-down")){
                //sleep
            }
        }
        
        //Interaction : RS2Widget
        RS2Widget interfaceToInteract = getWidgets().get(124, 1); //(Parent, child) //Can be found using the widget hover option in the client settings
        if (interfaceToInteract != null){
            if (interfaceToInteract.interact("Buy All")){
                //sleep
            }
        }
Edited by Chris
Posted (edited)

Okay so as of your decision guys, I have confirmed and agreed to make videos as it is more safer and so everyone can watch.


At the first, Right now I am working on my first script to get a scripter rank and then I will start streaming on twitch


About the video editing, I will try to do my best but if anyone wants to help me that would really be great.


Hopefully, I will be starting by December.


 Follow this thread for the new upcoming / latest updates.


 


Edited by Mr Pro Pop
Posted

Make sure you know what you are doing before making tutorials, otherwise you can spread bad practices to new scripters.

 

I am not trying to discourage you, I just noticed that you have only been a member for 2 months and do not have the scripter rank yet.

 

Good luck, I look forward to seeing the videos

 

Create an account or sign in to comment

You need to be a member in order to leave a comment

Create an account

Sign up for a new account in our community. It's easy!

Register a new account

Sign in

Already have an account? Sign in here.

Sign In Now
  • Recently Browsing   0 members

    • No registered users viewing this page.
×
×
  • Create New...