When comparing arrays you must use either contain, containi, equal, or equali. The i at the end makes it case-insensitive, so if you want exact name with case sensitive, don't put the i, otherwise if it doesn't matter, leave the i.
So:
Code:
if(servername == "JB.RETRY.LV JAILBREAK 47/48p")
->
Code:
if(equali(servername,"JB.RETRY.LV JAILBREAK 47/48p"))
And change all of them btw.