.. Aber da der erste Server momentan noch auf Mani läuft und der zweite komplett mit SM aufgebaut worden ist kann ich es leider nicht mehr so machen wie damals keinahn .. |
|
Quellcode |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 17 18 19 20 21 22 23 24 25 26 27 28 29 30 31 32 33 34 35 36 37 38 39 40 41 42 43 44 45 46 47 48 49 50 51 52 53 54 55 56 57 58 59 60 61 62 63 |
//Configure your menu here
"Models"
{
//Name of the item to appear in the menu
"Admin Skins"
{
//Sourcemod admin group required to see/access this submenu
"Admin" "Admins"
//Models available for team 1 (terrorist / allies)
"Team1"
{
//Name to appear in submenu
"Guerilla Admin"
{
//path to the model file. This will automatically be precached
"path" "models/player/ics/t_guerilla_admin/t_guerilla.mdl"
}
"Artic Admin"
{
//path to the model file. This will automatically be precached
"path" "models/player/ics/t_arctic_admin/t_arctic.mdl"
}
"Terror Admin"
{
//path to the model file. This will automatically be precached
"path" "models/player/ics/t_admin_t_fixed/terror.mdl"
}
"LeeT Admin"
{
//path to the model file. This will automatically be precached
"path" "models/player/ics/t_leet_admin/t_leet.mdl"
}
}
//Models available for team 2 (ct / axis)
"Team2"
{
"SaS Admin"
{
"path" "models/player/ics/ct_sas_admin/ct_sas.mdl"
}
"GsG9 Admin"
{
//path to the model file. This will automatically be precached
"path" "models/player/ics/ct_gsg9_admin/ct_gsg9.mdl"
}
"GiGn Admin"
{
//path to the model file. This will automatically be precached
"path" "models/player/ics/ct_gign_admin/ct_gign.mdl"
}
"Urban Admin"
{
//path to the model file. This will automatically be precached
"path" "models/player/ics/admin_ct_fixed/urban.mdl"
}
}
}
}
//All other files needed for the above models must be listed in modeldownloads.ini
//This forces the clients to download the needed files
|