NAME

Games::WoW::Armory - Access to the WoW Armory

VERSION

version 0.0.2

SYNOPSIS

    use Games::WoW::Armory;

  	my $armory = Games::WoW::Armory->new();
	$armory->search_character( { realm     => 'Elune',
                                 character => 'Aarnn',
                                 country   => 'EU } );
	print $armory->character->{name};
	

METHOD

fetch_data

Fetch the data, and store the result in $self->{data}

search_character

Search a character. Required params:

realm | character | country
realm : name of the realm
character : name of a character
country : name of the country (EU|US)
The character information are in $self->character (name, race, guild, etc)
The character reputations are in $self->reputation
The character skills are in $self->skill
More character informations are in $self->characterinfo

search_guild

Search for a guild. required params :

realm | guild | country
realm : name of the realm
guild : name of the guild
country : name of the country (EU|US)
Guild members are in $self->members

get_heroic_access

Store in $self->heroic_access the list of keys the user can buy for the instances in heroic mode.

BUGS AND LIMITATIONS

Please report any bugs or feature requests to bug-games-wow-armory@rt.cpan.org, or through the web interface at http://rt.cpan.org.

AUTHOR

franck cuny <franck.cuny@gmail.com>

LICENCE AND COPYRIGHT

Copyright (c) 2007, franck cuny <franck.cuny@gmail.com>. All rights reserved.

This module is free software; you can redistribute it and/or modify it under the same terms as Perl itself. See perlartistic.