RMRK is retiring.
Registration is disabled. The site will remain online, but eventually become a read-only archive. More information.

RMRK.net has nothing to do with Blockchains, Cryptocurrency or NFTs. We have been around since the early 2000s, but there is a new group using the RMRK name that deals with those things. We have nothing to do with them.
NFTs are a scam, and if somebody is trying to persuade you to buy or invest in crypto/blockchain/NFT content, please turn them down and save your money. See this video for more information.
Making A Game Start Event

0 Members and 1 Guest are viewing this topic.

***
Rep:
Level 87
Fighter: This is called a Random Encounter.
(This is for RPG Maker XP) Is there a way to make an event happen when you select New Game from the Main Menu? Like, the moment the game starts?

**
Rep:
Level 88
Put the event start condition on Auto Start. That should work for whatever you want it to do.
STILL NEED FEEDBACK ON MY RUNNING/JUMPING SYSTEM!
http://rmrk.net/index.php/topic,16158.0.html

***
Rep:
Level 87
Fighter: This is called a Random Encounter.
Where do I place the event on the map? I can't put it on the Starting Position place.


*
? ? ? ? ? ? ? ? ? The nice kind of alien~
Rep:
Level 92
Martian - Occasionally kind
You can place it anywhere on the map where there is not already an event or the players starting position.

***
Rep:
Level 87
...I'M HUNGRY! Food plawks
Auto Start works, but I personally recommend parallel process (juts dont forget to make the event cancel itself after it finishes)
The reason being that autostart seems to take an extra second to start longer than parallel processes; my game starts with a black screen and a scrolling intro and with autostart, you saw a glimpse of the map before the screen went black. PP fixed this issue :police:

***
Rep:
Level 87
Fighter: This is called a Random Encounter.
Auto Start works, but I personally recommend parallel process (juts dont forget to make the event cancel itself after it finishes)
The reason being that autostart seems to take an extra second to start longer than parallel processes; my game starts with a black screen and a scrolling intro and with autostart, you saw a glimpse of the map before the screen went black. PP fixed this issue :police:

Not sure I get it, but I'll try that auto start thing. Thanks.

*
? ? ? ? ? ? ? ? ? The nice kind of alien~
Rep:
Level 92
Martian - Occasionally kind
I do not suggest that you use Parallel Process since you can move the player around and trigger NPCs.
If you want to make sure the map is black immediately then I suggest that you make an event which sets the color tone to (-255,-255,-255,0) in 0 frames followed by an erase event command. Set the trigger to PP.

It should look something like this:
Spoiler for:
> Change Screen Color Tone: (-255,-255,-255,0), @0
> Erase Event
>

Then just create an autostart event with manages the intro normally.