AlliedModders

AlliedModders (https://forums.alliedmods.net/index.php)
-   Scripting Help (https://forums.alliedmods.net/forumdisplay.php?f=11)
-   -   player models (https://forums.alliedmods.net/showthread.php?t=47120)

bonafide 11-10-2006 13:57

player models
 
I need to find out what model is going to be used by the player. How do i do that? I know its like cs_set_user_model but how do i make it so it knows what it's switching to.

The Specialist 11-10-2006 18:06

Re: player models
 
okay the best way to do what you want to do . Is by doing
Code:
    new team = get_user_team(id);     if(team == CT_TEAM)     {             cs_set_user_model(id,"gign");     }else{             cs_set_user_model(id, "leet");     }     }


now if you want to find out what models there are. go open your czeo/models/players/ folder . and see all the models that you can use. make sure if the player that is changing is ct he gets a t model . :up:

bonafide 11-10-2006 19:29

Re: player models
 
i did look and nothing was there besides 2 models. Yes i did look in counter-strike/cstrike/models (not my server ones). One model was in a folder called goomba in it was goomba.mdl and one model called remapped.mdl

The Specialist 11-10-2006 19:53

Re: player models
 
ok apperently it must be in the server czero/models/player

models :
arctic
gign
gsg9
guerilla
leet
militia
sas
spetsnaz
terror
urban
vip
youll have to figure out which ones are ct and which are t for yourself
:up:


All times are GMT -4. The time now is 06:54.

Powered by vBulletin®
Copyright ©2000 - 2024, vBulletin Solutions, Inc.