[QUOTE=gdfsgdfg;17118458]"Soldier's Medal"
{
"index" "insert number here i think"
"model" ""
"flags" "INVISIBLE SHOW_SOLDIER_MEDAL"
"classes" "all"
"teams" "all"
"slot" "3"
mm i wonder how can i test them if this doesn't work[/QUOTE]
Load sourcemod locally on a local server, also tried that ages ago, crashes plugin.
As said, we do need a US admin to keep order whilst us UK admins have our beauty sleep.
[QUOTE=yellowoboe;17117240]Sandman duels were sex.
Just killing each other with the sandman ball.
116 points. :sax:[/QUOTE]
I'm finally able to take part :D
[code]//****************************************************************************
// PROPERTIES TABLE
//****************************************************************************
//
// The current maxium of items is 256. This is due the information being saved
// on a fixed array, but guess it's quite a lot.
//
// Indexes: Item definition index, tells the game wich is the equivalent hat for
// each hat. It's necessary to setup this if you want a concrete item name appear
// on the overlay. The valid item indexes are:
//
// 47 - Afro Hat
// 48 - Mining Hat
// 49 - Football Helmet
// 50 - Medic Helmet
// 51 - Pyro Hat
// 52 - Batter's Helmet
// 53 - Sniper Hat
// 54 - Soldier Hat
// 55 - Spy hat
// 94 - Engineer Cowboy Hat
// 95 - Engineer Train Hat
// 96 - Heavy Ushanka Hat
// 97 - Heavy Stocking Cap
// 98 - Soldier Pot Hat
// 99 - Soldier Viking Hat
// 100 - Demo Scott Hat
// 101 - Medic Tyrolean Hat
// 102 - Pyro Chicken Hat
// 103 - Spy Camera Beard
// 104 - Medic Mirror Hat
// 105 - Pyro Fireman Helmet
// 106 - Scout Bonk Helmet (Automatically hides Hat and Headphones)
// 107 - Scout Newsboy Cap (Automatically hides Hat and Headphones)
// 108 - Spy Derby Hat
// 109 - Sniper Straw Hat (Automatically hides Hat)
// 110 - Sniper Jarate Headband (Automatically hides Hat)
// 120 - Demo Top Hat
// 123 - Soldier's Medal
// 125 - Cheater's Lament
//
// There are other hats (well, hat-less hats) wich aren't supported, but you could
// mimic them through the new set of flags, and using a "void" model.
//
// Flags:
// +-----------------------+------------------------------------------------------+
// | FLAGS | DESCRIPTION |
// +-----------------------+------------------------------------------------------+
// | USER_DEFAULT | Sets the wearable as default for common users |
// | ADMIN_DEFAULT | Sets the wearable as the admin default |
// | ADMIN_ONLY | This hat is wearable only by admins |
// | HIDDEN | Item won't be shown on the list, but will be usable |
// | | through commands. |
// | INVISIBLE | Model isn't rendered. |
// +------------------------------------------------------------------------------+
// | HIDE_SCOUT_HAT | Hides Scout's hat. |
// | HIDE_SCOUT_HEADPHONES | Hides Scout's headphones. |
// | HIDE_ENGINEER_HELMET | Hides Engineer's helmet. |
// | HIDE_SNIPER_HAT | Hides Sniper's hat. |
// | HIDE_SOLDIER_HELMET | Hides Soldier's helmet. |
// | SHOW_SOLDIER_MEDAL | Show's Soldier's medal (11,111, huh, VALVe?) |
// +-----------------------+------------------------------------------------------+
//
// Classes:
// +---------------------+---------------------+---------------------+
// | CLASS | CLASS | CLASS |
// +---------------------+---------------------+---------------------+
// | SCOUT | SNIPER | SOLDIER |
// | DEMOMAN | MEDIC | HEAVY |
// | PYRO | SPY | ENGINEER |
// +---------------------+---------------------+---------------------+
// | ALL |
// +---------------------+
//
// Slots:
// +---------------------+
// | SLOTS |
// +---------------------+
// | 1 |
// | 2 |
// | 3 |
// +---------------------+
//
//****************************************************************************
"Equipment Management - Item list"
{
"Hatless"
{
"index" "47"
"model" ""
"flags" "INVISIBLE HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Demoman's 'fro"
{
"index" "47"
"model" "models/player/items/demo/demo_afro.mdl"
"flags" "USER_DEFAULT HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Glengarry Bonnet"
{
"index" "100"
"model" "models/player/items/demo/demo_scott.mdl"
"flags" "HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Scottsman's Stove Pipe"
{
"index" "120"
"model" "models/player/items/demo/top_hat.mdl"
"flags" "HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Mining Light"
{
"index" "48"
"model" "models/player/items/engineer/mining_hat.mdl"
"flags" ""
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Texas Ten Gallon"
{
"index" "94"
"model" "models/player/items/engineer/engineer_cowboy_hat.mdl"
"flags" "HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "All"
"slot" "1"
}
"Engineer's Cap"
{
"index" "95"
"model" "models/player/items/engineer/engineer_train_hat.mdl"
"flags" "HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Fancy Fedora"
{
"index" "55"
"model" "models/player/items/spy/spy_hat.mdl"
"flags" "HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Backbiter's Billycock"
{
"index" "108"
"model" "models/player/items/spy/derby_hat.mdl"
"flags" "HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Camera Beard"
{
"index" "103"
"model" "models/player/items/spy/spy_camera_beard.mdl"
"flags" ""
"classes" "ALL"
"teams" "ALL"
"slot" "2"
}
"Football Helmet"
{
"index" "49"
"model" "models/player/items/heavy/football_helmet.mdl"
"flags" "HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Tough Guy's Toque"
{
"index" "97"
"model" "models/player/items/heavy/heavy_stocking_cap.mdl"
"flags" "HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Officer's Ushanka"
{
"index" "96"
"model" "models/player/items/heavy/heavy_ushanka.mdl"
"flags" "HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Prussian pickelhaube"
{
"index" "50"
"model" "models/player/items/medic/medic_helmet.mdl"
"flags" "HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Otolaryngologist's Mirror"
{
"index" "104"
"model" "models/player/items/medic/medic_mirror.mdl"
"flags" "HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Vintage Tyrolean"
{
"index" "101"
"model" "models/player/items/medic/medic_tyrolean.mdl"
"flags" "HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Pyro's beanie"
{
"index" "51"
"model" "models/player/items/pyro/pyro_hat.mdl"
"flags" "HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Brigade Helm"
{
"index" "105"
"model" "models/player/items/pyro/fireman_helmet.mdl"
"flags" "HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Respectless Rubber Glove"
{
"index" "102"
"model" "models/player/items/pyro/pyro_chicken.mdl"
"flags" "HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Batter's Helmet"
{
"index" "52"
"model" "models/player/items/scout/batter_helmet.mdl"
"flags" ""
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Bonk Helm"
{
"index" "106"
"model" "models/player/items/scout/bonk_helmet.mdl"
"flags" "HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Ye Olde Baker Boy"
{
"index" "107"
"model" "models/player/items/scout/newsboy_cap.mdl"
"flags" "HIDE_SCOUT_HAT HIDE_SCOUT_HEADPHONES HIDE_SOLDIER_HELMET HIDE_ENGINEER_HELMET HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Trophy Belt"
{
"index" "53"
"model" "models/player/items/sniper/tooth_hat.mdl"
"flags" ""
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Master's Yellow Belt"
{
"index" "110"
"model" "models/player/items/sniper/jarate_headband.mdl"
"flags" "HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Professional's Panama"
{
"index" "109"
"model" "models/player/items/sniper/straw_hat.mdl"
"flags" "HIDE_SNIPER_HAT"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Soldier's Stash"
{
"index" "54"
"model" "models/player/items/soldier/soldier_hat.mdl"
"flags" ""
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Stainless Pot"
{
"index" "98"
"model" "models/player/items/soldier/soldier_pot.mdl"
"flags" "HIDE_SOLDIER_HELMET"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Tyrant's Helm"
{
"index" "99"
"model" "models/player/items/soldier/soldier_viking.mdl"
"flags" "HIDE_SOLDIER_HELMET"
"classes" "ALL"
"teams" "ALL"
"slot" "1"
}
"Cheater's Lament"
{
"index" "125"
"model" "models/player/items/all_class/all_halo.mdl"
"flags" ""
"classes" "ALL"
"teams" "ALL"
"slot" "3"
}
"Soldier's Medal"
{
"index" "123"
"model" "models/player/items/soldier/medals.mdl"
"flags" ""
"classes" "all"
"teams" "all"
"slot" "3"
}
}[/CODE]
i don't know why it crashes for you but mine worked
Gentlemen! Can a cat with a mustache join your fancy group? This cat wants to play sum baseball with heavies :>
Reag you fucking arse kissing selfish dick.
I laughed when Tony was slaying people using guns when he told us to do melee and people were bitching at him for being an "abusive admin"
[QUOTE=QuickSnapz;17122835]Reag you fucking arse kissing selfish dick.[/QUOTE]
Ouch. Bitter much?
The server's filled with idiots teamkilling and deathmatching in a very srs manner. We need more admins :sigh:
[QUOTE=QuickSnapz;17122835]Reag you fucking arse kissing selfish dick.[/QUOTE]
[img]http://kite.reager.co.uk/classes/spyrapest.png[/img]
Love you too jelly, now find something else to clean your boredom.
[QUOTE=scout-on-a-train;17124183]The server's filled with idiots teamkilling and deathmatching in a very srs manner. We need more admins :sigh:[/QUOTE]
Hmm, yeah, that's waht I said.
The Spy hide and Seek was Epic on steel.
Found this for next time to make things simpler.
[url]https://forums.alliedmods.net/showthread.php?t=82625[/url]
Party in the BLU conference room on turbine, taunt battles, heavy boxing matches with the Rocky theme song playing, hide and seek on steel...
That was fun.
[QUOTE=Teh Zip File;17128724]Party in the BLU conference room on turbine, taunt battles, heavy boxing matches with the Rocky theme song playing, hide and seek on steel...
That was fun.[/QUOTE]
Oktoberfeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeeee
Some screenshots of that stuff:
[media]http://i29.tinypic.com/sdiqtl.jpg
[url]http://i32.tinypic.com/lz53q.jpg[/url]
[url]http://i25.tinypic.com/5749c.jpg[/url]
[url]http://i25.tinypic.com/8wccas.jpg[/url]
[url]http://i30.tinypic.com/99gdc9.jpg[/url][/media]
Conference party was pretty fun. I'll post some pictures tomorrow.
Oh god the conference room partay. Awesome.
Spycrabmon?!11
The nonserious server is now suddenly a arena server. Even the name says so, and it's only arena maps. Why?
By the way, Hexx for admin. He's awesome.
Oh, man, so awesome. I'm the heavy in the main chair. Hell yes.
[URL=http://www.cubeupload.com][IMG]http://www.cubeupload.com/files/8d8800confrenceparty.jpg[/IMG][/URL]
[QUOTE=Combiner8761;17134318]The nonserious server is now suddenly a arena server. Even the name says so, and it's only arena maps. Why?
By the way, Hexx for admin. He's awesome.[/QUOTE]
It happens when the server switches to an arena map. Arena maps should be removed, they're as srs as it gets :sigh:
And you cant fool around alone waiting for more players.
[QUOTE=scout-on-a-train;17134696]It happens when the server switches to an arena map. Arena maps should be removed, they're as srs as it gets :sigh:[/QUOTE]
Yeah, no respawn, and capping the point once wins the game. KOTH is good though.
[QUOTE=FlakMonkey66;17134702]Yeah, no respawn, and capping the point once wins the game. KOTH is good though.[/QUOTE]
Koth is great, you can fool around for unlimited time before capping, and you can hold stalemate for unlimited time too. And koth is generally just awesome.
Ok, so i had fine playing yesterday and then dyn selected 3 people to be admins which were fus, Newbert and me (Jarate) but i had to go early yesterday. When I came back and logged on fus was admin but i was'nt.
We had a few sandvich parties when we could, and it was good.
However, the first half of most of the games consisted of hunting down srsfags.
Then there was the time I took a shit and left my C&D'd spy in spawn on an arena map.
Pissed the other team off to no end.
[QUOTE=scout-on-a-train;17134696]It happens when the server switches to an arena map. Arena maps should be removed, they're as srs as it gets :sigh:
And you cant fool around alone waiting for more players.[/QUOTE]
I know, I did tell Dyn to remove the arena maps (if he has is a completely different matter)
Also apparently Dyn has hired new admins.
[editline]12:49PM[/editline]
also nice to see that the server is a big hit.
[QUOTE=Pie_Tony;17136572]I know, I did tell Dyn to remove the arena maps (if he has is a completely different matter)
Also apparently Dyn has hired new admins.
[editline]12:49PM[/editline]
also nice to see that the server is a big hit.[/QUOTE]
NEw admins are newberT, Fusilero and some Friday Pancake guy
Sorry, you need to Log In to post a reply to this thread.