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 - Luyren

Pages: 1 2 3 ... 154
1
Code: [Select]
Set row count to 0
For each item in columns (this is the primary list, items becomes your rows list).
-set blue count to 0
-set red count to 0
--for each item in item (the first item block now contains individual cells).
---if item = 1, increment blue count
---if item = 2, increment blue count
-if blue count >= 6, call an event to clear the column, setting the cell values to 0.
-increment row count
Rough pseudocode, checking for full rows. If you can implement that, you'll be able to expand it to check for columns as well.

2
One list with 6 items. Each item is itself a list with 6 more items (call these one cells). Each cell can have a value of 0 (empty), 1 (blue block) or 2(red block). You'll be manipulating numbers when you move the rows and colors, not actors.

The actors are displayed on top of that, either by animtions on based on the cell value, or by sliding the created actors as you move the rows.

This would be the base for my implementation.

3
Ask a Question / Re: Help me??
« on: October 17, 2024, 05:22:41 pm »
Open the .bat file for your operating system and follow the instructions on the prompt. Instructions here: https://github.com/Stencyl/stencylpedia/blob/master/releases/4.1.0.md#multiplatform-release

4
Ask a Question / Re: Stencyl 4.0.4 - Why do you suppose this does not work?
« on: September 20, 2024, 07:26:46 pm »
Hit the new issues button and click "fix all".

5
Ask a Question / Re: Stencyl 4.0.4 - Why do you suppose this does not work?
« on: September 19, 2024, 04:18:19 pm »
Click the open all button in that error window, theb click preview code in the behavior it will open, go to line 78 and check what it points to.

6
Ask a Question / Re: Stencyl 4.0.4 - Why do you suppose this does not work?
« on: September 19, 2024, 02:24:08 pm »
Update to Stencyl 4.1.4 starters.
Use print blocks to make sure your code is executing. If it's indeed executing, you mighthave to check permissions on your website in order use a post request.

7
Ask a Question / Re: Como hacer que cambie de nivel
« on: August 20, 2024, 02:49:16 am »
Complete the crash course if you haven't already: https://www.stencyl.com/help/start/
To switch scenes specifically, read about it here: https://www.stencyl.com/help/view/scene-basics/

8
Ask a Question / Re: Publish game on Google Play
« on: August 12, 2024, 12:46:41 pm »
Join the Stencyl discord server and ask your question there, where the community is more active: https://community.stencyl.com/index.php/topic,48592.0.html
I'm sending you over there since I don't have the answer to your question.

9
Ask a Question / Re: Not able to Test Game
« on: July 28, 2024, 08:42:46 am »
The community is more active over discord: https://community.stencyl.com/index.php/topic,48592.0.html
Generate your logsand post them here, that should provide more information.

10
Ask a Question / Re: unable to Test Game and Test Scene
« on: July 24, 2024, 02:55:54 am »
The Stencyl server is the better way to get assistance nowadays: https://community.stencyl.com/index.php/topic,48592.0.html

I haven't done a fresh install in a while, but my guess is that you are trying to run for desktop and you haven't installed Visual Studio with the C++ tools. It should testafter everything is set up: https://www.stencyl.com/help/view/publishing-standalone-game/

Test on HTML5 or Flash should be more straightforward, as they have less dependencies.


11
Yes, you can repost it in the help channel. Be aware that "recovering" old games like this might not be a simple process.

12
Discord is the better way to interact with the community nowadays: https://community.stencyl.com/index.php/topic,48592.0.html

To answer your issue, you most likely need to hit the new "Issues" button at the topbar, and click "Fix All". Because it is a game made in a pretty old build, that might not be enough, and you'd have to check one by one the errors that aren't fixed by the issues button.

13
It's a Tag Mismatch error it seems, but I don't know what to suggest from that. The Discord server is more active and a better way to get help, you can get the link to it here: https://community.stencyl.com/index.php/topic,48592.0.html
You can link to your forum post or post your logs again there in the help channel.

14
Ask a Question / Re: Broken animations in Toggle Blocks
« on: July 10, 2024, 03:53:03 am »
Updating happens every 0.01 seconds. There is nothing restricting your if statement during the first wait time, so it is not happening as you think it is. You can confirm it by adding print statements and checking the game controller.

This tutorial covers timing for the updating event, it ought to explain what to do: https://youtu.be/j10SMwy2prM

15
Steam and itch.io are the first ones that come to mind.

Pages: 1 2 3 ... 154