Benutzerinformationen überspringen
Wohnort: Hagen
Beruf: Mechatroniker (didaktische Systeme)
Rootserver vorhanden: Nein
Benutzerinformationen überspringen
Wohnort: Hagen
Beruf: Mechatroniker (didaktische Systeme)
Rootserver vorhanden: Nein
|
|
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 |
//Configure your menu here
"Models"
{
//Name of the item to appear in the menu
"Admin Only Models"
{
//Sourcemod admin group required to see/access this submenu
"Admin" "Full Admins"
//Models available for team 1 (terrorist / allies)
"Team1"
{
//Name to appear in submenu
"Cool Model 1"
{
//path to the model file. This will automatically be precached
"path" "models/player/ics/t_guerilla_z/t_guerilla.mdl"
}
"Cool Model 2"
{
//path to the model file. This will automatically be precached
"path" "models/player/ics/t_arctic_admin/t_arctic.mdl"
}
}
//Models available for team 2 (ct / axis)
"Team2"
{
"CT Only Model"
{
"path" "models/player/ics/ct_gsg9_admin/ct_gsg9.mdl"
}
}
}
}
|