Submit Your Article


 
RPG Maker

Welcome Guest ( Log In | Register )


  Games Resources RPG Maker VX RPG Maker XP Scripts Tutorials Downloads

 
Reply to this topicStart new topic
> [April 19: New Question]Crescent's Question Thread, Because I know I'll have more than one.
KuramaBingyi
post Apr 17 2011, 03:36 AM
Post #1


RRR's Resident Furry
Group Icon

Group: Revolutionary
Posts: 281
Type: Developer
RM Skill: Intermediate




Question 1 Answered - Answer
Question 1
Question #1: Something to do with moving pictures in order to make them scroll from the bottom of the screen to the very top.

Question 2 Answered - Answer
Question 2
Question #2: As I've disabled the title screen, I'm having a difficult time what I should do in regards to an actual title screen. I figured I could use Choices, but the Events processing won't allow me to utilize Loading a Saved Game as a choice - and I can't have a choice that would exit the game. Are there any special places in the script where I have to call up in order to do each of these?

Question 3 Answered - Answer
Question 3
Question #3: One more question. I'm such a newb.

I added that script you gave me in the Yggdrasil thread, Kread. Thanks for that.

However, due to the script being in there, I get a window popping up as I run the game. Where, in any script, can I change this? I posted the script in its own separate section above Main.


Question 4 Answered
Question 4

How can I use variables in order to set a key binding that would allow a player to skip a certain scene?

Question 5 Answered - Answer
Question 5
It's been 72 hours, yes? I hope so, because I've got another question, and I would like to bump this topic. It may be an extremely simple question with an extremely simple answer, but I would like to figure it out before I continue my project.

So check it: I'm having problems figuring out variables. There's a sequence in my project where you have to kill a specific number of enemies before a switch appears, that would allow you to open up a portal to the next area. I'm using the Yggdrasil Action Battle System, which requires each enemy actor to have the following tags.

Tags
CODE
: <abs enemy:x>
: <dead self switch:Y>


Essentially, what it does is allow the script to recognize the actor as an enemy, with X pertaining to its ID in the database. The Dead Self Switch command does exactly as it sounds; once the actor is dead, it triggers a switch on the next page if the Self Switch is Y.

Here's the thing: I'm trying to get it so that it would increase a variable by 1 on the Self Switch A page, by Autorunning it, and then triggering Self Switch B, which ends the event. On the side, I have an entirely different event set on Autorun that begins once Variable A is accumulated to 7.

It doesn't do this, so now I'm completely and utterly confused.

Can anyone help me?


This post has been edited by Crescent: Apr 23 2011, 07:27 AM


__________________________
When life throws you lemons, don't make lemonade. Get angry!

Go to the top of the page
 
+Quote Post
   
Kread-EX
post Apr 17 2011, 03:45 AM
Post #2


(=___=)/
Group Icon

Group: +Gold Member
Posts: 4,136
Type: Scripter
RM Skill: Undisclosed




The simplest way is to show a transparent picture out of the screen size, like this...

...and then move it to the center of the screen while setting it as opaque. Like this.

After that, you just have to move it again to past the upper part of the screen, while making it transparent again. Like this:

I used -400 as an example, but depending of the size of the picture, you should reduce or increase the value. Just trial & error.


__________________________
FRACTURE - a SMT inspired game (demo) made by Rhyme, Karsuman and me. Weep and ragequit.

My blog.

Click here for my e-peen


Go to the top of the page
 
+Quote Post
   
KuramaBingyi
post Apr 17 2011, 04:43 AM
Post #3


RRR's Resident Furry
Group Icon

Group: Revolutionary
Posts: 281
Type: Developer
RM Skill: Intermediate




Helped tremendously. Thank you!


__________________________
When life throws you lemons, don't make lemonade. Get angry!

Go to the top of the page
 
+Quote Post
   
KuramaBingyi
post Apr 17 2011, 06:54 AM
Post #4


RRR's Resident Furry
Group Icon

Group: Revolutionary
Posts: 281
Type: Developer
RM Skill: Intermediate




Next few questions. Apologies for double-posting.

Question #1: --SELF ANSWERED--

Question #2: As I've disabled the title screen, I'm having a difficult time what I should do in regards to an actual title screen. I figured I could use Choices, but the Events processing won't allow me to utilize Loading a Saved Game as a choice - and I can't have a choice that would exit the game. Are there any special places in the script where I have to call up in order to do each of these?

My second alternative is to use Events to show "characters," such as an arrow pointing at text, in order to utilize the title menu. Are there any CharacterSets for that?

This post has been edited by Crescent: Apr 17 2011, 07:57 AM


__________________________
When life throws you lemons, don't make lemonade. Get angry!

Go to the top of the page
 
+Quote Post
   
Kread-EX
post Apr 17 2011, 09:46 AM
Post #5


(=___=)/
Group Icon

Group: +Gold Member
Posts: 4,136
Type: Scripter
RM Skill: Undisclosed




You could use choices, but a better way would be to use pictures to display the commands. You store the position of the cursor in a variable and by checking that variable with a conditional branch, you can then use a call script event command to launch the loading screen or quitting the game.
I don't know of a particular character set for that; if you want an arrow, you can make it yourself with Paint - it's quite easy.

The syntax to use in the Script event command:
CODE
$scene = Scene_File.new(true, false, true)
^ for launching the loading screen.

CODE
    Sound.play_decision
    RPG::BGM.fade(800)
    RPG::BGS.fade(800)
    RPG::ME.fade(800)
    $scene = nil
^ for quitting the game.


__________________________
FRACTURE - a SMT inspired game (demo) made by Rhyme, Karsuman and me. Weep and ragequit.

My blog.

Click here for my e-peen


Go to the top of the page
 
+Quote Post
   
KuramaBingyi
post Apr 18 2011, 09:14 PM
Post #6


RRR's Resident Furry
Group Icon

Group: Revolutionary
Posts: 281
Type: Developer
RM Skill: Intermediate




EDIT: All new questions will be edited into the original post. I'll only bump as per the RPGRevolution forum rules if I have any other questions.

This post has been edited by Crescent: Apr 19 2011, 12:13 AM


__________________________
When life throws you lemons, don't make lemonade. Get angry!

Go to the top of the page
 
+Quote Post
   
Kread-EX
post Apr 19 2011, 12:41 AM
Post #7


(=___=)/
Group Icon

Group: +Gold Member
Posts: 4,136
Type: Scripter
RM Skill: Undisclosed




Eeeh, Crescent, the reason why I moved the post about Yggdrasil is because questions concerning scripts aren't asked in this section. They can be asked in the script's topic, or in the RGSS2 Script Support section. So please don't ask questions about scripts here...

The window pops-up because I forgot to remove my debugging print.
Somewhere in the script (in the Drops method I think) I added this:
CODE
p true
Just remove it, it wasn't supposed to stay.


__________________________
FRACTURE - a SMT inspired game (demo) made by Rhyme, Karsuman and me. Weep and ragequit.

My blog.

Click here for my e-peen


Go to the top of the page
 
+Quote Post
   
KuramaBingyi
post Apr 19 2011, 12:54 AM
Post #8


RRR's Resident Furry
Group Icon

Group: Revolutionary
Posts: 281
Type: Developer
RM Skill: Intermediate




QUOTE (Kread-EX @ Apr 19 2011, 05:41 PM) *
Eeeh, Crescent, the reason why I moved the post about Yggdrasil is because questions concerning scripts aren't asked in this section. They can be asked in the script's topic, or in the RGSS2 Script Support section. So please don't ask questions about scripts here...

The window pops-up because I forgot to remove my debugging print.
Somewhere in the script (in the Drops method I think) I added this:
CODE
p true
Just remove it, it wasn't supposed to stay.


I assumed that I could post it in here, because this is a topic I'm using for all of my questions if I need an answer. I'll keep this in mind for the future.

But thank you. You've been a great help.


__________________________
When life throws you lemons, don't make lemonade. Get angry!

Go to the top of the page
 
+Quote Post
   
KuramaBingyi
post Apr 22 2011, 06:15 PM
Post #9


RRR's Resident Furry
Group Icon

Group: Revolutionary
Posts: 281
Type: Developer
RM Skill: Intermediate




It's been 72 hours, yes? I hope so, because I've got another question, and I would like to bump this topic. It may be an extremely simple question with an extremely simple answer, but I would like to figure it out before I continue my project.

So check it: I'm having problems figuring out variables. There's a sequence in my project where you have to kill a specific number of enemies before a switch appears, that would allow you to open up a portal to the next area. I'm using the Yggdrasil Action Battle System, which requires each enemy actor to have the following tags.

Tags
CODE
: <abs enemy:x>
: <dead self switch:Y>


Essentially, what it does is allow the script to recognize the actor as an enemy, with X pertaining to its ID in the database. The Dead Self Switch command does exactly as it sounds; once the actor is dead, it triggers a switch on the next page if the Self Switch is Y.

Here's the thing: I'm trying to get it so that it would increase a variable by 1 on the Self Switch A page, by Autorunning it, and then triggering Self Switch B, which ends the event. On the side, I have an entirely different event set on Autorun that begins once Variable A is accumulated to 7.

It doesn't do this, so now I'm completely and utterly confused.

Can anyone help me?


__________________________
When life throws you lemons, don't make lemonade. Get angry!

Go to the top of the page
 
+Quote Post
   
Kread-EX
post Apr 23 2011, 01:06 AM
Post #10


(=___=)/
Group Icon

Group: +Gold Member
Posts: 4,136
Type: Scripter
RM Skill: Undisclosed




If you could show screens of your events, it would help. Also, the bumping rules in this section is 36 hours, not 72. It's shorter.


__________________________
FRACTURE - a SMT inspired game (demo) made by Rhyme, Karsuman and me. Weep and ragequit.

My blog.

Click here for my e-peen


Go to the top of the page
 
+Quote Post
   
KuramaBingyi
post Apr 23 2011, 03:11 AM
Post #11


RRR's Resident Furry
Group Icon

Group: Revolutionary
Posts: 281
Type: Developer
RM Skill: Intermediate




Images




__________________________
When life throws you lemons, don't make lemonade. Get angry!

Go to the top of the page
 
+Quote Post
   
Kread-EX
post Apr 23 2011, 05:43 AM
Post #12


(=___=)/
Group Icon

Group: +Gold Member
Posts: 4,136
Type: Scripter
RM Skill: Undisclosed




Okay, first, you should check if the variable increase was done or not. Just after killing one of those enemies, press F9 and check the value of the variable. If it didn't change, then it's a problem related to Yggdrasil itself.


__________________________
FRACTURE - a SMT inspired game (demo) made by Rhyme, Karsuman and me. Weep and ragequit.

My blog.

Click here for my e-peen


Go to the top of the page
 
+Quote Post
   
KuramaBingyi
post Apr 23 2011, 06:28 AM
Post #13


RRR's Resident Furry
Group Icon

Group: Revolutionary
Posts: 281
Type: Developer
RM Skill: Intermediate




Well, that's a shame. I was really looking forward to implementing something like that, but if it's a problem with Yggdrasil, then I guess not.

Thanks for the help.


__________________________
When life throws you lemons, don't make lemonade. Get angry!

Go to the top of the page
 
+Quote Post
   
Kread-EX
post Apr 23 2011, 06:53 AM
Post #14


(=___=)/
Group Icon

Group: +Gold Member
Posts: 4,136
Type: Scripter
RM Skill: Undisclosed




Found the problem. Yggdrasil doesn't support multiple lines for comments. Rather than stick the self-switch tag in a second line, use another comment instead.


__________________________
FRACTURE - a SMT inspired game (demo) made by Rhyme, Karsuman and me. Weep and ragequit.

My blog.

Click here for my e-peen


Go to the top of the page
 
+Quote Post
   
KuramaBingyi
post Apr 23 2011, 07:24 AM
Post #15


RRR's Resident Furry
Group Icon

Group: Revolutionary
Posts: 281
Type: Developer
RM Skill: Intermediate




That did it!

Thank you, Kread!


__________________________
When life throws you lemons, don't make lemonade. Get angry!

Go to the top of the page
 
+Quote Post
   

Reply to this topicStart new topic
1 User(s) are reading this topic (1 Guests and 0 Anonymous Users)
0 Members:

 

Lo-Fi Version Time is now: 25th May 2013 - 08:05 PM
RPG RPG Revolution is an Privacy Policy and Legal
eXTReMe Tracker