View Single Post
  #2  
Old 08-22-2020, 10:39 PM
Huppy's Avatar
Huppy
Demi-God
 
Join Date: Oct 2010
Posts: 1,333
Default

There was a past issue with those sounds, which was caused by the npc flymode defaulting to greater than 0. (off the ground). In the npc_types table there is a field for flymode (now), but I noticed it was set to -1 by default. I changed them all to 0, and all sounds are there, including the hill giant stomp, lol
Easy way I did it, run this query - UPDATE npc_types SET flymode = 0 WHERE flymode < 0;
Reply With Quote