Navigation

    CreatiCode Scratch Forum

    • Login
    • Search
    • Categories
    • Recent
    • Tags
    • Popular
    • Users
    • Groups
    • CreatiCode
    1. Home
    2. jeffreyrb03-gmail
    • Profile
    • Following 15
    • Followers 10
    • Topics 98
    • Posts 745
    • Best 136
    • Groups 3

    JaecadeJnight

    @jeffreyrb03-gmail

    Mod Helper

    I'm Jeff

    304
    Reputation
    182
    Profile views
    745
    Posts
    10
    Followers
    15
    Following
    Joined Last Online
    Website jeffreymaniac.github.io Age 15

    jeffreyrb03-gmail Unfollow Follow
    Mod Helper trusted helpers administrators

    Best posts made by jeffreyrb03-gmail

    • Forum Announcement

      Edit: this is now outdated since those two users are inactive now, but just make follow the rules.
      unpinned - Catty

      As me and @CattyPlayzy have become forum moderators, we have locked, deleted, and purged over 60+ topics of spam coming from @Black-Cat and @Lilly-123, @Lilly-Alt. We have also found extremely inappropriate content posted a while ago by one of those spammers. We together are making this announcement to say that we are going to crack down against inappropriate and spam content because such degenerate filth is NOT allowed or welcome on this platform.

      Catty’s part:
      Yes. We are going to do our best to make this forum as safe as possible. We will scrape every little piece of garbage off this platform, and keep it as welcoming as possible to new K-12 users. Thank you for reading this.


      Work done as of writing this (Sep 22)

      • Catty has gotten multiple accounts created with bad intentions obliterated.

      • Jeff has deleted many spam topics to keep questions on this forum mostly relevant to CreatiCode and coding.

      • Catty has locked so many topics.

      • Jeff went through old deleted topics and found bad stuff and also did some purging

      • Catty is the reason moderators now have dedicated and organized topics for discussing moderation and issues.

      • Both Jeff and Catty are the reason Shrukin and Lily behave more and are helpful to this forum, as well as this forum now being safer.

      • Catty has helped find major issues with the forums, and how it affects the safety of our users in a bad way.


      What you can do to help keep these forums clean and not to get your posts deleted

      • If you see someone breaking a major rule or doing something like posting inappropriate topics or images, both here and on CreatiCode, then report those to us and CreatiCode with links. We can only moderate things on this forum Incorrect, we only moderate Help, Test, General Discussion, Project Showcase, and Feedback, so any inappropriate/egregious projects will be forwarded to them as well.

      • Use the right categories. It is annoying when someone posts something in Live Books instead of Feedback or Help or General Discussion.

      • Stay on-topic. Do not go off-topic, post links to other sites (that could be or are potentially bad) like GimKit or Discord, and/or use topics as chatrooms. These forums are for if you need help with CreatiCode/coding, ideas with coding, discussions about coding, want to give feedback/report bugs about CreatiCode, and anything related to that. We will delete or lock topics that break this rule and if you are annoying and break this rule many times, you will suffer consequences.

      • Do not post anything inappropriate. This should go without saying, but we’ll also talk about a part that some people have struggled with in the past: make sure that images you post of characters or people aren’t overly suggestive. While an image could be considered appropriate because it doesn’t contain nudity, our standards are different, and clothed characters also break this rule, like female characters with unnaturally large breasts, and also fetishes.
        Catty’s note on this - Please make sure if you have female characters with unnaturally large breasts that you cover them up COMPLETELY, or lower the size. Either way, cover them up completely (the stomach is fine) to avoid consequences.

      • Help new users follow the rules. They may have not read the forum rules yet, so point them to there.

      • Chatroom clarification: it depends, but chats that are CC-related (like discussing making projects and ideas and sharing ideas/work) are okay, but doing more talking like you’re having a conversation with a friend should be kept to a minimum. A chatroom project has been made by CreatiCode so use that


      posted in General Discussion
      jeffreyrb03-gmail
      JaecadeJnight
    • New website I'm working on

      dad7b275-3cb2-4ad3-b4a4-bd5a853ac5cd-image.png
      I’m working on a new block language from scratch (no pun intended) that’s like Scratch but isn’t. It does not use blockly at all or any of the Scratch source, other than scraped SVGs for the blocks. Right now, it is does not work very well, as:

      • blocks don’t snap
      • the Drag & drop is buggy
      • you can’t delete blocks
      • Running the project doesn’t actually do anything as the blocks aren’t mapped to any code

      Right now the website isn’t available to the public so you can’t try it yet.

      So, I decided to make this because I was curious if I could recreate Scratch and make it better rather than forking it. Now I know why it’s easier to just fork Scratch like CC and TurboWarp did: because HTML5 drag and drop is so awful. I had to use a library for dragging and it still sucks. And I don’t even have a plan for making the blocks snap. But when I get the blocks snapping, hopefully it’ll get easier and then I just have to make a blocks catalog and some UI improvements.

      posted in General Discussion
      jeffreyrb03-gmail
      JaecadeJnight
    • Feature request: a block to make a string backwards and other text stuff

      A reporter block that can make text backwards (blue -> eulb) would be useful. The XO assistant works for me now so it isn’t really an issue, but I feel like it’d be better and easier if this were just one reporter block, since it feels like a waste of code to make a whole for-each loop to loop through every single letter and make annoying temporary variables and all that stuff.

      I know that these might not be used very often, but other blocks that can transform/encode text would be awesome, like some examples:


      • ROT13 encryption: ROT13 is a simple encoding method usually used for fun and puzzles that turns every letter in a string to the 13th letter after it in the English alphabet. This picture explains it well:

      alt text

      * cowsay and other ASCII art things: You provide text like "Why did the chicken cross the road? (line break) To get to the other side!", and then the reporter block returns it to you in ASCII art with a cow or other options saying it in a speech or thought bubble. Examples:

      Cow:

       ________________________________________
      / Why did the chicken cross the road?    \
      \ To get to the other side!              /
       ----------------------------------------
              \   ^__^
               \  (oo)\_______
                  (__)\       )\/\
                      ||----w |
                      ||     ||
      

      Tux the Linux penguin mascot:

       _________________________________________
      / You are only young once, but you can    \
      \ stay immature indefinitely.             /
       -----------------------------------------
         \
          \
              .--.
             |o_o |
             |:_/ |
            //   \ \
           (|     | )
          /'\_   _/`\
          \___)=(___/
      

      And more info about it can be found here: https://en.wikipedia.org/wiki/Cowsay

      • Reporter blocks to encode/convert characters for to make them suitable in URLs or specific cases: for example, take a look at https://www.google.com/search?q=creaticode+website . Because URLs can’t handle spaces, they will use a + or another character I forgot. Like when you Google “$”, the $ gets turned into %24 when its in the URL. Having blocks for decoding/encoding in formats like base 64 would also be useful, say if you have the user intentionally upload a “text” file that actually isn’t text and is a .PNG image renamed to .txt and then show the user that image by showing the data URI of that image as the URL in a widget.
      • Doing things with words, like finding the dictionary definition(s) of a word and returning it in a table, finding synonyms of the possible meanings of the word and returning a table (ex: “light” would have synonyms regarding weight (portable, lightweight) and ones regarding actual light (luminosity, radiance) ).
      posted in Feedback
      jeffreyrb03-gmail
      JaecadeJnight
    • It's my birthday

      yayyy im 15

      posted in General Discussion
      jeffreyrb03-gmail
      JaecadeJnight
    • RE: Tutorial: Gravity without 2D Physics

      @106809nes oh cool, this is what you normally do in Scratch. Basically just gotta check forever if the player is not touching the ground. If not, you have to change y by a negative value like -0.5 until they are touching the ground. Good tutorial tho

      posted in General Discussion
      jeffreyrb03-gmail
      JaecadeJnight
    • Feature request: eval-like block

      In JavaScript, you can use the eval function to evaluate code from a string, like this:
      eval('var x = 1; var y = x + 2; alert(x+y);');
      and this does the exact same as:

      var x = 1; 
      var y = x + 2;
      alert(x+y);
      

      Now, I’m not asking for a block that allows you to execute JavaScript code, because in more ways than one can that be exploited very badly, but I mean a block that allows you to just run other blocks from text. This is what it could look like:
      13639514-e26a-41de-a44b-60480670120e-image.png
      This could be useful for debugging, bypassing drop-down menus that don’t accept text/variables, or (in my current case) when your code should work perfectly fine but is still being stubborn and this is an alternative.

      posted in Feedback
      jeffreyrb03-gmail
      JaecadeJnight
    • Challenge - Solve the Puzzle. Due: Dec 31, 2024.

      https://play.creaticode.com/projects/66f85f2ce228c74a133e1128

      What you have to do is find out a secret code (it has numbers and words) using clues and some math. If you get this right, send a screenshot of you getting it right to me here, and I’ll check if it’s true.

      I have made a challenge event for anyone and everyone here to try! If you solve this and get it right (and are the first or second person to get it), then as a reward, I will make a project for you, of your choice, and it will be very detailed and will be of high quality. Good luck with this challenge! Remember, if you are the first or second person to figure out the code, I’ll make an awesome project for you.

      Winners:
      @CattyPlayzy
      @

      posted in General Discussion
      jeffreyrb03-gmail
      JaecadeJnight
    • RE: Sum stuff about @tengen.uzui

      @dreamsmp_luck there’s an easier way to completely bypass profanity filters here, but I’ll gatekeep the method since I’d rather it be harder to curse than easier.
      To add on to what you said with my POV,

      His age (whether he lied or not) and the other stuff doesn’t matter too much, it’s just that he said curse words, put on suicidalness for attention, and was pretty toxic (to me included) on this forum, which is all not allowed. He also posted his crap in the chinese categories (which i don’t have the ability to moderate) so that i can’t do anything about it, which made me pretty mad.

      posted in Feedback
      jeffreyrb03-gmail
      JaecadeJnight
    • RE: Question for the mods

      @dreamsmp_luck i would approve it, but i dont think i can do that so ill wait for em. Also I found that tengen uzui signed up with a school email, so I’ll be contacting his school about his behavior

      posted in General Discussion
      jeffreyrb03-gmail
      JaecadeJnight
    • RE: Sum stuff about @tengen.uzui

      @dreamsmp_luck it’s a method I’ll gatekeep, but i will say, anyone can do it very easily. It doesn’t even need a google search, like for the russian e or whatever. That’s all I’ll say about how I can say “crap”

      posted in Feedback
      jeffreyrb03-gmail
      JaecadeJnight

    Latest posts made by jeffreyrb03-gmail

    • RE: QnA thing idk

      @selene hi Catty

      posted in General Discussion
      jeffreyrb03-gmail
      JaecadeJnight
    • RE: how do I start a vary simple website?

      @dido_the_dino said in how do I start a vary simple website?:

      how do I start a vary simple website? I wanna start to get better at coding 🙂

      I’m guessing you’re new to coding and all, and here’s my suggestion: start here or start with Scratch. Scratch is simpler, but has less blocks than CreatiCode, so it’s your choice.

      Then, as you understand programming basics like variables, loops, etc, try to learn basic HTML. To code HTML (the markup language used to make websites), you just need an HTML editor in your browser.

      Go to https://www.w3schools.com/html/tryit.asp?filename=tryhtml_default

      The left side is the HTML code, and the right side is what you see for the output. Experiment with that a bit.

      posted in General Discussion
      jeffreyrb03-gmail
      JaecadeJnight
    • RE: New website I'm working on

      @dido_the_dino JayBlockz, scroll up if you want the link, it sucks tho and I havent worked on it for a while

      posted in General Discussion
      jeffreyrb03-gmail
      JaecadeJnight
    • RE: QnA thing idk

      @dreamsmp_luck bro i was watching the thinknoodles channel on pluto everyday back in like 2022

      posted in General Discussion
      jeffreyrb03-gmail
      JaecadeJnight
    • RE: Question for the mods

      @白刃の亡霊 jk, I was enjoying my summer off from school

      posted in General Discussion
      jeffreyrb03-gmail
      JaecadeJnight
    • RE: Question for the mods

      @白刃の亡霊 offlien

      posted in General Discussion
      jeffreyrb03-gmail
      JaecadeJnight
    • RE: New website I'm working on

      @tyller_ Oh ok thx, I’ll ask for help when I need I suppose, im not working with minified stuff anymore

      posted in General Discussion
      jeffreyrb03-gmail
      JaecadeJnight
    • RE: Question for the mods

      @dreamsmp_luck im online

      posted in General Discussion
      jeffreyrb03-gmail
      JaecadeJnight
    • RE: Cannot save project at all

      @sirbots said in Cannot save project at all:

      @dreamsmp_luck Not feasible to run smoothly on school computers. Let alone the game itself

      You’re underestimating school computers, non-Creaticode games that are big and have multiplayer have worked perfectly on every school computer I’ve used (like Eaglercraft’s multiplayer worked for me, and keep in mind that Eaglercraft source is 1 million+ lines of code).

      posted in Help
      jeffreyrb03-gmail
      JaecadeJnight
    • RE: Quick Question for my Game

      @dreamsmp_luck I don’t think it would be sensitive, but some people consider that inappropriate? I don’t think it’s bad, but because there’s children here, make sure to explain it in like an age appropriate way, so maybe dont use “sex” just use gender. I remember when I was in 2nd grade and found it in a dictionary and was so immature and showing it to everybody, so nowadays, since kids get chromebooks the moment they get out the womb, you might just wanna be a bit careful of the potential impact you could have if you educate them on gender topics that they usually understand when theyre like teenagers

      posted in Help
      jeffreyrb03-gmail
      JaecadeJnight