23 lines
661 B
PHP
23 lines
661 B
PHP
<?php
|
|
# Text Color
|
|
$tcolor = "white";
|
|
# This is the color defined by https://materializecss.com/color.html
|
|
$color = "indigo";
|
|
#The Steam URL to your addon
|
|
$steam = "https://steamcommunity.com/sharedfiles/filedetails/?id=2004491494";
|
|
#The Source URL to your addon
|
|
$source = "https://github.com/Gensokian/ttt2-role_tra";
|
|
#The Name of the Role
|
|
$name = "Detective";
|
|
#The Description of the Role, HTML conform :)
|
|
$description = "Some example content";
|
|
#Creator of the Addon
|
|
$author = "Garry";
|
|
#How To play
|
|
$howtoplay = "Help the Innocents figure out how to play";
|
|
#With what roles does this role play best?
|
|
$playsbestwith = "Baseroles";
|
|
#Convars
|
|
$convars = "TBD"
|
|
?>
|