Navigation

    CreatiCode Scratch Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • CreatiCode
    1. Home
    2. NotJaldolfYT
    • Profile
    • Following 10
    • Followers 4
    • Topics 45
    • Posts 306
    • Best 71
    • Groups 1

    NotJaldolfYT

    @NotJaldolfYT

    trusted helpers

    I basically never sleep

    Online: Can help with answers or chat

    Away: May take longer to respond

    DND: May take up to 4 hours to respond

    Offline: Sleeping (surprisingly)

    You can email me at: jaldolfyt@gmail.com for any inquiries.

    86
    Reputation
    86
    Profile views
    306
    Posts
    4
    Followers
    10
    Following
    Joined Last Online
    Website tiktok.com/jaldolfyt Location US Age 14

    NotJaldolfYT Unfollow Follow
    trusted helpers

    Best posts made by NotJaldolfYT

    • Score (on profiles)

      Now, I know CreatiCode is fetching a lot of errors right now within the website, but I just want to know, how do you get score on a profile (ex: Score: 1)?

      posted in General Discussion
      NotJaldolfYT
      NotJaldolfYT
    • RE: Current error with accessing the website

      Yeah, I’m also having trouble connecting, while trying to make a project, I thought that I had my account banned or my IP banned, hopefully it’s just a error in the code with a recent JS or CSS update :​P

      posted in Feedback
      NotJaldolfYT
      NotJaldolfYT
    • RE: Sneak Peek

      I’m so tired I forgot how to spell

      posted in Project Showcase
      NotJaldolfYT
      NotJaldolfYT
    • RE: Score (on profiles)

      @catty On the real Creaticode website, on a users profile, theres a score, mine is 2 last I checked.

      posted in General Discussion
      NotJaldolfYT
      NotJaldolfYT
    • RE: Current error with accessing the website

      @catty Yes, that is the current issue, when accessing any part apart from home (home works fine, the login on the right says you’re logged out though) it just dosent want to load correctly.

      posted in Feedback
      NotJaldolfYT
      NotJaldolfYT
    • RE: Question for the mods

      @mr-gentlehands no clue

      posted in General Discussion
      NotJaldolfYT
      NotJaldolfYT
    • RE: Code block presets?

      @info-creaticode You should probably add a moderator that watches for new submissions so that if they have NSFW images/text in them, they wont be allowed through until it’s too late 😄

      posted in Feedback
      NotJaldolfYT
      NotJaldolfYT
    • Code block presets?

      Creaticode should have a presets area on the tabs section with presets for both 2d and 3d 😄

      My idea is that CreatiCode will have block presets like: 2D movement, 3D movement, AI Chat block presets, and so on 😄

      posted in Feedback
      NotJaldolfYT
      NotJaldolfYT
    • How to make a simple platformer game :>

      To copy all code easily, go to this project 😜 play.creaticode.com/projects/679240dfee3a4781a5afde57

      Today we are making a simple platformer game! Start by making the character sprite, you can make it a square, triangle, human, squirrel, alien, anything. Set your characters size to anything, for this, I’m going with 85. Use this code to make it!

      when green flag clicked
          set size to (100) %
      

      Nice!

      Now, lets add a simple gravity system. We’re going to have to add the “LevelGround” sprite, lets do it!

      After creating that sprite, you can use this code inside of “LevelGround” to make it go to the middle, make sure your character’s sprite is at the bottom of the boundary box for creating sprites, its fine for it to be outwards 😄

      when green flag clicked
          go to center
      

      Now, for the player, copy this script for basic gravity!

      when green flag clicked
          set [Gravity v] to [0]
          forever
              change [Gravity v] by (-0.2)
              if <key [space v] pressed?> then
                  set [Gravity v] to [6]
                  wait until <<not <key [space v] pressed?>> and <touching (LevelGround v)?>>
              endif
          end
      end
      

      Oh, no! Our players gravity is going down super fast! Let’s fix that!

      First, add a variable called: “Cooldown”, make this simple line:

      when green flag clicked
          set [Cooldown v] to [N]
      

      Awesome! Now, lets edit our script that was for gravity.

      when green flag clicked
          set [Gravity v] to [0]
          forever
              wait (1) [milliseconds v]
              change [Gravity v] by (-0.25621)
              if <<(Cooldown) = [N]> and <key [space v] pressed?>> then
                  set [Cooldown v] to [Y]
                  set [Gravity v] to [6]
                  change y by (2)
                  repeat until <<touching (LevelGround v)?> or <(Gravity) = [0]>>
                      set [Cooldown v] to [N]
                      change [Gravity v] by (-0.25621)
                      set [Cooldown v] to [Y]
                  end
                  set [Cooldown v] to [N]
              endif
              if <touching (LevelGround v)?> then
                  set [Gravity v] to [0]
              endif
          end
      end
      

      Awesome! Now, we have to make movement.

      Make these 2 when pressing a / d blocks!

      when [a v] key pressed
          repeat until <not <key [a v] pressed?>>
              change x by (-4)
          end
      end
      

      And

      when [d v] key pressed
          repeat until <not <key [d v] pressed?>>
              change x by (4)
          end
      end
      

      Awesome! Now, you can make your own custom levels, you should add a second sprite for the outline so that if you collide with it, you don’t go upwards, hope this helps!

      posted in General Discussion
      NotJaldolfYT
      NotJaldolfYT
    • RE: I need help with my chatting system

      @s9205307-810c679a I’d recommend sending the project so that if an admin try’s to help, they wont have to ask for the project so they can remix and find the issue 😄

      posted in Help
      NotJaldolfYT
      NotJaldolfYT

    Latest posts made by NotJaldolfYT

    • RE: Cannot save project at all

      @sayori-is-best-girl yes it checks downages on the website by saving a project that has no sprites and no code, if it saves the website is up, if it doesn’t, its down then it goes to the forum and logs into my old account and tests editing a post with 1 at the end of it, if it says “Forbidden” then it refreshes and tries again 5 times and if it says “Forbidden” the entire time then the forum is down, then it prints it out in the logs or makes a forum post (the forum post doesn’t work right now because the forum uses NodeBB and the bot I’m using HATES NodeBB webpages

      posted in Help
      NotJaldolfYT
      NotJaldolfYT
    • RE: Cannot save project at all

      @dreamsmp_luck yeah and i also had a list with like thousands if not millions of just spaces

      posted in Help
      NotJaldolfYT
      NotJaldolfYT
    • RE: Cannot save project at all

      @dreamsmp_luck i dont know

      Also, I found the reason why, one of my lists repeated Mario Tomato 92.1k times (atleast thats the estimate I got) which made the project.json file 182mb

      posted in Help
      NotJaldolfYT
      NotJaldolfYT
    • Cannot save project at all

      @info-creaticode
      No clue if CreatiCode is down, but I cannot save my project at all (play.creaticode.com/projects/689f91e28c1361dc88056255?version=2)
      If someone can help, please do! I’ve linked a download to the project below to anyone who wants to test if they can save it.

      https://www.mediafire.com/file/i84nfy5s5czc07o/CreatiCode_Song_Player_%255Bv1%255D.sb3/file

      I have tried deleting the encrypt and decrypt in the admin panel and saving, and it still didn’t work. The cloud variable and message is set to “”

      posted in Help
      NotJaldolfYT
      NotJaldolfYT
    • RE: CreatiCode Song Player!

      @dreamsmp_luck jaldolfyt

      posted in Project Showcase
      NotJaldolfYT
      NotJaldolfYT
    • RE: CreatiCode Song Player!

      @dreamsmp_luck i have one jaldolfyt@gmail.com

      posted in Project Showcase
      NotJaldolfYT
      NotJaldolfYT
    • RE: CreatiCode Song Player!

      @jd131111 wrong account

      posted in Project Showcase
      NotJaldolfYT
      NotJaldolfYT
    • RE: CreatiCode Song Player!

      @dreamsmp_luck yeah i have another link, if you can find a website where i can paste links or chat and stuff then i will send it

      posted in Project Showcase
      NotJaldolfYT
      NotJaldolfYT
    • CreatiCode Song Player!

      https://play.creaticode.com/projects/689f91e28c1361dc88056255

      posted in Project Showcase
      NotJaldolfYT
      NotJaldolfYT
    • RE: Cloud Variables

      @info-creaticode Ah, thank you! 🙂 I just made an encrypter and decrypter for my project to send messages (don’t worry, it checks with AI moderation for any bad words before displaying it)

      posted in Help
      NotJaldolfYT
      NotJaldolfYT