Difference between revisions of "User:DC64/Sandbox"

From Team Fortress Wiki
Jump to: navigation, search
 
(21 intermediate revisions by the same user not shown)
Line 1: Line 1:
{{Item infobox
+
{{DISPLAYTITLE: DC64's Sandbox}}
| type              = cosmetic
+
{{User:DC64/Header}}
| image              = Tip of the Hats.png
+
 
| used-by            = [[Classes|All]]
+
This is my Sandbox. Suggestions that are made to improve the pages are welcome.
| equip-region      = hat
+
 
| contributed-by    = {{Backpack Item Link|76561197993590139|1}}
+
==Script==
| released          = {{Patch name|3|29|2014}}
+
Learning HTML/CSS, and starting Python. Baby steps.
| availability      = Distributed {{tooltip|<small>(Awarded)</small>|This item is given to donaters of the [[One Step]] charity fund through [[Tip of the Hats]].}}
+
 
| trade              = no
+
====SignaBot====
| gift              = no
+
I have an idea for a bot, if it were accepted here. Its task would be to add signatures that users have forgotten in talk or discussion pages. Origionally from [https://fr.wiktionary.org/wiki/Utilisateur:JackBot JackBot of Wiktionary]. Read source to see code.
| craft              = no
+
<!--
| paint              = yes
+
<pre>
| rename            = yes
+
#!/usr/bin/env python
| numbered          = no
+
# This script signs the comments pages of discussions.
| loadout            = yes
+
  | level            = Level 1-100 Hat
+
# Important modules
  | item-description = DESCRIPTION
+
import catlib, pagegenerators, os, codecs, urllib, re
  | loadout-name     = NAME
+
from wikipedia import *
}}
+
 +
# Déclaration
 +
language = "en"
 +
family = "wikibooks"
 +
mynick = "JackBot"
 +
site = getSite(language,family)
 +
 +
# Lecture du fichier articles_list.txt (same format as replace.py)
 +
def lecture(source):
 +
    PagesHS = open(source, 'r')
 +
    while 1:
 +
PageHS = PagesHS.readline()
 +
fin = PageHS.find("\t")
 +
PageHS = PageHS[0:fin]
 +
if PageHS == '': break
 +
modification(PageHS)
 +
    PagesHS.close()
 +
 +
# Changing the wiki
 +
def modification(PageHS):
 +
page = Page(site,PageHS)
 +
if page.exists():
 +
if page.title() != u'Utilisateur:JackBot/test' and page.title()!= u'Wikibooks:Requests for permissions' and page.namespace()!= 1 and page.namespace()!= 3 and page.namespace()!= 5 and page.namespace()!= 7 and page.namespace()!= 9 and page.namespace()!= 11 and page.namespace()!= 13 and page.namespace()!= 15 and page.namespace()!= 103 and page.namespace()!= 109 and page.namespace()!= 111 and page.namespace()!= 113:
 +
return
 +
else:
 +
url = u'http://' + language + u'.' + family + u'.org/w/api.php?action=query&prop=info|revisions&titles=%s&format=xml' % PageHS
 +
PageTemp = urllib.urlopen(url)
 +
try:
 +
infos = PageTemp.read()
 +
reviseur = re.findall(' user="(.*?)" ',infos)
 +
PageTemp.close()
 +
PageEnd = page.get()
 +
if PageEnd.find(u'{{delete') != -1 or PageEnd.find(u'{{nobots') != -1 or PageEnd.find(u'{{bots|deny=all') != -1: return
 +
except wikipedia.NoPage:
 +
print "NoPage"
 +
return
 +
except wikipedia.IsRedirectPage:
 +
print "Redirect page"
 +
return
 +
except wikipedia.LockedPage:
 +
print "Locked/protected page"
 +
return
 +
if not reviseur: return
 +
if PageEnd[len(PageEnd)-8:len(PageEnd)].rfind(u'(UTC)') != -1: return
 +
 +
#for chacun in reviseur:
 +
reviseur = str(reviseur)
 +
reviseur = reviseur[reviseur.find("'")+1:reviseur.rfind("'")]
 +
summary = u'Autosignature for ' + u'[[User:' + reviseur + u'|' + reviseur + u']]'
 +
 +
date = re.findall(' timestamp="(.*?)" ',infos)
 +
date = str(date)
 +
date = date[date.find("'")+1:date.rfind("'")]
 +
date = date[0:date.find("T")] + u' ' + date[date.find("T")+1:date.find("Z")]
 +
 +
PageEnd = PageEnd + u' {{unsigned|' + reviseur + u'|' + date + u'}}'
 +
#print (PageEnd.encode(config.console_encoding, 'replace'))
 +
#raw_input("fin")
 +
page.put(PageEnd, summary)
 +
 +
# Classes
 +
def crawlerCat(category):
 +
cat = catlib.Category(site, category)
 +
pages = cat.articlesList(False)
 +
for Page in pagegenerators.PreloadingGenerator(pages,100):
 +
if Page.namespace() == 0: modification(u'Discussion:' + Page.title())
 +
subcat = cat.subcategories(recurse = True)
 +
for subcategory in subcat:
 +
pages = subcategory.articlesList(False)
 +
for Page in pagegenerators.PreloadingGenerator(pages,100):
 +
if Page.namespace() == 0: modification(u'Discussion:' + Page.title())
 +
 +
# Linked pages
 +
def crawlerLink(pagename):
 +
#pagename = unicode(arg[len('-links:'):], 'utf-8')
 +
page = wikipedia.Page(site, pagename)
 +
gen = pagegenerators.ReferringPageGenerator(page)
 +
#gen =  pagegenerators.NamespaceFilterPageGenerator(gen, namespaces)
 +
for Page in pagegenerators.PreloadingGenerator(gen,100):
 +
if Page.namespace() == 1: modification(Page.title())
 +
elif Page.namespace() == 0: modification(u'Discussion:' + Page.title())
 +
 +
# Recent Changes
 +
def crawlerRC():
 +
RC = pagegenerators.RecentchangesPageGenerator()
 +
for Page in pagegenerators.PreloadingGenerator(RC,100):
 +
if Page.namespace() == 1: modification(Page.title())
 +
 +
# Launch
 +
TraitementFile = lecture('articles_list.txt')
 +
#TraitementLink = crawlerLink(u'')
 +
#TraitementCategory = crawlerCat(u'')
 +
raw_input("Signabot")
 +
</pre>
 +
-->
 +
 
 +
==UserBoxes==
 +
These are userboxes that I've created.
 +
 
 +
=== Patches ===
 +
{|
 +
| {{Userbox preview|UIB=User Update Gold Rush}}
 +
| {{Userbox preview|UIB=User Update Pyro}}
 +
| {{Userbox preview|UIB=User Update Heavy}}
 +
|-
 +
| {{Userbox preview|UIB=User Update Scout}}
 +
| {{Userbox preview|UIB=User Update Sniper vs. Spy}}
 +
| {{Userbox preview|UIB=User Update Classless}}
 +
|-
 +
| {{Userbox preview|UIB=User Update Haunted Hallowe'en Special}}
 +
| {{Userbox preview|UIB=User Update WAR!}}
 +
| {{Userbox preview|UIB=User Update 119th}}
 +
|-
 +
| {{Userbox preview|UIB=User Update Mac}}
 +
| {{Userbox preview|UIB=User Update Engineer}}
 +
| {{Userbox preview|UIB=User Update Mann-Conomy}}
 +
|-
 +
| {{Userbox preview|UIB=User Update Scream Fortress}}
 +
| {{Userbox preview|UIB=User Update Australian Christmas 2011}}
 +
| {{Userbox preview|UIB=User Update Hatless}}
 +
|-
 +
| {{Userbox preview|UIB=User Update Replay}}
 +
| {{Userbox preview|UIB=User Update Über}}
 +
| {{Userbox preview|UIB=User Update Manniversary Update & Sale}}
 +
|-
 +
| {{Userbox preview|UIB=User Update Very Scary Halloween Special}}
 +
| {{Userbox preview|UIB=User Update Australian Christmas 2011}}
 +
| {{Userbox preview|UIB=User Update Pyromania}}
 +
|-
 +
| {{Userbox preview|UIB=User Update Mann vs. Machine}}
 +
| {{Userbox preview|UIB=User Update Spectral Halloween Special}}
 +
| {{Userbox preview|UIB=User Update Mecha}}
 +
|-
 +
| {{Userbox preview|UIB=User Update Robotic Boogaloo}}
 +
| {{Userbox preview|UIB=User Update Scream Fortress 2013}}
 +
| {{Userbox preview|UIB=User Update Two Cities}}
 +
|-
 +
| {{Userbox preview|UIB=User Update Love & War}}
 +
|}
 +
 
 +
===Community Events===
 +
{|
 +
| {{Userbox preview|UIB=User Community Update Guard Dog}}
 +
| {{Userbox preview|UIB=User Community Update Fancy vs. Nasty}}
 +
| {{Userbox preview|UIB=User Community Update Mechanical Engineer}}
 +
|-
 +
| {{Userbox preview|UIB=User Community Update Medieval}}
 +
| {{Userbox preview|UIB=User Community Update Night of the Living}}
 +
| {{Userbox preview|UIB=User Community Update Wiki Birthday}}
 +
|}
 +
 
 +
=== Personal ===
 +
{|
 +
| {{Userbox preview|UIB=User Birthday}}
 +
|}
 +
 
 +
=== Achievements ===
 +
{|
 +
| {{Userbox preview|UIB=User Showboat}}
 +
| {{Userbox preview|UIB=User May I Cut In, Too?}}
 +
| {{Userbox preview|UIB=User Running With Scissors}}
 +
|-
 +
| {{Userbox preview|UIB=User On The Rocks}}
 +
| {{Userbox preview|UIB=User Emergency Brake}}
 +
| {{Userbox preview|UIB=User Punching Bag}}
 +
|-
 +
| {{Userbox preview|UIB=User Nose Dive}}
 +
| {{Userbox preview|UIB=User TF2 Bereavements achievements}}
 +
|}
 +
 
 +
==Loadout==
 +
I'll decide sometime where I want to put this.
 +
 
 +
{{ClassTabs
 +
| title    = Loadout
 +
| selected = {{Pyro}}
 +
| size    = 40px
 +
| icononly = yes
 +
 
 +
| scout = [[Image:Fast Learner.png|left|290px|link=Scout]]
 +
{{User Item|name=Force-A-Nature|quality=Strange}}
 +
{{User Item|name=Pretty Boy's Pocket Pistol|quality=Strange}}
 +
{{User Item|name=Candy Cane}}
 +
 
 +
{{User Item|name=That '70s Chapeau}}
 +
{{User Item|name=Fast Learner}}
 +
{{User Item|name=Balloonicorn}}
 +
 
 +
| soldier = [[Image:Jumper's Jeepcap.png|left|330px|link=Soldier]]
 +
{{User Item|name=Rocket Launcher|quality=Strange}}
 +
{{User Item|name=Buff Banner}}
 +
{{User Item|name=Market Gardener|quality=Strange}}
 +
 
 +
{{User Item|name=Jumper's Jeepcap}}
 +
{{User Item|name=Professor Speks|quality=Strange}}
 +
{{User Item|name=Balloonicorn}}
 +
 
 +
| pyro = [[Image:Cotton Head.png|left|330px|link=Pyro]]
 +
{{User Item|name=Backburner|quality=Strange}}
 +
{{User Item|name=Scorch Shot|quality=Strange}}
 +
{{User Item|name=Neon Annihilator|quality=Strange}}
 +
 
 +
{{User Item|name=Cotton Head}}
 +
{{User Item|name=Soot Suit}}
 +
{{User Item|name=Balloonicorn}}
 +
 
 +
| demoman = [[Image:Hurt Locher.png|left|335px|link=Demoman]]
 +
{{User Item|name=Grenade Launcher}}
 +
{{User Item|name=Scottish Resistance}}
 +
{{User Item|name=Eyelander}}
 +
 
 +
{{User Item|name=That '70s Chapeau}}
 +
{{User Item|name=Hurt Locher}}
 +
{{User Item|name=Balloonicorn}}
 +
 
 +
| heavy = [[Image:Big Chief.png|left|300px|link=Heavy]]
 +
{{User Item|name=Brass Beast|quality=Strange}}
 +
{{User Item|name=Buffalo Steak Sandvich}}
 +
{{User Item|name=Fists of Steel|quality=Strange}}
 +
 
 +
{{User Item|name=Big Chief|quality=Strange}}
 +
{{User Item|name=Apparatchik's Apparel}}
 +
{{User Item|name=Balloonicorn}}
 +
 
 +
| engineer = [[Image:Hotrod.png|left|320px|link=Engineer]]
 +
{{User Item|name=Rescue Ranger|quality=Strange}}
 +
{{User Item|name=Short Circuit}}
 +
{{User Item|name=Southern Hospitality|quality=Strange}}
 +
 
 +
{{User Item|name=Hotrod}}
 +
{{User Item|name=Ein|quality=Strange}}
 +
{{User Item|name=Balloonicorn}}
 +
 
 +
| medic = [[Image:Mustachioed Mann.png|left|335px|link=Medic]]
 +
{{User Item|name=Crusader's Crossbow}}
 +
{{User Item|name=Medi Gun|quality=Strange}}
 +
{{User Item|name=Amputator}}
 +
 
 +
{{User Item|name=That '70s Chapeau}}
 +
{{User Item|name=Mustachioed Mann|quality=Strange}}
 +
{{User Item|name=Balloonicorn}}
 +
 
 +
| sniper = [[Image:Outback Intellectual.png|left|310px|link=Sniper]]
 +
{{User Item|name=Huntsman}}
 +
{{User Item|name=Jarate|quality=Strange}}
 +
{{User Item|name=Bushwacka|quality=Strange}}
  
{{Quotation|...An all class, undersized bowler, tipped to the jauntiest of angles.}}
+
{{User Item|name=Professional's Panama|quality=Vintage}}
 +
{{User Item|name=Outback Intellectual|quality=Strange}}
 +
{{User Item|name=Balloonicorn}}
  
The '''NAME''' is a [[Steam Workshop|community-created]] [[Hats|headwear]] item. It is an undersized bowler with a ribbon banned around the body, tipped at a far angle on the forehead.
+
| spy = [[Image:Blood Banker.png|left|310px|link=Spy]]
Two styles with either the hat or the band fully paint-able.
+
{{User Item|name=Revolver}}
 +
{{User Item|name=Cloak and Dagger}}
 +
{{User Item|name=Spy-cicle}}
 +
{{User Item|name=Sapper}}
  
The NAME was [http:/steamcommunity.com/sharedfiles/filedetails/?id=243017179 contributed] to the [[Steam Workshop]] under the name "Tip of the Hats".
+
{{User Item|name=That '70s Chapeau}}
 +
{{User Item|name=Professor Speks|quality=Strange}}
 +
{{User Item|name=Balloonicorn}}
 +
}}
  
A list of NAME owners can be found here: [https://docs.google.com/spreadsheet/pub?key=0AmSDfbEASJaCdGFFTnVCZkNSdExVMHphaWk0VzhoV2c&output=html]
+
==Infobox==
 +
The old one. I still like it.
  
== Painted variants ==
+
{{User infobox
{{Painted variants|default=normal}}
+
| title = DC64
{{Painted variants|style=Second}}
+
| infoboxcolour = #0066FF
 +
| image = User DC64 DC64.jpg
  
== Update history ==
+
| language = English
'''{{Patch name|3|29|2014}}'''
 
*The NAME was added to the game.
 
  
== Gallery ==
+
| favclass = {{icon class|Pyro}}{{md}}{{icon class|Medic}}
<gallery>
+
| favweap = [[Backburner]]
File:Tip_of_the_Hats_workshop.jpg|Steam Workshop thumbnail image of the Tip of the Hats.
+
| favhat = {{item icon|That '70s Chapeau}}
File:Steamworkshop webupload previewfile 243017179 preview.jpg|Steam workshop promotional image
 
</gallery>
 
  
{{HatNav}}
+
| steampage = [http://steamcommunity.com/profiles/76561198047304394/ DC64]
[[Category:Community events]]
+
| irc = DC64
 +
}}

Latest revision as of 18:03, 31 March 2018

User page Talk Sandbox Contributions Wiki-Fi stats Steam Backpack Stats
User page Talk Sandbox Contributions Wiki-Fi stats Steam Backpack Stats

This is my Sandbox. Suggestions that are made to improve the pages are welcome.

Script

Learning HTML/CSS, and starting Python. Baby steps.

SignaBot

I have an idea for a bot, if it were accepted here. Its task would be to add signatures that users have forgotten in talk or discussion pages. Origionally from JackBot of Wiktionary. Read source to see code.

UserBoxes

These are userboxes that I've created.

Patches

Gold Rush Update showcard.png This user witnessed the Gold Rush Update!
{{User Update Gold Rush}}
Pyro Update showcard.png This user witnessed the Pyro Update!
{{User Update Pyro}}
Heavy Update showcard.png This user witnessed the Heavy Update!
{{User Update Heavy}}
Scout Update showcard.png This user witnessed the Scout Update!
{{User Update Scout}}
Sniper vs. Spy Update showcard.png This user witnessed the Sniper vs. Spy Update!
{{User Update Sniper vs. Spy}}
Classless Update showcard.png This user witnessed the Classless Update!
{{User Update Classless}}
Haunted Hallowe'en Special showcard.png This user witnessed the Haunted Hallowe'en Special Update!
{{User Update Haunted Hallowe'en Special}}
WAR! Update showcard.png This user witnessed the WAR! Update!
{{User Update WAR!}}
119th Update showcard.png This user witnessed the 119th Update!
{{User Update 119th}}
Mac Update showcard.png This user witnessed the Mac Update!
{{User Update Mac}}
Engineer Update showcard.png This user witnessed the Engineer Update!
{{User Update Engineer}}
Mann-Conomy Update showcard.png This user witnessed the Mann-Conomy Update!
{{User Update Mann-Conomy}}
Scream Fortress Update showcard.png This user witnessed the Scream Fortress Update!
{{User Update Scream Fortress}}
Australian Christmas 2011 showcard.png This user witnessed the Australian Christmas 2011 Update!
{{User Update Australian Christmas 2011}}
Hatless Update showcard.png This user witnessed the Hatless Update!
{{User Update Hatless}}
Replay Update showcard.png This user witnessed the Replay Update!
{{User Update Replay}}
Über Update showcard.png This user witnessed the Über Update!
{{User Update Über}}
Manniversary Update & Sale showcard.png This user witnessed the Manniversary Update & Sale Update!
{{User Update Manniversary Update & Sale}}
Very Scary Halloween Special showcard.png This user witnessed the Very Scary Halloween Special Update!
{{User Update Very Scary Halloween Special}}
Australian Christmas 2011 showcard.png This user witnessed the Australian Christmas 2011 Update!
{{User Update Australian Christmas 2011}}
Pyromania Update showcard.png This user witnessed the Pyromania Update!
{{User Update Pyromania}}
Mann vs. Machine showcard.png This user witnessed the Mann vs. Machine Update!
{{User Update Mann vs. Machine}}
Spectral Halloween Special showcard.png This user witnessed the Spectral Halloween Special Update!
{{User Update Spectral Halloween Special}}
Mecha Update showcard.png This user witnessed the Mecha Update!
{{User Update Mecha}}
Robotic Boogaloo showcard.png This user witnessed the Robotic Boogaloo Update!
{{User Update Robotic Boogaloo}}
Scream Fortress 2013 showcard.png This user witnessed the Scream Fortress 2013 Update!
{{User Update Scream Fortress 2013}}
Two Cities Update showcard.png This user witnessed the Two Cities Update!
{{User Update Two Cities}}
Love and War update.png This user witnessed the Love & War Update!
{{User Update Love & War}}

Community Events

TF2dog.png This user witnessed the community Guard Dog Update!
{{User Community Update Guard Dog}}
FancyvsNastyPromo.png This user witnessed the community Fancy vs. Nasty Update!
{{User Community Update Fancy vs. Nasty}}
Engineer.png This user witnessed the community Mechanical Engineer Update!
{{User Community Update Mechanical Engineer}}
Medieval promo.png This user witnessed the community Medieval Update!
{{User Community Update Medieval}}
Notlu banner2.png This user witnessed the community Night of the Living Update!
{{User Community Update Night of the Living}}
User Aperture AI Wikibirthday.png This user witnessed the community Team Fortress Wiki:Wiki Birthday!
{{User Community Update Wiki Birthday}}

Personal

Bday medpack large.png Today is this user's birthday!

Happy Birthday!

{{User Birthday}}

Achievements

Tf showboat.png This user has done 10 partner taunts with a teammate while capturing a control point.


{{User Showboat}}
Tf may i cut in, too?.png This user has melee killed 10 players while they are doing the Square Dance taunt.


{{User May I Cut In, Too?}}
Tf running with scissors.png This user has won at Rock, Paper, Scissors 3 times in a row with Scissors.


{{User Running With Scissors}}
Tf on the rocks.png This user has lost at Rock, Paper, Scissors 3 times in a row with Rock.


{{User On The Rocks}}
Tf emergency brake.png This user has killed a charging Demoman.


{{User Emergency Brake}}
Tf punching bag.png This user has melee killed 10 Snipers using The Classic.


{{User Punching Bag}}
Tf nose dive.png This user has killed 10 parachuting players.


{{User Nose Dive}}
Helltower hell's spells-icon.png This user has earned 0 of the 8 Bereavements. That's 0%!
{{User TF2 Bereavements achievements}}

Loadout

I'll decide sometime where I want to put this.

[hide]Loadout
  • Leaderboard class scout.png
  • Leaderboard class soldier.png
  • Leaderboard class pyro.png
  • Leaderboard class demoman.png
  • Leaderboard class heavy.png
  • Leaderboard class engineer.png
  • Leaderboard class medic.png
  • Leaderboard class sniper.png
  • Leaderboard class spy.png
Fast Learner.png
Item icon Force-A-Nature.png Strange Force-A-Nature


Item icon Pretty Boy's Pocket Pistol.png Strange Pretty Boy's Pocket Pistol


Item icon Candy Cane.png Candy Cane


Item icon That '70s Chapeau.png That '70s Chapeau


Item icon Fast Learner.png Fast Learner


Item icon Balloonicorn.png Balloonicorn
Jumper's Jeepcap.png
Item icon Rocket Launcher.png Strange Rocket Launcher


Item icon Buff Banner.png Buff Banner


Item icon Market Gardener.png Strange Market Gardener


Item icon Jumper's Jeepcap.png Jumper's Jeepcap


Item icon Professor Speks.png Strange Professor Speks


Item icon Balloonicorn.png Balloonicorn
Cotton Head.png
Item icon Backburner.png Strange Backburner


Item icon Scorch Shot.png Strange Scorch Shot


Item icon Neon Annihilator.png Strange Neon Annihilator


Item icon Cotton Head.png Cotton Head


Item icon Soot Suit.png Soot Suit


Item icon Balloonicorn.png Balloonicorn
Hurt Locher.png
Item icon Grenade Launcher.png Grenade Launcher


Item icon Scottish Resistance.png Scottish Resistance


Item icon Eyelander.png Eyelander


Item icon That '70s Chapeau.png That '70s Chapeau


Item icon Hurt Locher.png Hurt Locher


Item icon Balloonicorn.png Balloonicorn
Big Chief.png
Item icon Brass Beast.png Strange Brass Beast


Item icon Buffalo Steak Sandvich.png Buffalo Steak Sandvich


Item icon Fists of Steel.png Strange Fists of Steel


Item icon Big Chief.png Strange Big Chief


Item icon Apparatchik's Apparel.png Apparatchik's Apparel


Item icon Balloonicorn.png Balloonicorn
Hotrod.png
Item icon Rescue Ranger.png Strange Rescue Ranger


Item icon Short Circuit.png Short Circuit


Item icon Southern Hospitality.png Strange Southern Hospitality


Item icon Hotrod.png Hotrod


Item icon Ein.png Strange Ein


Item icon Balloonicorn.png Balloonicorn
Mustachioed Mann.png
Item icon Crusader's Crossbow.png Crusader's Crossbow


Item icon Medi Gun.png Strange Medi Gun


Item icon Amputator.png Amputator


Item icon That '70s Chapeau.png That '70s Chapeau


Item icon Mustachioed Mann.png Strange Mustachioed Mann


Item icon Balloonicorn.png Balloonicorn
Outback Intellectual.png
Item icon Huntsman.png Huntsman


Item icon Jarate.png Strange Jarate


Item icon Bushwacka.png Strange Bushwacka


Item icon Professional's Panama.png Vintage Professional's Panama


Item icon Outback Intellectual.png Strange Outback Intellectual


Item icon Balloonicorn.png Balloonicorn
Blood Banker.png
Item icon Revolver.png Revolver


Item icon Cloak and Dagger.png Cloak and Dagger


Item icon Spy-cicle.png Spy-cicle


Item icon Sapper.png Sapper


Item icon That '70s Chapeau.png That '70s Chapeau


Item icon Professor Speks.png Strange Professor Speks


Item icon Balloonicorn.png Balloonicorn
show;hide

Infobox

The old one. I still like it.

DC64
DC64
Basic information
Native language: English
Team Fortress 2
Favourite classes: Leaderboard class pyro.png · Leaderboard class medic.png
Favourite weapons: Backburner
Favourite hats: That '70s Chapeau
Contact information
Steam page: DC64
IRC nickname: DC64