Closed cmd51 closed 3 years ago
force the equip on t
or just add it to the gameitems in initialize kits
change this
if (itemTypeName == "#CSGO_Type_Knife" && item->getRarity() == 6) {
if (const auto image = item->getInventoryImage()) {
skins.emplace_back(0, item->getWeaponId());
gameItems.emplace_back(Type::Skin, 6, skins.size() - 1, interfaces->localize->findSafe(item->getItemBaseName()), image);
}
}
to this
if (itemTypeName == "#CSGO_Type_Knife") {
if (const auto image = item->getInventoryImage()) {
skins.emplace_back(0, item->getWeaponId());
gameItems.emplace_back(Type::Skin, 6, skins.size() - 1, interfaces->localize->findSafe(item->getItemBaseName()), image);
}
}
this will allow you to give yourself ct t and spectral shiv knife i think
also remove the check for the equip
Thanks ❤️
help