What are tags, elements, or code you often on RPG maker ?

● ARCHIVED · READ-ONLY
Started by Kupotepo 7 posts View original ↗
  1. Hello, world and Hello the smart community.

    I thought JavaScript going to be an alien code. After I looked at the code, I laugh because it is similar to C++ and HTML coding. I will learn the JavaScript soon in the course I am taking.

    I would to ask you, the experience JavaScript users. What are tags, attribute, or elements that you often use in RPG maker ? I will try to put all of that in my brain. I am currently using RPG maker MV if you would like to know.

    The reason I ask because JavaScript is amazing and can do almost anything. That can be information overload for me. Thank you for responding. I will study for test and taking the test if I respond to you late. I am sorry.
  2. There's almost no HTML in the MV codebase, so you won't be using tags, attributes or elements at all. It's pure JS, for better and for worse.

    Make sure you brush up on your JS basics and in particular, have a solid understanding of functions, prototypes and call/bind/apply. (When overriding methods, you'll need to be aware of what you're writing over, where you're writing over it and when you're writing over it.) Knowing your JS regular expressions is useful if you're going to be parsing user notetags.

    https://eloquentjavascript.net
    https://github.com/getify/You-Dont-Know-JS

    Let me know if you have any questions, I might be able to point you in the right directions.
  3. JS is kinda similar to C++, but not that similar at the same time lol. The prototype thing in javascript is kinda weird, I have to admit that.

    Next is the word "this" in javascript which is a bit abstract. Even I don't know how to explain it, but it refers to the current object. If I use "this" inside a function, "this" will refer to the function.

    Honestly javascript is simple, especially if you compare it to other languages like C++ (html is not a programming language lol). There is a serie of videos on youtube that explain every programming languages (or almost all) for people that are already programmers. I just watch the video on javascript (shouldn't be more than 1-2 hour), tried it a bit in MV for one week, than I was good to go.
  4. @aethon and @MushroomCake28, sorry for asking you guys a question. What software you are using to write the code ?

    @aethon, I will be learning in the class. However, I took web design class. That is why I ask you it might not cover in the class. Thank you for the links and work hard try to help me.

    @MushroomCake28, I did know that HTML is not a programming language.
  5. If you're talking about the IDE (program in which I work on the code), I use Sublime Text. Honestly it doesn't matter much. All I ask for is a black environment lol.
  6. No worries! I recommend Visual Studio Code as a general-purpose text editor. Easily one of the better free options.
  7. Thank you for help me both @MushroomCake28 and @aethon

    Nice to meet you and both of you have good day. I will wait for other people for responding.