search
if (strncmp(map_name, "prontera", 3) == 0) {
town = 0;
}
change it to ..
if (strncmp(map_name, "comodo", 3) == 0) {
town = 0;
}
and search ..
else if (strncmp(map_name, "comodo", 3) == 0) {
town = 8;
}
change it to ..
else if (strncmp(map_name, "prontera", 3) == 0) {
town = 8;
}
recompile it
maybe it works now