View Single Post
cREANy0
SourceMod Donor
Join Date: Jul 2012
Location: Germany
Old 06-08-2014 , 09:36   Re: [cs:go]advertisments [issue]
Reply With Quote #3

Change this:

Code:
 
"Advertisements" 
{
"1" 
{
"type" "S" 
"text" "{GREEN} Welcome to server" 
} 
"2" 
{
"type" "S" 
"text" "{PINK} [email protected]" 
} 
"3" 
{
"type" "S" 
"text" "{DEFAULT} {PURPLE} test3" 
} 
"4" 
{
"type" "S" 
"text" "{GREEN} {DEFAULT} Test" 
} 
"5" 
{
"type" "S" 
"text" "{ORANGE} Admins: friendly fire is {BOOL: mp_friendlyfire}." 
} 
}
to this and it will work:

Code:
 
"Advertisements" 
{
"1" 
{
"type" "S" 
"text" " {GREEN} Welcome to server" 
} 
"2" 
{
"type" "S" 
"text" " {PINK} [email protected]" 
} 
"3" 
{
"type" "S" 
"text" "  {DEFAULT} {PURPLE} test3" 
} 
"4" 
{
"type" "S" 
"text" " {GREEN} {DEFAULT} Test" 
} 
"5" 
{
"type" "S" 
"text" " {ORANGE} Admins: friendly fire is {BOOL: mp_friendlyfire}." 
} 
}
greetz,
cREANy0
__________________

Last edited by cREANy0; 06-08-2014 at 09:37.
cREANy0 is offline