Recent content by Jimmy_The_Knight

  1. Jimmy_The_Knight

    Can you skip to a certain part of a sound?

    Insane trick: - play the audio from 2 separate entities, the second one with the time offset you want to skip - bring the second entity close to the player - when skipping, yeet the entity away (or just remove it completely) and swap it with the first one
  2. Jimmy_The_Knight

    i made a shader (yay)

    I am terrified to run this on my personal computer
  3. Jimmy_The_Knight

    Worldedit Basically

    I don't know what timeline you are living in but you literally can
  4. Jimmy_The_Knight

    A Common problem

    I would say that I mostly agree with this, maybe apart from deleting your projects (you might gain motivation to work on them or even finish them, or you might want to reuse some of your old code in a new project) Here are a few tips from my experience that helped me finish my games: 1: Make...
  5. Jimmy_The_Knight

    How do I make an item enchanted, but not have the enchant glint on it?

    If you dont want players to mess with their armor (and maybe their inventory in general), then I recommend doing: Player click own inventory event -> check whether the clicked slot index is an armor slot (using if variable, there is a game value for clicked slot index) -> if yes, then cancel...
  6. Jimmy_The_Knight

    Dummies

    Hot take: while this could potentially be very useful, I like that you have to test with real players and that there's no workaround. Apart from testing whether the mechanics work or not, you can ask them for feedback, and since they interact with the game in their own unique way they may find...
  7. Jimmy_The_Knight

    Teleport to functions/processes using a command

    Here's an example of how this could work: /tpf [function name] / /tpp [process name] teleports you to the function/process containing the given text (not case sensitive). If there are multiple functions/processes that have similar text in their names, then it opens an inventory menu containing...
  8. Jimmy_The_Knight

    I'm going to sleep

    😳
  9. Jimmy_The_Knight

    I need plot ideas

    Immersive stealth game
  10. Jimmy_The_Knight

    teleport to event blocks

    Finally someone said it, I hate going through my 20 layers of code just to find that pick up event (to prevent suffering maybe just call a function for every event)
  11. Jimmy_The_Knight

    meow

    meow
  12. Jimmy_The_Knight

    Sputt rank for us OG's

    Im neither a fan nor a fridge sorry :(
  13. Jimmy_The_Knight

    Sputt rank for us OG's

    This guy has to be trolling
  14. Jimmy_The_Knight

    Path Generation on Grid

    I'm not sure if I understand what you're trying to do, but here's how I'd make a tile-based dungeon generation system: - Store the two location boundaries of every structure in a list (kind of like how you'd select them using WorldEdit.) - Associate a block with every single different tile you...
Top Bottom