Installer Steam
log på
|
sprog
简体中文 (forenklet kinesisk)
繁體中文 (traditionelt kinesisk)
日本語 (japansk)
한국어 (koreansk)
ไทย (thai)
Български (bulgarsk)
Čeština (tjekkisk)
Deutsch (tysk)
English (engelsk)
Español – España (spansk – Spanien)
Español – Latinoamérica (spansk – Latinamerika)
Ελληνικά (græsk)
Français (fransk)
Italiano (italiensk)
Bahasa indonesia (indonesisk)
Magyar (ungarsk)
Nederlands (hollandsk)
Norsk
Polski (polsk)
Português (portugisisk – Portugal)
Português – Brasil (portugisisk – Brasilien)
Română (rumænsk)
Русский (russisk)
Suomi (finsk)
Svenska (svensk)
Türkçe (tyrkisk)
Tiếng Việt (Vietnamesisk)
Українська (ukrainsk)
Rapporter et oversættelsesproblem
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