Hm, I looked around for something about it...found nothing....I guess they dont want a bunch of Warez bots lol _________________ Check out Botworld! A dev resource for things bot.
Downloads, articles, news, fourm and more.
http://botworld.marzopolis.com
So wouldnt it be $oscar = Net::OSCAR->new(capabilities => [qw(extended_status file_sharing)]);
Im just guessing...although if this is how its implemented, Im not sure where it would go _________________ Check out Botworld! A dev resource for things bot.
Downloads, articles, news, fourm and more.
http://botworld.marzopolis.com
It has capabilities for buddy icons and extended statuses, and then later it has methods that use those (like $oscar->buddy_icon (DATA) for buddy icons). It has file_transfer and file_sharing as possible capabilities, but there are no handlers or commands for them. _________________ Current Site (2008) http://www.cuvou.com/
The bastards! How do you get the bot to use a buddy icon? _________________ Check out Botworld! A dev resource for things bot.
Downloads, articles, news, fourm and more.
http://botworld.marzopolis.com
my(%parameters) = @_; if(my($badparam) = grep { $_ ne "capabilities" } keys %parameters) { croak "Invalid parameter '$badparam' passed to Net::OSCAR::new."; } if($parameters{capabilities}) { if(my($badcap) = grep { $_ ne "extended_status" and $_ ne "buddy_icons" and $_ ne "file_transfer" and $_ ne "file_sharing" and $_ ne "typing_status" } @{$parameters{capabilities}}) { croak "Invalid capability '$badcap' passed to Net::OSCAR::new."; } }
Farkie, According to that it seems you would just be able to use it if you set a new capability with it as I stated previously right? If so, Im still not sure how it would be implemented...I suppose there would need to be a handler and method calls for it?
Darkmonkey, A buddy icon is the image that others see in the IM and buddy list for Marz. I believe its similar to the display picture in MSN. _________________ Check out Botworld! A dev resource for things bot.
Downloads, articles, news, fourm and more.
http://botworld.marzopolis.com
Hi, I'm new with this stuff and I managed to get a bot online. Currently I only use it for personal stuff.
At work we use a proxy server and I have a question about it: - Is it possible to transfer a file through the proxy server? Because I would like to upload files from work to home.
Two other questions: - Can people retrieve my IP if my bot is online? (I only enabled commands for admins) @Cer: Did you manage to create a file transfer command?
Juggernaut currently doesnt have file transfer capability on AIM. I dont use MSN, so couldnt tell you there. Id like to get AIM file transfer working myself, but there arent any methods/handlers documented for it. _________________ Check out Botworld! A dev resource for things bot.
Downloads, articles, news, fourm and more.
http://botworld.marzopolis.com