ServerClassInit<DT_FuncRotating::ignored>
0x00632550 · 714 bytes · __cdecl
_Z15ServerClassInitIN15DT_FuncRotating7ignoredEEiPT_
Decompiled
int (1 param)
/* int ServerClassInit<DT_FuncRotating::ignored>(DT_FuncRotating::ignored*) */
int ServerClassInit<DT_FuncRotating::ignored>(ignored *param_1)
{
int iVar1;
if (ServerClassInit<DT_FuncRotating::ignored>(DT_FuncRotating::ignored*)::g_SendProps == '\0') {
iVar1 = __cxa_guard_acquire(&ServerClassInit<DT_FuncRotating::ignored>(DT_FuncRotating::ignored*)
::g_SendProps);
if (iVar1 != 0) {
/* try { // try from 006325df to 006325e3 has its CatchHandler @ 0063281c */
SendPropInt(ServerClassInit<DT_FuncRotating::ignored>(DT_FuncRotating::ignored*)::g_SendProps,
0xbfae4c,0,4,-1,
(_func_void_SendProp_ptr_void_ptr_void_ptr_DVariant_ptr_int_int *)0x0,'\0');
/* try { // try from 00632617 to 0063261b has its CatchHandler @ 0063284b */
SendPropDataTable(ServerClassInit<DT_FuncRotating::ignored>(DT_FuncRotating::ignored*)::
g_SendProps + 0x54,0xc087aa,(SendTable *)0x0,
(_func_void_ptr_SendProp_ptr_void_ptr_void_ptr_CSendProxyRecipients_ptr_int
*)CBaseEntity::m_pClassSendTable,'P');
/* try { // try from 00632636 to 0063263a has its CatchHandler @ 00632869 */
SendPropExclude(ServerClassInit<DT_FuncRotating::ignored>(DT_FuncRotating::ignored*)::
g_SendProps + 0xa8,"DT_BaseEntity");
/* try { // try from 00632655 to 00632659 has its CatchHandler @ 00632870 */
SendPropExclude(ServerClassInit<DT_FuncRotating::ignored>(DT_FuncRotating::ignored*)::
g_SendProps + 0xfc,"DT_BaseEntity");
/* try { // try from 00632674 to 00632678 has its CatchHandler @ 00632877 */
SendPropExclude(ServerClassInit<DT_FuncRotating::ignored>(DT_FuncRotating::ignored*)::
g_SendProps + 0x150,"DT_BaseEntity");
/* try { // try from 006326cb to 006326cf has its CatchHandler @ 0063287e */
SendPropVector(ServerClassInit<DT_FuncRotating::ignored>(DT_FuncRotating::ignored*)::
g_SendProps + 0x1a4,0xbfae62,0x39c,0xc,-1,3.73082e-40,0.0,
(_func_void_SendProp_ptr_void_ptr_void_ptr_DVariant_ptr_int_int *)0xc7ec9090,
'\x10');
/* try { // try from 00632712 to 00632716 has its CatchHandler @ 00632885 */
SendPropAngle(ServerClassInit<DT_FuncRotating::ignored>(DT_FuncRotating::ignored*)::
g_SendProps + 0x1f8,0xc63f5c,-0x3a8,4,0xd,
(_func_void_SendProp_ptr_void_ptr_void_ptr_DVariant_ptr_int_int *)
(__DT_REL + 0x5c40),0x80);
/* try { // try from 00632759 to 0063275d has its CatchHandler @ 0063288c */
SendPropAngle(ServerClassInit<DT_FuncRotating::ignored>(DT_FuncRotating::ignored*)::
g_SendProps + 0x24c,0xc63f6d,-0x3ac,4,0xd,
(_func_void_SendProp_ptr_void_ptr_void_ptr_DVariant_ptr_int_int *)
(__DT_REL + 0x5c40),0x80);
/* try { // try from 006327a0 to 006327a4 has its CatchHandler @ 00632893 */
SendPropAngle(ServerClassInit<DT_FuncRotating::ignored>(DT_FuncRotating::ignored*)::
g_SendProps + 0x2a0,0xc63f7e,-0x3b0,4,0xd,
(_func_void_SendProp_ptr_void_ptr_void_ptr_DVariant_ptr_int_int *)
(__DT_REL + 0x5c40),0x80);
/* try { // try from 006327e7 to 006327eb has its CatchHandler @ 0063289a */
SendPropInt(ServerClassInit<DT_FuncRotating::ignored>(DT_FuncRotating::ignored*)::g_SendProps
+ 0x2f4,0xc5c0fc,0x94,4,8,
(_func_void_SendProp_ptr_void_ptr_void_ptr_DVariant_ptr_int_int *)
((int)&__DT_REL[0x15c40].r_offset + 1),'\x10');
__cxa_guard_release(&ServerClassInit<DT_FuncRotating::ignored>(DT_FuncRotating::ignored*)::
g_SendProps);
__cxa_atexit(__tcf_1,0,&__dso_handle);
}
}
SendTable::Construct
((SendTable *)DT_FuncRotating::g_SendTable,
(SendProp *)
(ServerClassInit<DT_FuncRotating::ignored>(DT_FuncRotating::ignored*)::g_SendProps +
0x54),9,"DT_FuncRotating");
return 1;
}
SourceMod gamedata
paste intoaddons/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.
Signatures + Functions block. The plugin uses
DHookCreateFromConf - DHooks reads return type, this-type,
calling convention, and argument types straight from the gamedata. Less
boilerplate in the plugin, types travel with the gamedata.
Gamedata KeyValues
DHooks plugin example
Type inference is best-effort from the C signature - sanity-check the DHooks types before shipping.