Skip to content

Help

285 Topics 1.6k Posts

Get help with coding questions or problems with the CreatiCode platform

  • Yellow boxes around projects?

    10
    0 Votes
    10 Posts
    2k Views
    CreatiCodeI
    This issue has been resolved.
  • Bug?

    3
    0 Votes
    3 Posts
    781 Views
    NotJaldolfYTN
    @info-creaticode That’s odd, for some reason if I do it it says it’s inappropriate when replying to people on my project.
  • Really sad about this

    4
    0 Votes
    4 Posts
    1k Views
    CreatiCodeI
    @notjaldolfyt This issue is fixed now.
  • First person camera w/ mouse controls

    4
    0 Votes
    4 Posts
    1k Views
    CreatiCodeI
    @remi-1286167-510cee35 If you use the pointer lock, the v-angle will be automatically changed. But you said you want to limit the v-angle? If you want it to move freely but within a range, you can still use the same block to set the v-angle whenever it is outside the range.
  • Fog end

    9
    0 Votes
    9 Posts
    2k Views
    CreatiCodeI
    @coder0145 said in Fog end: The box is just to demonstrate the fog works on objects, right? That’s correct.
  • chatgpt error

    7
    1 Votes
    7 Posts
    2k Views
    CreatiCodeI
    @greeniwastakenyt Do you still have this issue? Most likely it was a temporary outage from ChatGPT’s service (OpenAI). In addition, whenever you have such outage issues, you can replace the ChatGPT block with the LLM block, which works the same way but connects to a different AI service. [image: 23a4cac8-4a59-48c4-89ca-4afedda2b761.png]
  • Can I import anyone elses project?

    3
    0 Votes
    3 Posts
    702 Views
    CreatiCodeI
    @ljvb_4 Yes, so long as credit is given. Thank you.
  • Not seeing my project on my user page

    4
    0 Votes
    4 Posts
    791 Views
    LegacyXL
    @info-creaticode Thanks so much!
  • None is the only option

    2
    0 Votes
    2 Posts
    594 Views
    CreatiCodeI
    @coder0145 That dropdown is automatically populated using the list of sprites in the project. According to the tutorial, you need to create another sprite named “Maze”, which will be used to create the walls of the maze. After you do that, then this dropdown will contain the “Maze” option.
  • Creaticode AI v4 help

    2
    0 Votes
    2 Posts
    778 Views
    CreatiCodeI
    @greeniwastakenyt said in Creaticode AI v4 help: what does socratic mode do? Hi, you can actually ask XO this question: [image: d75f3a82-5519-4484-84ac-efe4fb6348b1.png]
  • BUG: Strange Bug with Palette Previewing

    6
    1 Votes
    6 Posts
    1k Views
    CreatiCodeI
    @alexanderstevens-62d46173 This issue has been fixed.
  • Generating AI sprites and backdrops will not work

    3
    0 Votes
    3 Posts
    1k Views
    SirBotsS
    @info-creaticode I will here soon. I should also mention that there is text showing the prompt for generation in the middle of the screen. That isn’t there anymore. So, it might be that it didn’t store the message or something like that. Maybe some invalid data storing.
  • 0 Votes
    8 Posts
    2k Views
    TheNicknameGovT
    @blackguy-27c5da45 I see it on the search tab: [image: 6b98c969-5648-4648-b488-b259bd7c8ad9.png]
  • Clone won't appear :(

    7
    0 Votes
    7 Posts
    1k Views
    TheNicknameGovT
    @info-creaticode It’s not there anymore, I changed it from a clone to the actual sprite since I couldn’t figure out the bug.
  • Forever loop won't work for 2 clones in a single sprite:

    5
    0 Votes
    5 Posts
    1k Views
    Tyller_T
    @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)
  • Measuring decimal places

    5
    1 Votes
    5 Posts
    1k Views
    JaecadeJnightJ
    @The_True_Odst I struggled to understand what you meant at first, but after some re-reading, I can help. So I understand you want to be able to find the decimal number AT any decimal place of any decimal number reliably. So, decimal places go like 0.0001 (whole number).tenths,hundredths,thousandths,ten-thousandths, hundred-thousandths, millions, etc. So we know the bold in 0.0001 is thousandths, but we need a program to do that. We’ll just be saying the number of its place instead, like that’s the third decimal place here (3). So we need to clean up the number by making it positive (incase its negative), and only focusing on the part after the decimal point, then returning the decimal place based on another input. Make a reporter custom block with two inputs then put this code into it: [image: de6ce170-4c13-4ca8-8fd6-ba7167265ae4.png] It should report the number that exists at a decimal place. So in 0.128456, if you wanted to know the number that resides at thousandths place (3), then you’d do (return decimal place (3) of decimal number (0.128456)) and it would report “8”.
  • Making a variable occur to each clone instead of all of them

    5
    0 Votes
    5 Posts
    1k Views
    Rhyder ByrdA
    @the_true_odst Ok
  • Drop game simulation

    6
    1 Votes
    6 Posts
    1k Views
    CreatiCodeI
    @flores-yorkshireacademy If you ask our AI assistant, you should be able to find out the issue: [image: 843ff6f3-5ead-4e5e-b9f0-d05be8a483a8.png] Our original example was using “body rotation speed limit”. I guess you picked the wrong block?
  • 1st person movement script

    4
    1 Votes
    4 Posts
    1k Views
    CreatiCodeI
    @coder0145 In that case, you can use a forever loop to turn the avatar towards the direction of the camera (its “H-Angle” like this: [image: b5450049-08f7-41e3-94af-880a7d62ecfa.png]
  • 0 Votes
    5 Posts
    952 Views
    SirBotsS
    @tyller_ Alr. I will backpack the scripts into a separate project and share it. (I do use the target x/y lists)