Jump to content

Free Scripting Lessons


Mr Pro Pop

Recommended Posts

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
Link to comment
Share on other sites

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
Link to comment
Share on other sites

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

 

Link to comment
Share on other sites

Join the conversation

You can post now and register later. If you have an account, sign in now to post with your account.
Note: Your post will require moderator approval before it will be visible.

Guest
Reply to this topic...

×   Pasted as rich text.   Paste as plain text instead

  Only 75 emoji are allowed.

×   Your link has been automatically embedded.   Display as a link instead

×   Your previous content has been restored.   Clear editor

×   You cannot paste images directly. Upload or insert images from URL.

  • Recently Browsing   0 members

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