I like the fact that you go out of your way to go trough the code and remove the lines that aren't used any longer, and that you make sure to test for any potential bugs the code might have.
@gubid Yeahh... I was stupid and paused the video before then to comment about it, and then unpaused it to watch the rest and felt like an idiot. My mistake on that part, but otherwise, a very good job on your part.
@phunkbot Use a Video/Movie script. There are only 2 that I know of. However, VX Ace is supposed to bring back to the play movie function that we had back in 2k3. So that should probably be the easiest method around this.
@phunkbot Because RMVX and XP do not support Videos natively, you need to manually add how to read the video files etc, or interface with windows to have it play them. That is a very advanced for what I am trying to achieve here. I would recommend you just get a video/movie script.
@phunkbot I'm not sure if this will help you or not, but I have a intro video I made with flash and i googled the flash script which allows you to use flash movies in your game. Perfect for cutscenes. -^__^-
@Cavage I plan to yes. Have to wait for it to release over here, then buy it. Although, I dont forsee that taking too long. Hopefully within the next couple months.
@lifeiaskedfor You probably forgot to exclude it from the Window_Command.new. See as it is you add each of the strings (s1-4) to an array which is declared in the Window_Command.new line. Basically if you just exclude adding it to that array, then it will not be drawn. That is the easy part. After that, you have to update the other methods to refer to the other items indexs as they have now changed because of the lesser items being shown. Hope that makes sense!
PLEASE teach me how to add a Quest option in the menu and how to make quests show up and disappear when the player actually receives a quest from an NPC. I'd REALLY appreciate it T_T!! Thanks!!
@Chaoktarukto Can you share the line in which it crashes on? This would be the fastest way in which I can help you determine what your problem is. A generic Syntax Error is ALWAYS 1 of the following problems Your forgot to close a paren, quote, or other symbol You closed a class using end too many times, causing it to try to close an additional item that doesnt exist.
@WCIIITV I find that not everyone is super concerned with learning the core language of ruby and is asking.. how do I do 'this' or 'that'. And from those same people, they tend to learn better from code examples that are not overly commented when stepped through. That is the general taste I hope to provide people with these tutorials. It is to cover the basics, but also application within the rm system. Which is the part nearly everyone has issues with. Stay tuned and we will cover it soon.
I may create a separate series for XP so that you can see exactly how to do it there. However, once you understand it in one, it should be pretty easy to apply it to the other.
Ruby is ruby. The only difference between RGSS and RGSS2 is that they (RPG maker) attempts to highlight lines of code to help you from making mistakes. RGSS2, used in RMVX, is nothing more than just a highlighter. Ruby is the underlying code, and is applicable to both XP and VX as it is what is actually used. Perhaps that is a great option for a video is to show the differences between the editors.
I like the fact that you go out of your way to go trough the code and remove the lines that aren't used any longer, and that you make sure to test for any potential bugs the code might have.
eternity899 1 week ago
@eternity899 I appreciate that. Thanks for commenting!
gubid 1 week ago
Comment removed
Kurokonpaku 1 month ago
@Kurokonpaku Please watch the video from 3:43 on. I explain how to correct this.
gubid 1 month ago
@gubid Yeahh... I was stupid and paused the video before then to comment about it, and then unpaused it to watch the rest and felt like an idiot. My mistake on that part, but otherwise, a very good job on your part.
Kurokonpaku 1 month ago
Do you know how to add videos to the game?
phunkbot 2 months ago in playlist Uploaded videos
@phunkbot Use a Video/Movie script. There are only 2 that I know of. However, VX Ace is supposed to bring back to the play movie function that we had back in 2k3. So that should probably be the easiest method around this.
gubid 2 months ago
@phunkbot Because RMVX and XP do not support Videos natively, you need to manually add how to read the video files etc, or interface with windows to have it play them. That is a very advanced for what I am trying to achieve here. I would recommend you just get a video/movie script.
gubid 1 month ago
@phunkbot I'm not sure if this will help you or not, but I have a intro video I made with flash and i googled the flash script which allows you to use flash movies in your game. Perfect for cutscenes. -^__^-
sixstringscumdog 3 weeks ago in playlist Ruby Tutorials
Are you going to translate your Gubid Battle system to VX Ace? and I wish I could find a copy of ACE...grrr
Cavage 2 months ago in playlist Uploaded videos
@Cavage I plan to yes. Have to wait for it to release over here, then buy it. Although, I dont forsee that taking too long. Hopefully within the next couple months.
gubid 2 months ago
Thankyou sooo much. :D
Aetyruzen 2 months ago
@Aetyruzen Your welcome.
gubid 2 months ago
ok so i did wat u said and the save option is still up wat did i do?
lifeiaskedfor 4 months ago
@lifeiaskedfor You probably forgot to exclude it from the Window_Command.new. See as it is you add each of the strings (s1-4) to an array which is declared in the Window_Command.new line. Basically if you just exclude adding it to that array, then it will not be drawn. That is the easy part. After that, you have to update the other methods to refer to the other items indexs as they have now changed because of the lesser items being shown. Hope that makes sense!
gubid 4 months ago
@gubid not actully it was bc i was using a custom menu script someone made haha i was like oops lol, then i did it on there
lifeiaskedfor 4 months ago
PLEASE teach me how to add a Quest option in the menu and how to make quests show up and disappear when the player actually receives a quest from an NPC. I'd REALLY appreciate it T_T!! Thanks!!
Crzeimasha 7 months ago
@Crzeimasha You can do an event system for quests in VX :D
mendozajanrae 5 months ago
hey, gubid, i tried this, and it keeps giving me a syntax error on line 131. why is this? have i done something wrong?
Chaoktarukto 8 months ago
@Chaoktarukto Can you share the line in which it crashes on? This would be the fastest way in which I can help you determine what your problem is. A generic Syntax Error is ALWAYS 1 of the following problems Your forgot to close a paren, quote, or other symbol You closed a class using end too many times, causing it to try to close an additional item that doesnt exist.
gubid 8 months ago
@gubid Can you go over the VERY basics of rgss2 programing?
SliverSlasher 4 months ago
Awesome tutorials. I would like to thank you for posting them and taking your time to assist educating people in scripting.
MrMason84 8 months ago
Looks like I have a new subscription :)
MyrianThief 8 months ago
@WCIIITV I find that not everyone is super concerned with learning the core language of ruby and is asking.. how do I do 'this' or 'that'. And from those same people, they tend to learn better from code examples that are not overly commented when stepped through. That is the general taste I hope to provide people with these tutorials. It is to cover the basics, but also application within the rm system. Which is the part nearly everyone has issues with. Stay tuned and we will cover it soon.
gubid 10 months ago
Hahaha... "Eventing_Guy" Has Subscribed. XD
Listugujboy1 10 months ago
Btw did I hear a cat in the beginning? 0:10
luiishu535 10 months ago
@luiishu535
Yes it is. My daughters cat came in the room for a sec, then left. I almost re-recorded it, but then I said.. meh, I dont care and continued anyway.
gubid 10 months ago
Awesome tutorial! I was gonna start to learn how to script and these tutorials are awesome! Thanks a bunch!
luiishu535 10 months ago
This is lene from Spongen. Just wanted to say: Nice tutorial! I agree that the differences between XP and VX would be an interesting video to watch.
chargi717 10 months ago
@chargi717
I may create a separate series for XP so that you can see exactly how to do it there. However, once you understand it in one, it should be pretty easy to apply it to the other.
gubid 10 months ago
Does everythign you do in VX apply to XP as well? or is rgss different from rgss2? Love -InFecTioN- =)
VashFanboy1 10 months ago
@VashFanboy1
Ruby is ruby. The only difference between RGSS and RGSS2 is that they (RPG maker) attempts to highlight lines of code to help you from making mistakes. RGSS2, used in RMVX, is nothing more than just a highlighter. Ruby is the underlying code, and is applicable to both XP and VX as it is what is actually used. Perhaps that is a great option for a video is to show the differences between the editors.
gubid 10 months ago