Making rule for my game

Hi

i want to ask , is it okay to create the rule for my game such as timer , score , spawning etc in level blueprint? I cant get my game rule works when i do it in the game mode blueprint since it seems not even active ( i tried to put some print string on “Event Begin Play” to test it) even after i change my default game mode for that level into the desired game mode .

thx

Make sure you set the level to use your game mode blueprint. If the level doesn’t know to use that mode, obviously it will not be called. Check out this video from Unreal’s Twin Stick Shooter tutorial, at 8:15 he starts showing how to do this:

As far as I know, the level blueprint will work the same as the game mode blueprint. So to answer your question, yes it is okay to use the level blueprint for this kind of functionality.

Thx Zilphy ,your answer give me inspiration to get my game mode to work . Before , i alread set my game mode to the mode that i want , but it just doesnt want to start the game mode

my solution is to make my level Blueprint call an event for my game mode to start to do all the work .