Skip to content

Making Your First Game

We’ll build a simple game from scratch. By the end of this tutorial you’ll have:

  • A decorated map
  • An intro dialog message
  • An interactable NPC that talks back

First, let’s set up your project.

  1. Open the PS Maker editor
  2. Create an account.
  3. Create a new project, with default asset pack.

A game needs a world. We’ll create a small starting map using the built-in assets.

  1. Go to Edit Map > Tilesets.
  2. Select the grass tile.
  3. Select the rectangle shape, and paint the ground of your map.

The top toolbar is where you’ll find all the tools for the tab you are on. Right now, we see the tileset draw and erase tools.

  1. Switch to Edit Map > Objects.
  2. Select a rock and add a few into the map.

Similar to the tileset tools, you can find the map object tools. Besides place and erase, you’ll also find a select tool that can move the objects around.

Before we add NPCs or interactions, let’s try a simple dialog event. This will show a message as soon as the map loads, so you can see how events run in sequence.

  1. Go to Events > Map Events.
  2. Click + Events… and select Dialog.
  3. In the text box, type a short message, for example:
Welcome to my very first PS Maker game!
  1. Go to the Play test page. As soon as the map loads, the dialog will appear.

Next we’ll add a character who can speak with the player.

  1. Go to the Assets > NPCs page.
  2. Click Add NPC.
  3. Name it “Ghost friend”
  4. Set each movement animation to the default ghost animation.

  1. Go back to the Edit map page.
  2. In Events > Map Events, add a Spawn NPC event.
    You’ll find it under the Manage NPCs section
  3. Select “Ghost friend” as the NPC to spawn
    Click to set a position on the map.

When you run the game from the Play test page, the NPC will appear.

We’ll make the NPC speak when the player interacts.

  1. Go to Events > Event Groups.
  2. Create a new group called Talk to Ghost friend.
  3. Add a Dialog event with some text, for example:
Hello traveler! Welcome to my village.
[pb]
It’s dangerous to go alone...

The special tag [pb] continues the message in a new dialog box.

  1. Back in the event group, click on Add to map.
    This adds an event to put the event group into the map.
  2. Set the trigger to Interact.
  3. Set the trigger position to Attach to NPC, and onto “Ghost friend”

Now, in the Play test page, when you walk up to the NPC and press Enter or Z, the dialog will play.

Click Share at the top right to copy a link. Send it to friends so they can play your creation instantly in their browser.

You now know the basics of maps, NPCs, and events. From here, the fun begins!

The rest of the docs has a lot of good information. Try building more maps, playing with the event system, and seeing how different mechanics come together. The more you experiment, the more you’ll discover what possible in PS Maker.

Here are a few good next steps:

  • Tilesets: Add terrain and shape the foundation of your world
  • Autotiles: Speed up map design with smart borders and corners
  • Event System: Learn how to create dialog, choices, and gameplay mechanics
  • NPCs: Bring characters to life with animations and interactions

Have fun building maps, exploring the event system, and creating stories that are uniquely yours!

Join our Discord community if you’d like help or want to share what you’ve built!