Making a Skip command
Want a DIY skip command? You've come to the right place! Then this 3 part tutorial will teach you where to start! First start a new project! If you are not sure how to do that.https://rpgmaker.net/media/content/users/55273/locker/Pic2.png
Afterwards open up the scripts find this and press INSERT.
https://rpgmaker.net/media/content/users/55273/locker/Pic1.png
Then find Scene_Battle and Window_Actor_Command. Scene battle is above the area you just cleared and Window_Actor_Command is here
https://rpgmaker.net/media/content/users/55273/locker/Pic3.png
Click inside the script and Press Ctrl+A then Ctrl+C and click to the area you Cleared and press Ctrl+V then name the script Myfirstscript. Then go to Scene_Battle and press Ctrl+A then Ctrl+C then go back to Myfirstscript and select the LAST line of code press Ctrl+V The first thing you do is go to line: 37 and do this.
https://rpgmaker.net/media/content/users/55273/locker/Pic4.png
If you don't understand what i did is i went to the end of add_item_command and then pressed ENTER and then typed add_wait_command. If you don't understand this the entire code will be at the end of the tutorial. Now go to line 60 and press ENTER then do this.
https://rpgmaker.net/media/content/users/55273/locker/Pic5.png
Paste this code below line 60 if you don't know what to do. #-------------------------------------------------------------------------- # * Add Wait Command #-------------------------------------------------------------------------- def add_wait_command add_command(PVocab::Skip, :skip) end Then after that go to line 6 press enter then paste this code module PVocab Skip = "Skip" end Then go to line 318 and set a handler for the "Skip" Command, do that by Copying and pasting the line above 318 and editing it.
https://rpgmaker.net/media/content/users/55273/locker/Pic6.png
Go to line 454 and create a action for the "Skip Command"
https://rpgmaker.net/media/content/users/55273/locker/Pic7.png
After that press Apply press OK then right click MAP001 click map properties and add a enemy for you to test on.
https://rpgmaker.net/media/content/users/55273/locker/Pic8.png
Create some land for your character to stand on. And then test your game. If you did this right. It should look like this. and pressing it should skip the turn.
https://rpgmaker.net/media/content/users/55273/locker/Pic9.png
To make this better lets add a Giveup command, so if the player realises he can't win and wants to make the gameover fast, he can click this button and have it immediately. So first you; Add a vocab, handler, command, and actions for the command. Replicate what you did for creating the "wait" command. But just in case here is some photos of what i will do.
https://rpgmaker.net/media/content/users/55273/locker/Pic10.png
https://rpgmaker.net/media/content/users/55273/locker/Pic11.png
https://rpgmaker.net/media/content/users/55273/locker/Pic12.png
I messed up on this one don't put command_giveup_command put add_giveup_command
https://rpgmaker.net/media/content/users/55273/locker/Pic13.png
https://rpgmaker.net/media/content/users/55273/locker/Pic14.png
After that test out your game, if it doesn't work try again. You should have a button that gives you a instant Game over. Thanks for reading this tutorial! Hoped you learned something! See you next tutorial.
本贴来自国际rpgmaker官方论坛作者:matthe8151处,因国际论坛即将永久关站,为了存档多年珍贵资料,署名转载到本论坛存档,由于官方帖子为英文原帖,需要中文翻译请点击论坛顶部切换语言为中文就可以将帖子翻译成中文浏览,方便大家随时查看,原文地址:https://forums.rpgmakerweb.com/threads/making-a-skip-command.69436/
页:
[1]