TTT_Role_Overview/roles/Example.php

23 lines
697 B
PHP
Raw Normal View History

2022-03-27 19:17:31 +00:00
<?php
2022-03-28 05:40:17 +00:00
# Text Color
$tcolor = "black";
2022-03-27 19:17:31 +00:00
# This is the color defined by https://materializecss.com/color.html
2022-03-28 05:40:17 +00:00
$color = "yellow lighten-5";
2022-03-27 19:17:31 +00:00
#The Steam URL to your addon
2022-03-28 05:40:17 +00:00
$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 = "Example";
#The Description of the Role, HTML conform :)
$description = "Some example content";
2022-03-28 06:00:15 +00:00
#Creator of the Addon
$author = "Garry";
#How To play
$howtoplay = "Be an example to anyone around you";
#With what roles does this role play best?
$playsbestwith = "Innocents";
#Convars
$convars = "ttt_non_existant_variable (default: 0)"
2022-03-27 19:17:31 +00:00
?>