Maybe i can try studying Perl though I'm currently active in .Net and VB6...I just want to give it a shot.Looks Nice. But I'm sure that it would be hard for you to get familiar with Perl and OpenKore internals.

Moderator: Moderators
Maybe i can try studying Perl though I'm currently active in .Net and VB6...I just want to give it a shot.Looks Nice. But I'm sure that it would be hard for you to get familiar with Perl and OpenKore internals.
Code: Select all
package doWithMe;
use strict;
use Plugins;
use Globals;
use Utils;
use Log qw(message);
Plugins::register('doWithMe', 'Warping with party member', \&Unload);
my $hooks = Plugins::addHooks(
['packet/party_chat', \&onPartyMsg, undef]
);
sub Unload {
Plugins::delHooks($hooks);
}
sub onPartyMsg{
return if (!$config{'doWithMe'});
my ($packet, $args) = @_;
message "$args->{message}";
my $partyMsg = $args->{message};
if ($partyMsg =~/(.+) : \#(go|warp|pk|autoloot|autolootid(1|2|3|4|5)|autolootitem) /){
$partyMsg =~ s/\#/@/;
$partyMsg =~ s/.+://;
Commands::run ("c $partyMsg");
}
}
hey kLab, could you hand Haibi an svn commit bit please?Haibi wrote:Hey,
I would like to add things I found missing/wrong or fix bugs as far as I'm able to (I'm not a very experienced coder, though).
Name: Haibi
Age: 23
Location: Germany
Languages: English, German
Experience: some years Ro (euRo, iRo, short time private), botting with openkore, using linux mainly, scripting stuff (web mostly)
Time: Likely not very regular, I have to admit. Rather something like "see and fix".
Position: dev
Bugs: -
Plugins/Mods/Features: see some notes on my wiki page. Mainly tables add and so on.
Shure. Just gimme the SF.net Account name.Technology wrote:hey kLab, could you hand Haibi an svn commit bit please?Haibi wrote:Hey,
I would like to add things I found missing/wrong or fix bugs as far as I'm able to (I'm not a very experienced coder, though).
Name: Haibi
Age: 23
Location: Germany
Languages: English, German
Experience: some years Ro (euRo, iRo, short time private), botting with openkore, using linux mainly, scripting stuff (web mostly)
Time: Likely not very regular, I have to admit. Rather something like "see and fix".
Position: dev
Bugs: -
Plugins/Mods/Features: see some notes on my wiki page. Mainly tables add and so on.