Skip to main content

Indie game storeFree gamesFun gamesHorror games
Game developmentAssetsComics
SalesBundles
Jobs
TagsGame Engines

roli7

3
Posts
1
Topics
A member registered Apr 02, 2025

Recent community posts

(2 edits)

Hi,

https://imgur.com/a/tyAdBNz

Thank you so much. I will try.

I have another issue with bubbles. Every time its so far from the object.

Step event: 

if (!played) {
if (hatman.visible==true) {
if !textbox_exists() {
 
textbox_create(text[0]);
textbox_set_bubble(noone,c_white,c_black,1,example_font,23,bubble_width,id);
played=true;
}
} }

Create:


// You can write your code in this editor
/// @description Variables
image_speed = 0;
text[0] = "";
bubble_width = 150;
played=false;


Creation code: 

bubble_width = 230;
text[0] = "Hey little one, come here!";


https://imgur.com/a/8oMcWoV

Hi,

I love the engine but i havent seen any detailed documentation about different options.

For me its not working:

if (global.healthscore <= 0 && !global.game_over) {
   global.game_over = true;
       alarm[0] = room_speed * 3; 
textbox_create("YOU LOST!!!!!!");
textbox_set("??????",c_black,c_red,#BCB067,1,example_font,angelspriteportrait,true,example_continue1,35,true);
textbox_add_options(c_red,1,"Cool!","Not good.","Do you have pets?");
textbox_change_message_according_option(2,
"Yes it is!",
"It is cool! You... you just don't understand...",
"Yes I have a cat. Wait... How is that related to this?");
}

I dont see the options just like in the demo file!

Also the text starts too high.