How do I create powerups for my game? (visual guides will be helpful)

Thats a mouthfull of questions… I would recommend you to NOT start with multiplayer and/or vehicle game when you are not at least familar with UE…

so, the powerups are quite easy to make: create a basic BP which gets the parent of your 4. Powerups. Add it a collision Box, so you can activate the powerup on overLap events (check collission channels and pickup tutorial videos, there are plenty) and make it dissappear (destroy). The timebased powerups begin the overlap by checking if the overlapped actor is a vehicle (cast) then, apply your effect (modify attributes of the vehicle which passed throuhg the powerup), start a timer which disables the effect on the vehicle. The 5 times I would set a variable on the vehicle of powerupBP-Reference. In your shoot event on the vehicle check if the variable is valid, then retreive its damage increase variable (int) and apply that effect on your weapon or damage affect on the opponent, decrease the variable which holds how often you can use it by 1, if its 0, remove the powerupBP-Reference (set to nothing).

  1. set the speed of the vehicle to eg 80%
  2. set it to eg 120%
  3. in the details of a mesh, you have three relevat options in rendering category: owner no see, only owner see and of course visible. with this settings you can controll that eg. the wheels are “onyl owner see”, the rest of the car is NOT visible.
  4. create a int variable which defaults to 5. in your powerup, on your overlap set the powerup (self) as a reference to the powerupBP variable, then like I wrote above

On all the steps you need to set the variables serverside and bother with replication, if you really want to do multliplayer

Hi

This is my first post in this forum…I have a university game project due in next few weeks’ time, I’m suppose to come up with a car…So I’m working on a two player car chase game, I’ve found out that my course instructor likes power ups in a game…so I’ve came up with an idea of three power up

  1. Slow down:.Picking up this power up will slow down the car for around 25-45 seconds…giving the opponent the chance to catch up to them…

  2. Boost: Like the name suggests it will speed up the vehicle for a 25-35 seconds

  3. Invincibility: This one is bit tricky as the name suggest it will make a vehicle completely invincible…but what I want is when a player picks this power up…I want their vehicle to complete invincible except for the tire…so that they may know where their vehicle is headed…but on the opponents’ screen I want it to be completely invincible (not even the tires should show up)

  4. Increase damage: This one is bit different from the rest…what I want here is when a player picks it up…Player will get 5 hits…with a 30% damage hit rate…after 5 hits this power up will die

P.S: Screenshots for blueprints or any sort of visual guide will be helpful…Thanks

@Superbadsal if it answers your question, please mark it as solved/correct

Mate, I tried…but none of them are working…can you upload/share a screenshot of the bp?