NPCBlockSide not working with custom NPCs (Fixed patch 15)
Posted: 24 Jul 2019, 8:58
This problem was fixed with default NPCs, however I'm still experiencing this issue with custom NPCs. If I set "NPCBlockSide" to "False", the NPC will ignore all kinds of collisions other NPCs:
The script I used is very simple, it only adds gravity:
I'm not 100% sure if this is a bug or this happens because I should implement these collisions by myself, but hopefully I don't need to do that.
- Spoiler

The script I used is very simple, it only adds gravity:
Code: Select all
with npc(sysval(param1))
.ysp = .ysp + 0.26
if .ysp >= 8 then
.ysp = 8
end ifI'm not 100% sure if this is a bug or this happens because I should implement these collisions by myself, but hopefully I don't need to do that.