@info-creaticode also I have found data saving blocks output error 500 in the console when I try to use them
Tyller_
@Tyller_
I am a young person who likes to code. I can understand code really well and prefer block based over typing because I can see everything available to me, it's faster to make, and seeing what stuff like if statements hold's is more clear in block based. I used to code on code.org but when I found CreatiCode I switched because it has much more stuff, doesn't run on an outdated version of js, and allows me to not have to process everything in a single line where nothing can run at the same time.
Best posts made by Tyller_
-
RE: Cloud Blocks dont work
-
RE: Cloud Blocks dont work
@info-creaticode when I made the new project it worked at first, but after about 3 or 4 times it just froze, even past refreshes, this is the same with my main project, and it never has let me make another world even after days https://play.creaticode.com/projects/66c4b48b244aac89fd7cabbb
-
Cloud Blocks dont work
I have noticed my project that uses Cloud blocks no longer works, I prefer using them, but I will migrate it all to the Multiplayer blocks if Cloud blocks are going to be removed
-
ChatGPT responds in chinese
ChatGPT is responding in Chinese, I have tested this in multiple projects https://play.creaticode.com/projects/66c8d5b9fc1061dacb9fafbe
-
RE: ngl, the remote edit is a great feature.
@jd131111 It used to be premium only but they changed it
-
Fast Sync Variables Lib
I have made a project that uses the multiplayer blocks to sync any amount of (positive whole) numbers tied to labels pretty fast.
It’s like a library (coding libraries are files that you import into a project containing pre-programmed general purpose functions to make coding easier), you drag two custom blocks that don’t take up too much space into any sprite where you need to use it.
You can add any number of labels that will be across all clients in the sprite you backpack.
Everything you need to touch is in the upper left corner of the workspace.I plan on making more projects that act as libraries, provide any feedback in replies! (if somebody wants to understand what it doing I can add comments to the project and explain in replies, but you would only need them if you want to understand how it works, you don’t need comments if you just wanna use it)
https://play.creaticode.com/projects/67320febbf68856fe984969b
“Did you mean for it to say “Lib”?” - Catty
”Yes, lib is the standard abbreviation for library across all programming languages” - Tyller -
RE: Halo ODST
@011830-0a42ef84 the tutorials already available should be able to help you enough, they should be easy to find
-
Typing in editor is slow on iPad/mobile
I will have to wait until I can use my phone to show proof, but when typing anywhere on the main CreatiCode website (play.creaticode.com) it is laggy, in that it is slow to type and when I type it delays, like I type an entire sentence into instructions or notes & credits (or typing in a note/block) it takes a long time to type, and it shows the keys I press being pressed over time, I can show a video but when I actually press the key and when it types has a delay, and the faster I type the longer the offset is
TLDR: typing on an iPad on main website has a lag with even the keyboard and it isn’t here on the forums
I have two videos, one of in the editor and another of on the forums to show that it isn’t just me being very slow at typing, it’s quite annoying as I can type “Hello this is a test” in ~4 seconds at most but with the lag it takes ~15-20 seconds to type it all
I am unable to upload the videos right now due to when I try to upload a video to forums it says I do not have enough privilege for this action, I will attempt to upload to YouTube soon and reply/edit to add the links
-
RE: How do I convert a string to a list
@jeffreyrb03-gmail there’s a set list to split of text with splitter block, it’s right above the reporter blocks in the list section
-
Current error with accessing the website
Currently you are inable to access the website, the developer console shows a bunch of error code 500s
Latest posts made by Tyller_
-
RE: Clone won't appear :(
@the_true_odst try console logging stuff to ensure, put a console log before you create the clone (in the if) to ensure it’s actually triggering properly
-
RE: Forever loop won't work for 2 clones in a single sprite:
@the_true_odst make it so if they touch it they say something or use print to console. This is how most programmers (allegedly people using languages other than JS dont do this but I still doubt that) debug stuff, you add a bunch of prints to ensure what is broken, like is it the touching detection or the cursor, you dont know becuase if one doesn’t work, the other won’t (if touching doesnt work then the cursor will never change, if the cursor changing doesnt work you wouldn’t know becuase the touching would be trying to use something that’s broken)
-
RE: Forever loop won't work for 2 clones in a single sprite:
@the_true_odst first, I’d recommend maybe using an if else, second, add a say to the start as clone block to verify tehy exist and where they are
-
RE: "delete all clones" block
@c no, you would do
when I recieve broadcast “delete clones”
-delete this clonebecause that forever and delete would only run under hte main sprite
-
RE: Making a variable occur to each clone instead of all of them
@the_true_odst it does work like that, if you have a sprite only variable and update it, it will only update for either the original sprite or clone, it depends on the scope of it, like when I receive broadcast hat blocks trigger for all clones, but stuff like when this sprite touched trigger per clone,
you can prove that it is per clone by making it so when they start as clone they set a sprite only variable to 2, then say it, and you can see that it shows to you that variable is whatever it was before (because you see the value based on the main sprite)
-
RE: New block: Round by {number}
@attractive-milk well this one is already easy, I just suck at explaining stuff in simple ways
-
RE: New block: Round by {number}
@the_true_odst well that method is already pretty simple, plus you could make a custom block to do it
-
RE: New block: Round by {number}
@the_true_odst you can do this already in a simple way. Multiply the number 10 to the number of places you want (so for 3 places 10^3 or 1000), round it, then divide by that number
For example, to round the variable “money” to the 2nd decimal: round( money * 100) / 100
-
RE: Decimal Counting Bug
@the_true_odst This is impossible to fix, the issue is with floats which are known to do this. The only fix I’ve every thought of to this would be to make it so that the real value has it so at 1 it’s stored as 100 so at 0.01 its stored as 1 and will accurately go up as such
-
RE: I might leave Creaticode soon (actually this time)
@the_true_odst in the files app for your chromebook make a new folder, then make three text folders, make sure you have show file extensions on, and rename one to index.html, another to style.css, and another to script.js, I would recommend for this initial setup and for learning the basics of js very quickly, ask an ai about it, Im not saying you should have an ai make it all, but ask it for stuff like what a draw loop is or when to use multiple js files, I think an ai could better explain what Im trying to say in context of a chromebook