Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - 19maxk21

Pages: 1 2
1
Ask a Question / Re: Getting rid of text in scenes.
« on: January 18, 2014, 05:24:24 pm »
It's solved thanks guys! :)

2
Ask a Question / Re: Getting rid of text in scenes.
« on: January 18, 2014, 04:03:34 pm »
Sorry Hectate I wasn't trying to commanded you. And no it didn't work

3
Ask a Question / Re: Getting rid of text in scenes.
« on: January 18, 2014, 03:23:42 pm »
You'll have to post screenshots buddy

4
Ask a Question / Re: Getting rid of text in scenes.
« on: January 18, 2014, 03:13:28 pm »
Humn, well I thought there was a "actor is inside region" block but apparently there are only "enters" and "exits" options.

Either way, the following should work for your needs. Keep in mind that "Last Created Region" only works if there's just one region, or the last created one is the one you need. Creating a Region attribute to use there would be better.



It didn't work

5
Ask a Question / Re: Getting rid of text in scenes.
« on: January 18, 2014, 03:05:58 pm »
Humn, well I thought there was a "actor is inside region" block but apparently there are only "enters" and "exits" options.

Either way, the following should work for your needs. Keep in mind that "Last Created Region" only works if there's just one region, or the last created one is the one you need. Creating a Region attribute to use there would be better.



Thanks!

6
Ask a Question / Re: Getting rid of text in scenes.
« on: January 18, 2014, 02:34:48 pm »
Change "Enters" to "is inside" or whatever so it's constantly TRUE while he's inside. Then, in an ALWAYS block set it to false. Every time it loops through it'll be false at first, then if he's inside it'll become true. If it doesn't get reset to true, that means he's not inside it and the text shouldn't show.

May you post a screenshot of what I have to do?

7
Ask a Question / Getting rid of text in scenes.
« on: January 18, 2014, 01:24:53 pm »
How do I make it so when I leave the region the text goes away this is my code:

8
Resolved Questions / Re: When saving/loading some data is lost
« on: January 18, 2014, 01:17:29 pm »
Stencyl only saves global attributes not local ones, so if you're trying to save local attributes they wont save. Otherwise if you're using Global attributes and those aren't the ones saving I don't know what's up. I've probably used at most 30~50 game attributes and had no problem saving and loading them.

9
Ask a Question / Would you pay mothly for a "improved Stencyl"?
« on: January 18, 2014, 01:07:23 pm »
Would you pay for an "improved Stencylforge" ? If so what would be your price range?  :)

10
Ask a Question / Re: Drawing text when an actor is in a region
« on: January 18, 2014, 12:58:25 pm »
It's drawing when I enter the region but It won't go away how do I make it go away?

11
Ask a Question / Re: Drawing text when an actor is in a region
« on: January 18, 2014, 12:52:50 pm »
could you post a screenshot of your behavior?

12
Ask a Question / Re: Drawing text when an actor is in a region
« on: January 18, 2014, 12:21:45 pm »
The coordinates are correct my game has a downward style. I set up the block and still nothing has happned

13
Ask a Question / Re: Drawing text when an actor is in a region
« on: January 18, 2014, 11:16:32 am »
I have changed the code to:

<When max enters region 3>
<Set draw text to true>

-----------------------------------------------------------------------------------------------------------------

<When drawing>
<If draw text = true>
<Set current font to Waiting for>
 <Draw text: What are you waiting for? Jump! at (x:900 y:800)>

This code isn't working still and I don't knoww what else to do.

14
Ask a Question / Drawing text when an actor is in a region
« on: January 18, 2014, 10:51:32 am »
Is there a way for when my actor enters a region for a text to be drawn, but go away once the actor leaves?

 I have tried:

<When drawing>
<If: Max4 is inside of region 3>
<Set current font to Waiting for>
<Draw text: What are you waiting for? Jump! at (x:900 y:800)

With this the text won't draw at all. So if someone can reposed to this with a screen shot of the code or a text with the code that would be greatly appreciated. Thank you!

P.S This is for my programming class I can't download behaviors off of Stencylforge.

15
Ask a Question / Re: Can I play soundeffects and music at the same time?
« on: January 17, 2014, 06:32:58 pm »
Thank you so much! :D I took I look back at my coding and I had the same code but was not running off of the channels.

Pages: 1 2