Tibia Data v0.1.1 TibiaData.Guild

This module helps you to get all the information you want to have from guilds including players online and more.

Link to this section Summary

Functions

Returns all information by a specific guild.

Returns all information by a specific guild. Alias from get! function.

Returns all guilds in the specified world.

Link to this section Functions

Returns all information by a specific guild.

Parameters

  • name (string): String that represents the name of the guild.

Examples

iex> TibiaData.Guild.get! "Macabra Pune"
{:ok, data}
Link to this function

get_by_name(name)

Returns all information by a specific guild. Alias from get! function.

Parameters

  • name (string): String that represents tha name of the guild.

Examples

iex> TibiaData.Guild.get_by_name "Macabra Pune"
{:ok, data}
Link to this function

get_by_world(world)

Returns all guilds in the specified world.

Parameters

  • world (string): String that represents the name of the world.

Examples

iex> TibiaData.Guild.get_by_world "Macabra"
{:ok, data}