L L4D2node

CVomitJarProjectile::Spawn

0x00578d60 · 102 bytes · __thiscall

_ZN19CVomitJarProjectile5SpawnEv

Decompiled

undefined (1 param)

/* CVomitJarProjectile::Spawn() */

void __thiscall CVomitJarProjectile::Spawn(CVomitJarProjectile *this)

{
  if (*(float *)(this + 0x1a74) != -1.0) {
    (**(code **)(*(int *)(this + 0x1a70) + 4))(this + 0x1a70,this + 0x1a74);
    *(undefined4 *)(this + 0x1a74) = 0xbf800000;
  }
  (**(code **)(*(int *)this + 0x70))(this,"models/w_models/weapons/w_eq_bile_flask.mdl");
  CBaseCSGrenadeProjectile::Spawn((CBaseCSGrenadeProjectile *)this);
  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)