Garry's Mod

Garry's Mod

ANPlus [BASE] | Replacer Update
Showing 271-280 of 301 entries
< 1 ... 26  27  28  29  30  31 >
Update: Nov 22, 2022 @ 6:01am

CHANGES:

  • Fixed an issue where NPCs with ['LookDistance'] set to high values would not fire their weapons and try to close the distance with their enemy instead (I'm still looking into it and will probably work on this little more).

Update: Nov 21, 2022 @ 10:13am

CHANGES:

  • Just in case.

Update: Nov 20, 2022 @ 12:44pm

CHANGES:

  • Removed an unnecessary layer of tables from ['ActivityOther'] and ['ActivityMovement']:
    > Before:
    ['ActivityMovement'] = {

    [ACT_RUN] = { { 160 } },

    },
    > After:
    ['ActivityMovement'] = {

    [ACT_RUN] = { 160 },

    },

  • Added new NPC function "['OnNPCCreateEntity'] = function(self, ent)":
    > It's called whenever NPC spawns or creates something (this something needs to have its owner set to our NPC for this to register) like the combine soldiers throwing grenades.

Update: Nov 20, 2022 @ 12:09pm

CHANGES:

  • A code cleanup.

Update: Nov 20, 2022 @ 12:09pm

Update: Nov 18, 2022 @ 1:10pm

CHANGES:

  • Added the "Mega Angry Odessa Cubbage" because I can.

Update: Nov 18, 2022 @ 12:37pm

CHANGES:

  • Added 4th variable to the "ANPlusPlayAnim" function that sets if NPC should continue to look at its target during the animation.
  • Added a new NPC function "['OnNPCUse'] = function(ply, self)". It fires every frame when players use the "Use" key on our NPC.

Update: Nov 17, 2022 @ 4:03am

CHANGES:

  • Custom animations should play properly now.
  • Added some functions to the TEMPLATE discussion.

Update: Nov 16, 2022 @ 4:44pm

CHANGES:

  • Some minor fixes.

Update: Nov 8, 2022 @ 3:07pm

CHANGES:

  • Fixed models not being randomized properly.