L L4D2node

ZombieBotLocomotion::OnMoveToSuccess

0x00a50f70 · 71 bytes · __cdecl

_ZN19ZombieBotLocomotion15OnMoveToSuccessEPK4Path

Decompiled

undefined (1 param)

/* ZombieBotLocomotion::OnMoveToSuccess(Path const*) */

void ZombieBotLocomotion::OnMoveToSuccess(Path *param_1)

{
  undefined4 uVar1;
  undefined4 uVar2;
  undefined4 uVar3;
  
  uVar3 = DAT_01053d50;
  uVar2 = DAT_01053d4c;
  uVar1 = vec3_origin;
  *(undefined4 *)(param_1 + 0x6c) = vec3_origin;
  *(undefined4 *)(param_1 + 0x70) = uVar2;
  *(undefined4 *)(param_1 + 0x74) = uVar3;
  *(undefined4 *)(param_1 + 0x94) = uVar1;
  *(undefined4 *)(param_1 + 0x98) = uVar2;
  *(undefined4 *)(param_1 + 0x9c) = uVar3;
  return;
}

SourceMod gamedata

paste into addons/sourcemod/gamedata/<your_plugin>.txt
used as the SourceMod key — change to fit your plugin's convention
SourceMod library name (server / engine / matchmaking)

Just a Signatures{} block, ready to drop into a gamedata file. Wire it up in your plugin however you like - SDKCall, DHooks, raw memory ops, or anything else.



        

        

          

Type inference is best-effort from the C signature - sanity-check the DHooks types before shipping.

Return-type handling cheatsheet (DHookReturn)