Page 1 of 1

Gambling Krall

Posted: Sat Mar 31, 2018 6:01 am
by EvilGrins
Where in UnrealEd do I find the dice the Krall gamble with?

Apparently setting them up to use the dice isn't enough for them to magically appear.

Re: Gambling Krall

Posted: Sat Mar 31, 2018 9:42 am
by UTNerd24
The actor class is Unreali.Dice
However, Im not sure whether they need to be present in a map or merely built into the Krall's definitions.

Re: Gambling Krall

Posted: Sat Mar 31, 2018 12:07 pm
by Feralidragon
It's been a long while since I have set them up myself, but from what I briefly checked in the source code, besides setting bDicePlayer to True, you need to go to the AI properties and set them all with the same TeamTag, and probably setting one of them with bTeamLeader to True.

Re: Gambling Krall

Posted: Sat Mar 31, 2018 12:08 pm
by Hellkeeper
EvilGrins wrote:Apparently setting them up to use the dice isn't enough for them to magically appear.
They have to be in a groupe which you can set by giving them the same team tag in AI => TeamTag.
The group needs to have a leader (one of them needs to have AI => bTeamLeader = true).
Once they are set up this way and all have bDicePlayer = true, the leader will generate the dice and they will play.

Re: Gambling Krall

Posted: Sat Mar 31, 2018 3:50 pm
by EvilGrins
Thanks guys.