17.07.2019, 16:23
Try by ID and not by name it will work
Code:
stock GetFactionNameByID(classid) { new String[30]; switch(classid) { case 0: String = "Class One"; case 1: String = "Class Two"; } return String; }