This repository has been archived on 2022-10-02. You can view files and clone it, but cannot push or open issues or pull requests.
dcbot-old/tribalwars/helpers.go

19 lines
462 B
Go

package tribalwars
var (
GuestEndpoints = map[string]map[string]string{
"pl": map[string]string{
"tribe_info": "https://%s.plemiona.pl/guest.php?screen=info_ally&id=%d",
"player_info": "https://%s.plemiona.pl/guest.php?screen=info_player&id=%d",
"village_info": "https://%s.plemiona.pl/guest.php?screen=info_village&id=%d",
},
}
)
func LanguageCodeFromWorldName(world string) string {
if len(world) < 2 {
return ""
}
return world[0:2]
}