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

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

3
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

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

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

6
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

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

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

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

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

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

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

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


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

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

Pages: 1 2 3 ... 154