Установить Steam
войти
|
язык
简体中文 (упрощенный китайский)
繁體中文 (традиционный китайский)
日本語 (японский)
한국어 (корейский)
ไทย (тайский)
Български (болгарский)
Čeština (чешский)
Dansk (датский)
Deutsch (немецкий)
English (английский)
Español - España (испанский — Испания)
Español - Latinoamérica (испанский — Латинская Америка)
Ελληνικά (греческий)
Français (французский)
Italiano (итальянский)
Bahasa Indonesia (индонезийский)
Magyar (венгерский)
Nederlands (нидерландский)
Norsk (норвежский)
Polski (польский)
Português (португальский — Португалия)
Português-Brasil (португальский — Бразилия)
Română (румынский)
Suomi (финский)
Svenska (шведский)
Türkçe (турецкий)
Tiếng Việt (вьетнамский)
Українська (украинский)
Сообщить о проблеме с переводом
function GM:PlayerSetHandsModel(ply, hands)
-- Retrieve the skin value from your convar or NW variable
local skin = ply:GetInfoNum("your_skin_convar", 0)
local handInfo = {
model = "models/weapons/c_arms_default.mdl", -- default viewmodel
skin = skin,
body = ""
}
-- Change the hand model based on the skin selection.
if skin == 1 then
handInfo.model = "models/weapons/c_arms_variant1.mdl"
elseif skin == 2 then
handInfo.model = "models/weapons/c_arms_variant2.mdl"
end
-- Apply the model and skin
hands:SetModel(handInfo.model)
hands:SetSkin(handInfo.skin)
-- Optionally, update bodygroups if needed:
-- hands:SetBodyGroups(handInfo.body)
end
[ Player changes skin via slider ]
▼
[ Player entity gets new skin index ]
▼
[ World Model (Cat body) updates automatically ]
▼
[ Viewmodel (Hands/Arms) remains unchanged ]
[ Hook detects skin mismatch ]
▼
[ hook calls vm:SetSkin( ply:GetSkin() ) ]
▼
[ Viewmodel updates to the new skin ]
Its called smth like Think Hook, maybe you can try finding a tutor on yt or use AI's help