Disclaimer: This is not my guide, and all credit for making this guide should go to @getrithekd. Please do not like this post, instead, go like the original post, or some of their other guides to check them out. The purpose of this is simply to allow more edit time by making it a wiki. The ONLY person allowed to edit this is @getrithekd, and editing from anyone else is a violation of their intellectual property. Remember that anyone can see who has edited a wiki, so any unauthorized editing WILL be reported.
This guide lists all of the different concepts in Gimkit Creative.
Advanced Update Order (Difficulty Rating 10/10)
Advanced Update Order | Difficulty:
The Advanced Update Order Family
This is the order in which things are updated
- 1 or
- 2 or
- 3 or
- 4 or
- 5 or
- 6 or
- 7 or
- 8 or
- 9 or
- 10 or
Scope (Difficulty Rating: 3/10 )
Say we have a channel. It broadcasts to a counter when a button gets clicked. The counter updates a property, which broadcasts to a respawner. If the scope is player, the player that clicks the button will get respawned. If the scope is team, then the player’s team gets respawned. You can also use relays to change the scope. However, you can’t switch it to a specific player. However, you can give a player an item and then run a channel for everyone that check if they have that item. If they do, then it will switch them to a team. Then, you can choose that team to switch the scope to. Scope also allows for barriers blocking bullets but not people.
Combining properties with scope gives us a memory saving powerhouse. Instead of having a property for each person, we have a single property for all the players!
However, scope is a little finnicky to work with. It is often the cause of lots of bugs in code. It is pretty hard to use if you come back to your map after a few days.
- 1 or
- 2 or
- 3 or
- 4 or
- 5 or
- 6 or
- 7 or
- 8 or
- 9 or
- 10 or
Pseudo-Teaming (Difficulty Rating: 2/10)
The Art of Psuedo Teaming: A Comprehensive Guide
An In-Depth Guide on Numerical Pseudo-Teaming
Pseudo teaming is using items to team players, instead of using the regular team function. This allows for teams to have richer interactions than before! One of the most famous examples of pseudo-teaming is in the Gimkit replications of Among Us. This can also be changed into regular teams and back.
- 1 or
- 2 or
- 3 or
- 4 or
- 5 or
- 6 or
- 7 or
- 8 or
- 9 or
- 10 or
Concatenation (Difficulty Rating: 1/10)
The Art of Concatenation: Credits to @Zypheir and @Blackhole927- Difficulty 7.5/10 or
Concatenation reduces your block usage and tedious tasks in making complex maps like ___land or Helpian Monopoly. It is a rare case if you can use it, but if you can, you should.
- 1 or
- 2 or
- 3 or
- 4 or
- 5 or
- 6 or
- 7 or
- 8 or
- 9 or
- 10 or
Coordinate Systems: (Difficulty Rating: 2/10)
Coordinate systems can help you track where players are at and where they are going. This is the most efficient coordinate system:
The Tamian Coordinate System | Difficulty: (Version 2.0)
This one uses as little zones as possible, but it is a little harder to work with.
Here is a more basic but MUCH more memory-intensive coordinate system:
The Tamian Coordinate System | Difficulty: (See: Updated)
This one is just plainly easier to work with, but if the first one uses n zones, the second one use n*n zones!
- 1 or
- 2 or
- 3 or
- 4 or
- 5 or
- 6 or
- 7 or
- 8 or
- 9 or
- 10 or
Recursion
If you are a new user, you may have heard about recursion being really laggy. It may be laggy, but it is good for lots of things that use loops! This is pretty simple to learn. We have something that makes something else happen, and on and on until the first event happens again, and happens again. Somewhere in each repetition, a property that determines if the first event happens is changed. While the property meets the conditions we set, the the loop will go on and on.
- 1 or
- 2 or
- 3 or
- 4 or
- 5 or
- 6 or
- 7 or
- 8 or
- 9 or
- 10 or
Player ID's
Player ID’s are really neat. They are the building blocks of advanced player interactions. They are the base of infinite popup voting and for admin options. Here is the guide on Player ID’s:
The All Important Player IDs
To be continued…