diff --git a/src/TibiaDataUtils.go b/src/TibiaDataUtils.go index b239c67f..e3b6670a 100644 --- a/src/TibiaDataUtils.go +++ b/src/TibiaDataUtils.go @@ -2,7 +2,6 @@ package main import ( "html" - "io" "log" "net/url" "os" @@ -13,7 +12,6 @@ import ( "unicode/utf8" "golang.org/x/text/cases" - "golang.org/x/text/encoding/charmap" "golang.org/x/text/language" "golang.org/x/text/unicode/norm" ) @@ -186,16 +184,6 @@ func RemoveHtmlTag(s string) string { return s } -// TibiaDataConvertEncodingtoISO88591 func - convert string from UTF-8 to latin1 (ISO 8859-1) -func TibiaDataConvertEncodingtoISO88591(data string) (string, error) { - return charmap.ISO8859_1.NewEncoder().String(data) -} - -// TibiaDataConvertEncodingtoUTF8 func - convert string from latin1 (ISO 8859-1) to UTF-8 -func TibiaDataConvertEncodingtoUTF8(data io.Reader) io.Reader { - return norm.NFKC.Reader(charmap.ISO8859_1.NewDecoder().Reader(data)) -} - // TibiaDataSanitizeEscapedString func - run unescape string on string func TibiaDataSanitizeEscapedString(data string) string { return html.UnescapeString(data) diff --git a/src/TibiaWorldsWorld_test.go b/src/TibiaWorldsWorld_test.go index 1da6e984..e1fff925 100644 --- a/src/TibiaWorldsWorld_test.go +++ b/src/TibiaWorldsWorld_test.go @@ -8,6 +8,35 @@ import ( "github.com/tibiadata/tibiadata-api-go/src/static" ) +func TestWorldAntica(t *testing.T) { + file, err := static.TestFiles.Open("testdata/worlds/world/Antica.html") + if err != nil { + t.Fatalf("file opening error: %s", err) + } + defer file.Close() + + data, err := io.ReadAll(file) + if err != nil { + t.Fatalf("File reading error: %s", err) + } + + worldJson, err := TibiaWorldsWorldImpl("Antica", string(data), "https://www.tibia.com/community/?subtopic=worlds&world=Antica") + if err != nil { + t.Fatal(err) + } + + assert := assert.New(t) + world := worldJson.World + information := worldJson.Information + + assert.Equal("https://www.tibia.com/community/?subtopic=worlds&world=Antica", information.TibiaURLs[0]) + + umlautPlayer := world.OnlinePlayers[171] + assert.Equal("Nöber", umlautPlayer.Name) + assert.Equal(455, umlautPlayer.Level) + assert.Equal("Elder Druid", umlautPlayer.Vocation) +} + func TestWorldEndebra(t *testing.T) { file, err := static.TestFiles.Open("testdata/worlds/world/Endebra.html") if err != nil { @@ -70,8 +99,8 @@ func TestWorldPremia(t *testing.T) { world := worldJson.World assert.Equal("Premia", world.Name) - assert.Equal("offline", world.Status) - assert.Equal(0, world.PlayersOnline) + assert.Equal("online", world.Status) + assert.Equal(53, world.PlayersOnline) assert.Equal(531, world.RecordPlayers) assert.Equal("2013-08-08T15:30:30Z", world.RecordDate) assert.Equal("2002-04", world.CreationDate) @@ -79,16 +108,16 @@ func TestWorldPremia(t *testing.T) { assert.Equal("Open PvP", world.PvpType) assert.True(world.PremiumOnly) assert.Equal("regular", world.TransferType) - assert.Equal(4, len(world.WorldsQuestTitles)) - assert.Equal("Rise of Devovorga", world.WorldsQuestTitles[0]) - assert.Equal("Bewitched", world.WorldsQuestTitles[1]) - assert.Equal("The Colours of Magic", world.WorldsQuestTitles[2]) + assert.Equal(7, len(world.WorldsQuestTitles)) + assert.Equal("The Lightbearer", world.WorldsQuestTitles[0]) + assert.Equal("Rise of Devovorga", world.WorldsQuestTitles[1]) + assert.Equal("Annual Autumn Vintage", world.WorldsQuestTitles[2]) assert.Equal("A Piece of Cake", world.WorldsQuestTitles[3]) assert.True(world.BattleyeProtected) assert.Equal("2017-09-05", world.BattleyeDate) assert.Equal("regular", world.GameWorldType) assert.Empty(world.TournamentWorldType) - assert.Equal(0, len(world.OnlinePlayers)) + assert.Equal(53, len(world.OnlinePlayers)) } func TestWorldWintera(t *testing.T) { diff --git a/src/static/testdata/boostablebosses/boostablebosses.html b/src/static/testdata/boostablebosses/boostablebosses.html index ee7d7a36..673e345c 100644 --- a/src/static/testdata/boostablebosses/boostablebosses.html +++ b/src/static/testdata/boostablebosses/boostablebosses.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Library - + diff --git a/src/static/testdata/characters/Akayev.html b/src/static/testdata/characters/Akayev.html index 82d00aec..2738b02a 100644 --- a/src/static/testdata/characters/Akayev.html +++ b/src/static/testdata/characters/Akayev.html @@ -3,7 +3,7 @@ Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/characters/Akura Aleus.html b/src/static/testdata/characters/Akura Aleus.html index e4eb948b..573a32bc 100644 --- a/src/static/testdata/characters/Akura Aleus.html +++ b/src/static/testdata/characters/Akura Aleus.html @@ -1,10 +1,10 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/characters/Borttagna Gubben.html b/src/static/testdata/characters/Borttagna Gubben.html index 93070eaa..23e71724 100644 --- a/src/static/testdata/characters/Borttagna Gubben.html +++ b/src/static/testdata/characters/Borttagna Gubben.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/characters/Darkside Rafa.html b/src/static/testdata/characters/Darkside Rafa.html index 4a74e90d..8f401d35 100644 --- a/src/static/testdata/characters/Darkside Rafa.html +++ b/src/static/testdata/characters/Darkside Rafa.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/characters/Jowjow Invencivel.html b/src/static/testdata/characters/Jowjow Invencivel.html index bee9dd1d..52af061e 100644 --- a/src/static/testdata/characters/Jowjow Invencivel.html +++ b/src/static/testdata/characters/Jowjow Invencivel.html @@ -1,10 +1,10 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/characters/Luminals.html b/src/static/testdata/characters/Luminals.html index 0e3bdd64..b8dbd0f3 100644 --- a/src/static/testdata/characters/Luminals.html +++ b/src/static/testdata/characters/Luminals.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/characters/Mieluffy.html b/src/static/testdata/characters/Mieluffy.html index 5087b3d5..2cf26282 100644 --- a/src/static/testdata/characters/Mieluffy.html +++ b/src/static/testdata/characters/Mieluffy.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/characters/Nannorka.html b/src/static/testdata/characters/Nannorka.html index f13c98c9..8adbec8e 100644 --- a/src/static/testdata/characters/Nannorka.html +++ b/src/static/testdata/characters/Nannorka.html @@ -3,7 +3,7 @@ Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/characters/Ninth Dimension.html b/src/static/testdata/characters/Ninth Dimension.html index 77796aa9..9c921777 100644 --- a/src/static/testdata/characters/Ninth Dimension.html +++ b/src/static/testdata/characters/Ninth Dimension.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/characters/Nocna Furia.html b/src/static/testdata/characters/Nocna Furia.html index 8513f42d..ff7345ba 100644 --- a/src/static/testdata/characters/Nocna Furia.html +++ b/src/static/testdata/characters/Nocna Furia.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/characters/Orca Kaoksh.html b/src/static/testdata/characters/Orca Kaoksh.html index 1be1e0b4..f61806a8 100644 --- a/src/static/testdata/characters/Orca Kaoksh.html +++ b/src/static/testdata/characters/Orca Kaoksh.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/characters/Rejana on Fera.html b/src/static/testdata/characters/Rejana on Fera.html index 963ca295..2475e883 100644 --- a/src/static/testdata/characters/Rejana on Fera.html +++ b/src/static/testdata/characters/Rejana on Fera.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/characters/Riley No Hands.html b/src/static/testdata/characters/Riley No Hands.html index f732a622..3438a707 100644 --- a/src/static/testdata/characters/Riley No Hands.html +++ b/src/static/testdata/characters/Riley No Hands.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/characters/Sergiozk.html b/src/static/testdata/characters/Sergiozk.html index 84db7b3c..2e07324c 100644 --- a/src/static/testdata/characters/Sergiozk.html +++ b/src/static/testdata/characters/Sergiozk.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/characters/Sir Dumbas.html b/src/static/testdata/characters/Sir Dumbas.html index 8bfdb7ca..50b506a6 100644 --- a/src/static/testdata/characters/Sir Dumbas.html +++ b/src/static/testdata/characters/Sir Dumbas.html @@ -3,7 +3,7 @@ Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/characters/Stalone Matador.html b/src/static/testdata/characters/Stalone Matador.html index d936b9c9..07e7e422 100644 --- a/src/static/testdata/characters/Stalone Matador.html +++ b/src/static/testdata/characters/Stalone Matador.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git "a/src/static/testdata/characters/Torbj\303\266rn.html" "b/src/static/testdata/characters/Torbj\303\266rn.html" index ac1f866e..dcce8146 100644 --- "a/src/static/testdata/characters/Torbj\303\266rn.html" +++ "b/src/static/testdata/characters/Torbj\303\266rn.html" @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/characters/Zugspitze Housekeeper.html b/src/static/testdata/characters/Zugspitze Housekeeper.html index d75f7b40..c33c7c41 100644 --- a/src/static/testdata/characters/Zugspitze Housekeeper.html +++ b/src/static/testdata/characters/Zugspitze Housekeeper.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/creatures/creature/centipede.html b/src/static/testdata/creatures/creature/centipede.html index 494b7b7c..daac933f 100644 --- a/src/static/testdata/creatures/creature/centipede.html +++ b/src/static/testdata/creatures/creature/centipede.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Library - + diff --git a/src/static/testdata/creatures/creature/demon.html b/src/static/testdata/creatures/creature/demon.html index 5e221bc9..c7c90ed4 100644 --- a/src/static/testdata/creatures/creature/demon.html +++ b/src/static/testdata/creatures/creature/demon.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Library - + diff --git a/src/static/testdata/creatures/creature/feral werecrocodile.html b/src/static/testdata/creatures/creature/feral werecrocodile.html index 5f7830e5..81388e13 100644 --- a/src/static/testdata/creatures/creature/feral werecrocodile.html +++ b/src/static/testdata/creatures/creature/feral werecrocodile.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Library - + diff --git a/src/static/testdata/creatures/creature/hunter.html b/src/static/testdata/creatures/creature/hunter.html index be775096..2d098145 100644 --- a/src/static/testdata/creatures/creature/hunter.html +++ b/src/static/testdata/creatures/creature/hunter.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Library - + diff --git a/src/static/testdata/creatures/creature/lava lurkers.html b/src/static/testdata/creatures/creature/lava lurkers.html index 30c14e8d..7d129039 100644 --- a/src/static/testdata/creatures/creature/lava lurkers.html +++ b/src/static/testdata/creatures/creature/lava lurkers.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Library - + diff --git a/src/static/testdata/creatures/creature/quara predator.html b/src/static/testdata/creatures/creature/quara predator.html index e4cd2a6d..cd072910 100644 --- a/src/static/testdata/creatures/creature/quara predator.html +++ b/src/static/testdata/creatures/creature/quara predator.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Library - + diff --git a/src/static/testdata/creatures/creature/skunk.html b/src/static/testdata/creatures/creature/skunk.html index 21ae0657..0afd3c44 100644 --- a/src/static/testdata/creatures/creature/skunk.html +++ b/src/static/testdata/creatures/creature/skunk.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Library - + diff --git a/src/static/testdata/creatures/creatures.html b/src/static/testdata/creatures/creatures.html index b5cc1358..aafacdbb 100644 --- a/src/static/testdata/creatures/creatures.html +++ b/src/static/testdata/creatures/creatures.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Library - + diff --git a/src/static/testdata/creatures/creatures_fictitious.html b/src/static/testdata/creatures/creatures_fictitious.html index be1c0136..5f6c26cd 100644 --- a/src/static/testdata/creatures/creatures_fictitious.html +++ b/src/static/testdata/creatures/creatures_fictitious.html @@ -3,7 +3,7 @@ Tibia - Free Multiplayer Online Role Playing Game - Library - + diff --git a/src/static/testdata/fansites/all.html b/src/static/testdata/fansites/all.html index 2f3edac6..f7796c29 100644 --- a/src/static/testdata/fansites/all.html +++ b/src/static/testdata/fansites/all.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/guilds/Premia.html b/src/static/testdata/guilds/Premia.html index a848efc5..4925f9c7 100644 --- a/src/static/testdata/guilds/Premia.html +++ b/src/static/testdata/guilds/Premia.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/guilds/guild/Elysium.html b/src/static/testdata/guilds/guild/Elysium.html index 62592897..1ca18853 100644 --- a/src/static/testdata/guilds/guild/Elysium.html +++ b/src/static/testdata/guilds/guild/Elysium.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/guilds/guild/Kotki Antica.html b/src/static/testdata/guilds/guild/Kotki Antica.html index 6cb8bd3a..02f5d34d 100644 --- a/src/static/testdata/guilds/guild/Kotki Antica.html +++ b/src/static/testdata/guilds/guild/Kotki Antica.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/guilds/guild/Mercenarys.html b/src/static/testdata/guilds/guild/Mercenarys.html index 0613a8de..25fe5f6b 100644 --- a/src/static/testdata/guilds/guild/Mercenarys.html +++ b/src/static/testdata/guilds/guild/Mercenarys.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/guilds/guild/Nights Watch.html b/src/static/testdata/guilds/guild/Nights Watch.html index 49292bd7..1f573380 100644 --- a/src/static/testdata/guilds/guild/Nights Watch.html +++ b/src/static/testdata/guilds/guild/Nights Watch.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/guilds/guild/Order of Glory.html b/src/static/testdata/guilds/guild/Order of Glory.html index e3e5d41f..7bf788a2 100644 --- a/src/static/testdata/guilds/guild/Order of Glory.html +++ b/src/static/testdata/guilds/guild/Order of Glory.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/guilds/guild/True Players.html b/src/static/testdata/guilds/guild/True Players.html index bc8cec05..d4bb1672 100644 --- a/src/static/testdata/guilds/guild/True Players.html +++ b/src/static/testdata/guilds/guild/True Players.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/highscores/all.html b/src/static/testdata/highscores/all.html index 9b0730a3..0d080193 100644 --- a/src/static/testdata/highscores/all.html +++ b/src/static/testdata/highscores/all.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/highscores/loyalty.html b/src/static/testdata/highscores/loyalty.html index c31ae840..90d7afb7 100644 --- a/src/static/testdata/highscores/loyalty.html +++ b/src/static/testdata/highscores/loyalty.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/houses/Premia/Edron/Cormaya10.html b/src/static/testdata/houses/Premia/Edron/Cormaya10.html index db12b1ca..f59aea5d 100644 --- a/src/static/testdata/houses/Premia/Edron/Cormaya10.html +++ b/src/static/testdata/houses/Premia/Edron/Cormaya10.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/houses/Premia/Edron/Cormaya11.html b/src/static/testdata/houses/Premia/Edron/Cormaya11.html index 163f9b52..2cf0a736 100644 --- a/src/static/testdata/houses/Premia/Edron/Cormaya11.html +++ b/src/static/testdata/houses/Premia/Edron/Cormaya11.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/houses/Premia/Edron/Cormaya9c.html b/src/static/testdata/houses/Premia/Edron/Cormaya9c.html index 1c3f8de0..73c3c4fa 100644 --- a/src/static/testdata/houses/Premia/Edron/Cormaya9c.html +++ b/src/static/testdata/houses/Premia/Edron/Cormaya9c.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/houses/Premia/Thais/BeachHomeApartmentsFlat14.html b/src/static/testdata/houses/Premia/Thais/BeachHomeApartmentsFlat14.html index 4141ee67..58a3ca75 100644 --- a/src/static/testdata/houses/Premia/Thais/BeachHomeApartmentsFlat14.html +++ b/src/static/testdata/houses/Premia/Thais/BeachHomeApartmentsFlat14.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/houses/Premia/Thais/BeachHomeApartmentsFlat15.html b/src/static/testdata/houses/Premia/Thais/BeachHomeApartmentsFlat15.html index 0da034e9..9e259d89 100644 --- a/src/static/testdata/houses/Premia/Thais/BeachHomeApartmentsFlat15.html +++ b/src/static/testdata/houses/Premia/Thais/BeachHomeApartmentsFlat15.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/houses/overview/AnticaThaisGuilds.html b/src/static/testdata/houses/overview/AnticaThaisGuilds.html index 0194bb69..6156c31f 100644 --- a/src/static/testdata/houses/overview/AnticaThaisGuilds.html +++ b/src/static/testdata/houses/overview/AnticaThaisGuilds.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/houses/overview/AnticaThaisHouses.html b/src/static/testdata/houses/overview/AnticaThaisHouses.html index 79848a4a..7587ce44 100644 --- a/src/static/testdata/houses/overview/AnticaThaisHouses.html +++ b/src/static/testdata/houses/overview/AnticaThaisHouses.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/houses/overview/PremiaEdronGuilds.html b/src/static/testdata/houses/overview/PremiaEdronGuilds.html index 8b226982..6000e274 100644 --- a/src/static/testdata/houses/overview/PremiaEdronGuilds.html +++ b/src/static/testdata/houses/overview/PremiaEdronGuilds.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/houses/overview/PremiaEdronHouses.html b/src/static/testdata/houses/overview/PremiaEdronHouses.html index 825e0c9f..ad1036df 100644 --- a/src/static/testdata/houses/overview/PremiaEdronHouses.html +++ b/src/static/testdata/houses/overview/PremiaEdronHouses.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/houses/overview/PremiaFarmineGuilds.html b/src/static/testdata/houses/overview/PremiaFarmineGuilds.html index 315f35bc..fe5cf542 100644 --- a/src/static/testdata/houses/overview/PremiaFarmineGuilds.html +++ b/src/static/testdata/houses/overview/PremiaFarmineGuilds.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/houses/overview/PremiaFarmineHouses.html b/src/static/testdata/houses/overview/PremiaFarmineHouses.html index ba8afdc4..5be47c60 100644 --- a/src/static/testdata/houses/overview/PremiaFarmineHouses.html +++ b/src/static/testdata/houses/overview/PremiaFarmineHouses.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/killstatistics/Antica.html b/src/static/testdata/killstatistics/Antica.html index 74af6be3..eea2aeba 100644 --- a/src/static/testdata/killstatistics/Antica.html +++ b/src/static/testdata/killstatistics/Antica.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/news/archive/504.html b/src/static/testdata/news/archive/504.html index 8ebc3f54..3a464e7e 100644 --- a/src/static/testdata/news/archive/504.html +++ b/src/static/testdata/news/archive/504.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - News - + diff --git a/src/static/testdata/news/archive/6481.html b/src/static/testdata/news/archive/6481.html index 78f92696..ec67bc25 100644 --- a/src/static/testdata/news/archive/6481.html +++ b/src/static/testdata/news/archive/6481.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - News - + diff --git a/src/static/testdata/news/archive/6512.html b/src/static/testdata/news/archive/6512.html index 3a714d21..1f043384 100644 --- a/src/static/testdata/news/archive/6512.html +++ b/src/static/testdata/news/archive/6512.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - News - + diff --git a/src/static/testdata/news/archive/6529.html b/src/static/testdata/news/archive/6529.html index 56adeb7b..fee20055 100644 --- a/src/static/testdata/news/archive/6529.html +++ b/src/static/testdata/news/archive/6529.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - News - + diff --git a/src/static/testdata/news/newslist.html b/src/static/testdata/news/newslist.html index bebf6604..cd4844c7 100644 --- a/src/static/testdata/news/newslist.html +++ b/src/static/testdata/news/newslist.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - News - + diff --git a/src/static/testdata/spells/overviewall.html b/src/static/testdata/spells/overviewall.html index aa908a39..65f543c3 100644 --- a/src/static/testdata/spells/overviewall.html +++ b/src/static/testdata/spells/overviewall.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Library - + diff --git a/src/static/testdata/spells/overviewdruid.html b/src/static/testdata/spells/overviewdruid.html index 62084c88..c5f8e167 100644 --- a/src/static/testdata/spells/overviewdruid.html +++ b/src/static/testdata/spells/overviewdruid.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Library - + diff --git a/src/static/testdata/spells/spell/Annihilation.html b/src/static/testdata/spells/spell/Annihilation.html index 78a943f1..af612a4e 100644 --- a/src/static/testdata/spells/spell/Annihilation.html +++ b/src/static/testdata/spells/spell/Annihilation.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Library - + diff --git a/src/static/testdata/spells/spell/Bruise Bane.html b/src/static/testdata/spells/spell/Bruise Bane.html index 5a934e22..aab67a18 100644 --- a/src/static/testdata/spells/spell/Bruise Bane.html +++ b/src/static/testdata/spells/spell/Bruise Bane.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Library - + diff --git a/src/static/testdata/spells/spell/Convince Creature Rune.html b/src/static/testdata/spells/spell/Convince Creature Rune.html index edc8c0e8..7234bfff 100644 --- a/src/static/testdata/spells/spell/Convince Creature Rune.html +++ b/src/static/testdata/spells/spell/Convince Creature Rune.html @@ -2,7 +2,7 @@ Tibia - Free Multiplayer Online Role Playing Game - Library - + diff --git a/src/static/testdata/spells/spell/Cure Poison Rune.html b/src/static/testdata/spells/spell/Cure Poison Rune.html index cac036ba..b005ec7c 100644 --- a/src/static/testdata/spells/spell/Cure Poison Rune.html +++ b/src/static/testdata/spells/spell/Cure Poison Rune.html @@ -2,7 +2,7 @@ Tibia - Free Multiplayer Online Role Playing Game - Library - + diff --git a/src/static/testdata/spells/spell/Find Person.html b/src/static/testdata/spells/spell/Find Person.html index fd04a224..6a86a91a 100644 --- a/src/static/testdata/spells/spell/Find Person.html +++ b/src/static/testdata/spells/spell/Find Person.html @@ -2,7 +2,7 @@ Tibia - Free Multiplayer Online Role Playing Game - Library - + diff --git a/src/static/testdata/spells/spell/Heavy Magic Missile Rune.html b/src/static/testdata/spells/spell/Heavy Magic Missile Rune.html index 3d8a9435..8572c916 100644 --- a/src/static/testdata/spells/spell/Heavy Magic Missile Rune.html +++ b/src/static/testdata/spells/spell/Heavy Magic Missile Rune.html @@ -2,7 +2,7 @@ Tibia - Free Multiplayer Online Role Playing Game - Library - + diff --git a/src/static/testdata/worlds/world/Antica.html b/src/static/testdata/worlds/world/Antica.html new file mode 100644 index 00000000..8d5ee6ab --- /dev/null +++ b/src/static/testdata/worlds/world/Antica.html @@ -0,0 +1,797 @@ + + + + + Tibia - Free Multiplayer Online Role Playing Game - Community + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + + +
+ + + +
+
NO - internet explorer
+
NEW - internet explorer
+
OLD - internet explorer
+
+ +
+
+
+ +
+
+ Monster Pedestal Box
Boosted CreatureBoosted Boss
+ +
+
+
+
+
Contentbox headline +
+
+
+
World Selection
World Name:

World Information
Status:
Server Location Europe
Server PVP Type open
Online
Players Online:298
Online Record:1,055 players (on May 01 2020, 17:58:30 CEST)
Creation Date:January 1997
Location:Europe
PvP Type:Open PvP
World Quest Titles:Rise of Devovorga, The Lightbearer, Demon's Lullaby, Bewitched, A Piece of Cake, Orcsoberfest, Winterlight Solstice
BattlEye Status:Protected by BattlEye since August 29, 2017.
Game World Type:Regular

Players Online [ A B C D E F G H I J K L M N O P Q R S T U V W X Y Z ]  
Name  [sort] Level  [sort] Vocation  [sort]
Abaeseny Akotoroc35Sorcerer
Abdelhai Alshenawy83Elite Knight
Adriann Bobasek80Sorcerer
Agatha Meow277Elder Druid
Aiea Dears2Knight
Akion Ferventir35Sorcerer
Alco Vistico35Sorcerer
Aleksander Wielki Silacz187Elder Druid
Alemao Original944Master Sorcerer
Ali eltaip387Elite Knight
Alm Dru164Elder Druid
Alon Thaler35Sorcerer
Ammiel627Royal Paladin
Anjo Malefico225Elite Knight
Anm85Royal Paladin
Anticantzz25Knight
Antikanoo5Knight
Arielle Bloodrose95Royal Paladin
Arktur286Master Sorcerer
Aszur Askara728Royal Paladin
Atomowy Arbuz792Royal Paladin
Auromer luffy173Royal Paladin
Avoethy53Paladin
Azin Cara60Paladin
Azka Teix58Royal Paladin
Baba Virrus795Royal Paladin
Barbeq174Royal Paladin
Baumboll406Royal Paladin
Beacon of Madness846Elite Knight
Beziedobrze104Exalted Monk
Bloker Sebek253Elite Knight
Bloodline Eva912Royal Paladin
Bloody Dragon263Master Sorcerer
Boltos Kyra76Master Sorcerer
Cade Crius38Knight
Cerberus King679Royal Paladin
Cereloon72Elite Knight
Chemodan39Paladin
Chentesz932Elite Knight
Ciosac Bepi1152Elite Knight
Club Ahly40Druid
Custom Monk47Exalted Monk
Cygonek133Elder Druid
Czinekk738Elder Druid
Czysciciel Kominow10Monk
Da Shiko830Elite Knight
Darem Leywin385Master Sorcerer
Dark-Vans134Master Sorcerer
Death Vibes743Elite Knight
Dedzar683Exalted Monk
Dela Cing85Master Sorcerer
Dema Sevidestia35Sorcerer
Deoxious265Royal Paladin
Devikz380Elite Knight
Dirantri82Elder Druid
Divine Hubercik758Royal Paladin
Doomn773Royal Paladin
Drmed Pusher771Elder Druid
Dura Euro35Knight
Edek Fredek55Elder Druid
Ek Kendo844Elite Knight
El Bazante286Exalted Monk
Elbulkoo809Elite Knight
Elex Frel139Exalted Monk
Elitarny Damo100Elite Knight
Eluma Elish779Elder Druid
Ememems59Master Sorcerer
Emilrokolec306Royal Paladin
Endless Suncow426Master Sorcerer
Enzo Rossini416Elder Druid
Ervyx660Elite Knight
Estaban Quito60Elder Druid
Exit Boltuje285Royal Paladin
Fifonzek69Exalted Monk
Fizoleczek851Elite Knight
Flumma201Elder Druid
Fly Rain189Elite Knight
Forever Jaded1042Master Sorcerer
Fotzsyzrk Noslo32Exalted Monk
Frankus Magus665Master Sorcerer
Furora Sirvak Dragoth42Paladin
Fuwex319Royal Paladin
German Oddicura8Knight
Gestty355Royal Paladin
Ghaozzy Krus366Royal Paladin
Goa Dani768Elite Knight
Goyazzi167Elite Knight
Grabosh14Knight
Grimmim390Elite Knight
Grzandix469Elder Druid
Guri Rpzin702Royal Paladin
Gurra Trollar648Elder Druid
Gut Soulcore80Exalted Monk
Hadyn Skrull557Royal Paladin
Heaven Ek384Elite Knight
Heltgittii388Elder Druid
Herold des Lebens37Elder Druid
Hiphopotamus637Royal Paladin
Hipis Rookstayer22None
Incubus105Elite Knight
Insanuu1059Elder Druid
Iros Nith22Knight
Ithiri229Elite Knight
Jarkerss871Master Sorcerer
Je esabella40Sorcerer
Jedi the Knight512Elite Knight
Joel Guardado68Master Sorcerer
Johny Azura1204Royal Paladin
Jonte on Rookgaard27None
Juizo Wine1294Elder Druid
Kadzienny Sorcerer655Master Sorcerer
Kaelas Flameborn825Master Sorcerer
Kaelen Silvermoon398Royal Paladin
Kagnusudu Ninoweneta122Elder Druid
Kebi Roshamuul Citizen680Royal Paladin
Khoiza1096Royal Paladin
Kicerk Prince180Master Sorcerer
Kici Koko426Elite Knight
Killer Evans910Royal Paladin
Kim Gong Dzwong24Elder Druid
Kimura king164Knight
Kirka112Master Sorcerer
Knight apatico833Elite Knight
Kocur Sfinks527Elder Druid
Kraiiit728Master Sorcerer
Krislley682Elite Knight
Krol Szalotu830Master Sorcerer
Krowts San672Royal Paladin
Krwawy Loyal160Royal Paladin
Krzyk Averiosa45Master Sorcerer
Kwapson462Elite Knight
Lady Lohayne251Elite Knight
Laleczka Czuke252Elite Knight
Lart Lurl8Sorcerer
Legendary Bam313Exalted Monk
Leviathayser529Elite Knight
Lilucha576Elite Knight
Loa Karma188Royal Paladin
Loo Paro351Elite Knight
Lord Maseda1419Elite Knight
Lord Mordin221Royal Paladin
Luiza Vita166Paladin
Luka Godd174Master Sorcerer
Luminiva97Royal Paladin
Mad Fantlito954Elite Knight
Magicice480Royal Paladin
Magnomiks472Royal Paladin
Mao De Asso9Monk
Matii Little334Royal Paladin
Mergem120Elder Druid
Mia alson35Sorcerer
Michael Mastash289Master Sorcerer
Milis Mario234Elder Druid
Mini Astan179Master Sorcerer
Mnichshaojvin30Exalted Monk
Mo sallaah35Sorcerer
Mocarz Kamsy1034Elite Knight
Moja Masa554Elite Knight
Moniaa971Royal Paladin
Monk aa22Monk
Monowskii67Exalted Monk
Muantica6Sorcerer
Nani Tiddo333Elite Knight
New Quest35Druid
Nezel Stonehaze358Royal Paladin
Nicksonz794Royal Paladin
Niezgoddha299Exalted Monk
Nilihist403Elder Druid
Nineen354Elite Knight
Niquit1683Master Sorcerer
No Weapon Man25None
Nöber455Elder Druid
Og Badabing84Elite Knight
Ogonot70Sorcerer
Oje35Paladin
One Punch Knockout220Master Sorcerer
Onion koksu1498Royal Paladin
Ooooooob334Master Sorcerer
Ops shot23Sorcerer
Ortaaz115Royal Paladin
Oxiput592Royal Paladin
Paciifico355Master Sorcerer
Pan Buszek Kopciuszek353Royal Paladin
Paque Loveas1052Royal Paladin
Parszywa Menda796Master Sorcerer
Patryzeck Conqueror1097Elder Druid
Pelancha8Druid
Pescoco de Galo27Elite Knight
Phauline159Elder Druid
Piotr niemaczasu27Royal Paladin
Piratov1015Elite Knight
Pistacho Verde35Exalted Monk
Pony Iz Back227Royal Paladin
Popepito33Exalted Monk
Poppeyez729Elite Knight
Princeso Liliko839Elite Knight
Probiix652Master Sorcerer
Pszemek Pszemko230Elite Knight
Puchol551Master Sorcerer
Pukay220Royal Paladin
Qelly686Master Sorcerer
Queen of Dawnport16Sorcerer
Rae504Master Sorcerer
Ragnar Slapphand231Exalted Monk
Rdzawy Lep720Master Sorcerer
Renarin Junorgem1172Master Sorcerer
Rhes ys35Sorcerer
Rock-man233Elite Knight
Rogerinho Stres485Elder Druid
Romelix381Master Sorcerer
Rookiie Mistakes350Elder Druid
Roxxxi Queen39Elder Druid
Rystas39Sorcerer
Ryteporta60Exalted Monk
Sadria Skan58Elder Druid
Scampia884Elder Druid
Scarcfir337Royal Paladin
Sekurius Gardiuseh22Sorcerer
Sem Remas35Druid
Seraveas331Royal Paladin
Sergos Galaltor35Sorcerer
Shady Tales180Master Sorcerer
Sharis Kamus40Druid
Shattrro644Elder Druid
Shin Lesingard190Elite Knight
Shzymonk178Exalted Monk
Siiwey390Paladin
Sinwaar999Master Sorcerer
Siohinho424Elder Druid
Sir White Widow616Royal Paladin
Siron Herse35Druid
Sisiumbache521Royal Paladin
Skazany na wszystko457Elite Knight
Slick Slacker86Royal Paladin
Snea Bagarn324Exalted Monk
Social Creep Rikupowah355Elder Druid
Sonami527Royal Paladin
Sosik Gse297Royal Paladin
Soundchaser Stormborn811Master Sorcerer
Spjutsteffe68Royal Paladin
Ston Javyna35Druid
Stramonium24Sorcerer
Strongek690Elite Knight
Summonerku209Master Sorcerer
Susta od tescia123Elite Knight
Szafa Amg17Druid
Szkodliwy Gryzon577Elder Druid
Szyszek Milord Black1218Elder Druid
Taki Tivio162Royal Paladin
Tearless Sunny11Druid
Terino Sumi218Royal Paladin
The Conan1280Elite Knight
The Exiled378Elite Knight
The Shrine125Exalted Monk
The xyz44Royal Paladin
Thibor1056Elite Knight
Thidair Danor67Master Sorcerer
Thirteenk Bosspoints807Elder Druid
Tippie988Master Sorcerer
Tour de Force382Royal Paladin
Travoeight35Druid
Travosix35Druid
Travoten35Druid
Troneer856Master Sorcerer
Ttifna Blathose35Druid
Tubbe Trollkarl853Master Sorcerer
Tulai1171Royal Paladin
Turek primee905Master Sorcerer
Tylkoo Wiselka17Paladin
Ulany Gostek377Elite Knight
Urouge6Paladin
Vanamax333Elder Druid
Varda Glin30Knight
Violent Gnome608Master Sorcerer
Vonius Hayes35Druid
Vonky279Exalted Monk
Vopim Than40Druid
Vorhex239Elite Knight
Walter Warriorboy74Exalted Monk
War sainte246Royal Paladin
Wartoon921Elite Knight
Welcome Baby40Druid
Wenzels Monk168Exalted Monk
Wielkapyta51Knight
Winsdon658Royal Paladin
Wiorkowy Wior137Master Sorcerer
Xenyo Kenshin664Master Sorcerer
Xiphoss137Elite Knight
Xorys120Elder Druid
Yooooot35Paladin
Zaitonix1003Elder Druid
Zarcadark Leher2None
Zdac Gandsir35Druid
Zelgacia of Astoria31Master Sorcerer
Zguro Kala35Druid
Zihos Alebe35Paladin
Zolthirian890Master Sorcerer
Zxar Redeemed761Elite Knight

Search Character
Character Name:

+
+
+
+
+
+
+ +
+
+
+

Access ALL Areas!

+
+ +
+
+ +
+ + +
+
+ + +
+
+ +
+ +
+
+
+
+ +

+ diff --git a/src/static/testdata/worlds/world/Endebra.html b/src/static/testdata/worlds/world/Endebra.html index ce5c247c..29e44619 100644 --- a/src/static/testdata/worlds/world/Endebra.html +++ b/src/static/testdata/worlds/world/Endebra.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/worlds/world/Oceanis.html b/src/static/testdata/worlds/world/Oceanis.html index b5d2fb92..c2ecd33c 100644 --- a/src/static/testdata/worlds/world/Oceanis.html +++ b/src/static/testdata/worlds/world/Oceanis.html @@ -1,9 +1,9 @@ - + Tibia - Free Multiplayer Online Role Playing Game - Community - + diff --git a/src/static/testdata/worlds/world/Premia.html b/src/static/testdata/worlds/world/Premia.html index a80ce585..bde934b3 100644 --- a/src/static/testdata/worlds/world/Premia.html +++ b/src/static/testdata/worlds/world/Premia.html @@ -1,776 +1,763 @@ - - -Tibia - Free Multiplayer Online Role Playing Game - Community - - - - - + + + Tibia - Free Multiplayer Online Role Playing Game - Community + + + + + + + + + + + + + + - - - - - - - - - + + + + + + + + + + + + + + + + + + - - - + + + + + - + + + + - + + +
- + - +
+
NO - internet explorer
+
NEW - internet explorer
+
OLD - internet explorer
+
- +
+
+
+