View Single Post
komashchenko
BANNED
Join Date: Nov 2013
Old 12-01-2016 , 11:57   Re: [CS:GO] Hide new arms?
Reply With Quote #30

I do not know, but it can be useful
CBaseCombatCharacter::EquipWearable(CEconWear able*)
CBaseCombatCharacter::RemoveWearable(CEconWea rable*)

I was able copy the gloves are available in player
and set them at spawn another player
Spoiler

PHP Code:
int entity GetEntPropEnt(iClientProp_Send"m_hMyWearables");
SetEntPropEnt(iClient2Prop_Send"m_hMyWearables"entity); 

But when I tried to create them manually, it did not work
PHP Code:
int entity CreateEntityByName("wearable_item");
DispatchSpawn(entity); 
SetEntProp(entityProp_Send"m_iItemDefinitionIndex"5034);
SetEntProp(entityProp_Send"m_nFallbackPaintKit"10009);
SetEntPropEnt(iClientProp_Send"m_hMyWearables"entity); 
komashchenko is offline