Page 1 of 1

NPCBlockSide not working with custom NPCs (Fixed patch 15)

Posted: 24 Jul 2019, 8:58
by Lx Xzit
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:

Spoiler
Image

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 if


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.