Hi I am working on a game, were object falls from the sky and you collect it before it hit the ground.
The problem is, when I make a world setting and add my blueprint character to it, I cant access any
commands from the item that will damage or heal the person. Here is a idea drawing of what I am
aiming for.
Is there a site that can teach me step by step of creating a game like this?
I when I play the game the object hits me but no command from the item
effect the player. Like changing it flipbook to a hit flipbook. I be leave it is
because, the character blueprint is not in the game level, so I can add any
command from other blueprint to it. Sorry I sound so confuse. Hope there is
someone out there that know what I should do or go to. Thanks. (o _ o)
You have no variables on your character blueprint to define its health. Create a float variable to represent this. call it something like “health”
Then on your object blueprints do a cast to your character, so you can access the variables. (Right click - “Get player character” - Drag off “Cast to MyCharacter” (Or whatever your character Blueprint is called) then off the “As My Character” pin, drag off and “SET Health”)
Add this to your overlap events and just add a float - float for your red damage one, and a float + float for your green healing one(Set health > Float+float (current health + number you want to add))
Do the same process to create a points system (create INT variable in your character blueprint, cast to it and set Points to Points +X using an int + int)
You will probably want visual representation of this on screen too, see this link:
That’s actually a video from an inventory system tutorial series but you can transfer the skills shown
Hope this helps, peace and love, good luck with your project.
No problem - as a side note, you can also use a “Print String” node (And a string to int or string to float converter) to print your health/points values to a log/the screen, this will allow you to see if the system is working before you get visual representation in the forms of a HUD / Widget blueprint.
That work great thanks, but you wouldn’t know how to make it were the item, that does damage cause my character flipbook
to change to another flipbook, that show it got hit. thank you for getting me out of the other problem. (^v^)
Thanks I check it out and try some of the trick. In doing this I found you it was my collision of one of my blueprint. My character, or one of my object. Some reason none of the
collision is working with overlap event or hit event. It is just not recognize it. I hope this is the only problem. Its able to recognize hit on the invisible walls I have, to prevent
the player from falling off the edge. So thanks for the help, it help fine what is the source. (0v0)