Update GivePlayerItem for new params in CS:GO.
This commit is contained in:
parent
e6ead8b5aa
commit
f079773195
@ -140,6 +140,39 @@ static cell_t RemovePlayerItem(IPluginContext *pContext, const cell_t *params)
|
|||||||
return ret ? 1 : 0;
|
return ret ? 1 : 0;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
#if SOURCE_ENGINE == SE_CSGO
|
||||||
|
class CEconItemView;
|
||||||
|
static cell_t GiveNamedItem(IPluginContext *pContext, const cell_t *params)
|
||||||
|
{
|
||||||
|
static ValveCall *pCall = NULL;
|
||||||
|
if (!pCall)
|
||||||
|
{
|
||||||
|
ValvePassInfo pass[5];
|
||||||
|
InitPass(pass[0], Valve_String, PassType_Basic, PASSFLAG_BYVAL);
|
||||||
|
InitPass(pass[1], Valve_POD, PassType_Basic, PASSFLAG_BYVAL);
|
||||||
|
InitPass(pass[2], Valve_POD, PassType_Basic, PASSFLAG_BYVAL);
|
||||||
|
InitPass(pass[3], Valve_Bool, PassType_Basic, PASSFLAG_BYVAL);
|
||||||
|
InitPass(pass[4], Valve_CBaseEntity, PassType_Basic, PASSFLAG_BYVAL);
|
||||||
|
if (!CreateBaseCall("GiveNamedItem", ValveCall_Player, &pass[4], pass, 4, &pCall))
|
||||||
|
{
|
||||||
|
return pContext->ThrowNativeError("\"GiveNamedItem\" not supported by this mod");
|
||||||
|
} else if (!pCall) {
|
||||||
|
return pContext->ThrowNativeError("\"GiveNamedItem\" wrapper failed to initialize");
|
||||||
|
}
|
||||||
|
}
|
||||||
|
|
||||||
|
CBaseEntity *pEntity = NULL;
|
||||||
|
START_CALL();
|
||||||
|
DECODE_VALVE_PARAM(1, thisinfo, 0);
|
||||||
|
DECODE_VALVE_PARAM(2, vparams, 0);
|
||||||
|
DECODE_VALVE_PARAM(3, vparams, 1);
|
||||||
|
*(CEconItemView **)(vptr + 12) = NULL;
|
||||||
|
*(bool *)(vptr + 16) = false;
|
||||||
|
FINISH_CALL_SIMPLE(&pEntity);
|
||||||
|
|
||||||
|
return gamehelpers->EntityToBCompatRef(pEntity);
|
||||||
|
}
|
||||||
|
#else
|
||||||
static cell_t GiveNamedItem(IPluginContext *pContext, const cell_t *params)
|
static cell_t GiveNamedItem(IPluginContext *pContext, const cell_t *params)
|
||||||
{
|
{
|
||||||
static ValveCall *pCall = NULL;
|
static ValveCall *pCall = NULL;
|
||||||
@ -166,6 +199,7 @@ static cell_t GiveNamedItem(IPluginContext *pContext, const cell_t *params)
|
|||||||
|
|
||||||
return gamehelpers->EntityToBCompatRef(pEntity);
|
return gamehelpers->EntityToBCompatRef(pEntity);
|
||||||
}
|
}
|
||||||
|
#endif
|
||||||
|
|
||||||
static cell_t GetPlayerWeaponSlot(IPluginContext *pContext, const cell_t *params)
|
static cell_t GetPlayerWeaponSlot(IPluginContext *pContext, const cell_t *params)
|
||||||
{
|
{
|
||||||
|
Loading…
Reference in New Issue
Block a user