Page 1 of 1

Re: grievous cant hit enemies

Posted: Tue Apr 16, 2019 6:41 am
by genadiyrool
there is a weird bug on my utapau map
where grievous cant seem to connect his hits on enemies (or allies for that matter)
appears more often than not
i didnt change anything about grievous himself
just added a magnaguard with a staff on this map as a selectable unit

maybe magnaguard not even the cause of it, because i seem to vaguely remember this bug appearing before, just more rarely (??)
maybe its a known bug??

EDIT
solved. if you adding additional units with lightsabers you have to add lines from hero assault mode:
Hidden/Spoiler:
SetMemoryPoolSize ("ClothData",20)
SetMemoryPoolSize ("Combo",30) -- should be ~ 2x number of jedi classes
SetMemoryPoolSize ("Combo::State",500) -- should be ~12x #Combo
SetMemoryPoolSize ("Combo::Transition",500) -- should be a bit bigger than #Combo::State
SetMemoryPoolSize ("Combo::Condition",500) -- should be a bit bigger than #Combo::State
SetMemoryPoolSize ("Combo::Attack",400) -- should be ~8-12x #Combo
SetMemoryPoolSize ("Combo::DamageSample",4000) -- should be ~8-12x #Combo::Attack
SetMemoryPoolSize ("Combo::Deflect",88) -- should be ~1x #combo
AND watch out for and remove any of those lines already written in
like i had: SetMemoryPoolSize ("Combo::DamageSample",610)
existing already, overwriting mine: SetMemoryPoolSize ("Combo::DamageSample",4000)
which was the cause