The Kosmian Way to Making an Elimination/K!llstreak Bonus! (Difficulty 3/10 đŸŸ©)

Thanks to @DXCTYPE for helping to try and retype it!
I usually get my guide ideas from a game I was playing and it has happened, yet again (Brawl Stars)!

An elimination bonus, as I like to call it, is a boost of damage or speed you get from knocking out an opposing player. For example, if you knock out your friend in a 2v2 game, you get x2 damage for the rest of that round.

Uses: This can be used for the following |

  • A Battle Royale Game

  • A Brawl Stars Game

  • I’m brain dead and can’t think of anything else


Devices (and 1 wire)

x1 Lifecycle (Player Knocks Out)

x1 Trigger (Invisible In-Game, Can’t be triggered by player collision)

x1 Property (Name: “Bonus”, Default Value: 0, Type: Number, Scope: Player )

*{x} Damage Boosts (x = your choice. I’m using 4.) (Boost Time: Forever)

(optional) x1 Lifecycle (Player knocked out) and x1 Damage Boost Device (1x damage, duration: forever)

*|Optional| {x} Speed Modifiers (x = your choice) (This can be used instead, or with, damage boosts)

There is only 1 wire so I’ll put it here as well:

Lifecycle [Event occurs → Trigger Trigger] Trigger

Trigger Blocks ‘N’ Damage Boost Settings

Don’t worry! These blocks, which go in the trigger if you didn’t figure out already, are super simple and easy! Thanks to @Cellofive for helping with the concatenation!

Blocks:

There isn’t much more! Just got to configure the channels for the damage boost devices and you’re done!

Increment each damage boost by one of the pre-made ticks. For example, I’m using 1.25x, 1.5x, 1.75x, 2x boosts. As seen above, the variable “o” increments once per knockout that the player gets and the message is broadcasted on channel of whatever number the variable “o” is, so for each damage boost device increment the receiving channel by 1. For the first damage boost device you set the receiving channel to “1” and for the second one you set the receiving channel to “2” etc.

Optional Lifecycle and Damage Boost:

If you didn’t notice when I was listing devices, I put an optional lifecycle and damage boost. Here’s what it’s for: Wire the lifecycle to the damage boost [event occurs → activate damage boost]. Yes. that’s it. This will help for games with respawning so that players don’t keep their damage boost from their “previous” life.

Alternate System (Devices ONLY)

Note: For the attachments to the system, it will only work for the original setup not this alternate one.

Not ready for properties and block code? Don’t worry, there’s still a device-only system available for you! It’s less memory efficient just so you know. On with it!

Devices:

x1 Knockout Manager(target: player, item to grant: your choice, I’m using lotto tickets; amount: 1, grant strategy: into inventory OR drop on knocked out player, drop chance: no).

Into inventory will grant the item directly into a player’s inventory and drop on player will make the item drop on the eliminated player. The latter is like power cubes in Brawl Stars. I’ll be using the 2nd option. 1 more thing: Make sure that the item you chose is NOT going to be used in anything else for your game.

*{x} Damage Boosts(incrementing by 1 tick per device, duration: forever)

*{x} Checkers(Check: item amount, # of checks: 1)(1st checker: item = 1, 2nd checker: item = 2, 3rd checker: item = 3, |do this repeatedly for all of your checkers until;|, second to last check: item = y, last check: item > y)

|Optional| Inventory Item Manager(managed item: your chosen item, alerts: no)

This is so that the player doesn’t get alerted that they received the item. Make sure to turn drop resources in the map settings to off.

x = your choice, I’m using x = 4 | y = item amount that is being checked for the second to last checker

Ex. second to last check: lottery ticket = 5. very last check: lottery ticket > 5. In this case y = 5.

Second to last checker |-----------| Last Checker

Wires and 1 channel (There’s quite a few that’s for sure):

For the channel, broadcast on channel “koed” when target is knocked out, in the knockout manager.

The first checker will receive on this channel and will start a check. Now for the wires. Get a wire from checker 1 to checker 2 [check fails → run check]. Do the same but from checker 2 to checker 3 and continuously do this for the rest of your checker as well until there are no more checkers to wire in. Now wire checker 1 to the first damage boost [check passed → activate damage boost]. Then wire checker 2 to the second damage boost [check passed → activate damage boost]. Repeat the step of wiring the checker to its corresponding damage boost device and do it for all of them with the same wires as above.

Side Note: If you choose this alternate method and want it to be like Brawl Stars where power cubes are dropped based on how many the knocked out player had then I will have to figure this out and maybe update this guide later. Hopefully this works for you currently!

Now you’re done! (with the basics lol). If you want more complicated systems and attachments look onwards! Otherwise, your journey through this guide ends here.

ExtrasđŸ‘Ÿ:

–

Are you ready for more?! Yeah that’s what I thought!

Here you will find some other add-ons to the main system. I wasn’t satisfied by the above either.

Bonus Damage Overlay

This will show how much extra damage the player does based on their elimination bonus.

Thanks to @chyrsostom for helping me with a small issue!

Extra Devices:

x1 Overlay (type: text, overlay default text: “KO Bonus: 0% DMG”, content scope: player)

Yep that’s all you need but it’s not that easy! (actually it kinda is
)

Let me emphasize 2 things: USE THE DEFAULT TEXT otherwise the overlay will show nothing originally. You don’t have to use percentages. I’m just using it because I like them better (impact from SSBU) but you can use multipliers like the damage boosts do.

First go into your “bonus” property, or whatever you named it, and make it broadcast on channel, “updtxt”, when property value changes.

Now create a block for the overlay that receives on channel “updtxt”.

Overlay Blocks:

Caption: I used external inputs so if it looks funky to you, now you know. :grinning:

Multiplier text:

If you wanted to use multipliers for the text instead of percentages look here!

The algorithm is a teeny bit more complicated, my dum brain took 1 minute to actually have to figure it out.

Edited Blocks:

Make sure to change your default overlay text to “KO Bonus: x1.0 DMG” or whatever fits for you!

Based on Total Players

This will change the system so that the player can get up to as many bonuses as there are other players. This way there isn’t a specific amount of bonuses you can get.

Devices:

x1 Property (Name: “tplayers”, type: number, scope: global)

{x} Damage Boost Devices (x = total amount of damage boost ticks there is)(tick is incremented by 1 per)

Optional:

x1 Trigger (max trigger: 1; scope: player, Trigger By player Collison: yes)

x1 Counter (scope: global, Update property: Yes; “tplayers”)

To track the amount of players in the game you can do 2 things, depending on your game:

  1. If your game has to have a certain number of players then set the default value of “tplayers” property to that number.
  2. This is where the optional devices come in! Place the trigger on the main spawn pad. You may need multiple triggers if there are multiple main spawn pads. Now wire the trigger to your counter [trigger triggered → increment counter].

Now that that’s done we just have to update the trigger block code (from the main system)!

Blocks:

This will make it so that if variable “o” goes over the total number of OTHER players then it will be set to 1 which means that the player was caught cheating.

Finally, for the extra damage boosts you’ve gotten, start doing the channel incrementing again. You already have some damage boosts so start where you left off. That’s it!

How difficult was this – the main system, not attachments – guide?
  • 0/10

  • 1/10

  • 2/10

  • 3/10

  • 4/10

  • 5/10

  • 6/10

  • 7/10

  • 8/10

  • 9/10

  • 10/10

  • 11/10

0 voters
Does Kosmian sound ok?
  • Yes
  • No
0 voters
Credits to this guide (MAKE SURE TO REPLACE 3 FOR AN E and 1 FOR AN i): https://forum.creative.gimkit.com/t/how-to-make-a-d3ath-streak-k1ll-streak-damage-boost/14891 If this is worse than the above guide then pls say so. I take constructive criticism as a way to get better. If it’s just not better compared to theirs then say so. Thx! 👍
5 Likes

here ill retype it for u gimme like 10 min

1 Like

You’re welcome

And it seems that most of the guide is smol use </small> at the end of the text you want to make small so this doesn’t happen

1 Like

It is bad design to repeatively use the sizing tags as that makes your guide hard to read. Just some advice.

1 Like

I think I got it fixed but I’ll credit you for trying anyways! Thx!

1 Like

Noice guide! I like it. Your stuff is pretty good. The guide jumpscared me because it turned big while I was reading


2 Likes

mb mb. Thx though!

1 Like
for Kosm0-o only

finally someone who sees how good csm is


its just too underrated

1 Like

ikr.
I fixed the polls as well!

2 Likes

Bump

Chrysostom Bumped Kosm0-o
Chrysostom has a bump-streak of 1

3 Likes