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
Ask a Question / Re: Problem with itch.io
« on: February 24, 2025, 10:26:38 am »
Try with a blank game: only one scene and no actors.

2
Ask a Question / Re: Problem with itch.io
« on: February 23, 2025, 02:04:15 pm »
The discord server has more active users, easier to get help there nowadays: https://community.stencyl.com/index.php/topic,48592.0.html

This could be any number of things, there's not much to go with from the information you provided. I suggest re-exporting the game to HTML5, reuploading and making sure all settings are set to show the game as HTML5.


3
Congratulations on the release!
I recommend you also post on the Stencyl discord server, where the community is more active nowadays. You can find the link in this thread: https://community.stencyl.com/index.php/topic,48592.0.html

4
Chit-Chat / Re: Image Chooser hangs (Linux)
« on: December 29, 2024, 05:59:15 pm »
Update Stencyl and report back, generating and posting your logs if it happens again. The current public version is 4.1.4, not 4.1.0.

5
Code: [Select]
text attribute
for each item in list
--text = text & item
Text will have all the items as strings concatenated.

6
Ask a Question / Re: List not being sorted correctly?
« on: December 09, 2024, 03:14:38 pm »
To sort from lowest to highest in pseudocode, assuming a list with only numbers:
Code: [Select]

newList = create new list
repeat number of items on list
--index = 0
--testNumber = 999
--for each item on list:
----if testNumber >= item and not item on newList:
------testNumber = item
------targetIndex = index
----increment index by 1
--If not item on newList:
----add [targetIndex from list] to newList
Something like that, newList should have all items sorted by the end of it. I also recommend you join the discord server, as there are more people there to help you: https://community.stencyl.com/index.php/topic,48592.0.html

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

8
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.

9
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

10
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".

11
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.

12
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.

13
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/

14
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.

15
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.

Pages: 1 2 3 ... 154