Search found 30 matches

by forbbs
10 Aug 2014, 01:57
Forum: Private Servers
Topic: How do I know send packet's header which server expecting?
Replies: 1
Views: 2853

How do I know send packet's header which server expecting?

I'm working on a private server,everything works fine except "buyer" command.The default header "0x0819" will cause server disconnecting.I tried some header randomly,but no luck.How can I know exact header which is server expecting?
by forbbs
08 Aug 2014, 03:03
Forum: Other Plugins
Topic: [Plugin 4fun] Crosswords
Replies: 7
Views: 7281

Re: [Plugin 4fun] Crosswords

Hi,Can you tell me how to install DBI into openkore folder?
I download DBI-1.631.tar.gz,exact it into src/deps folder,but it doesn't work.

Thanks.
by forbbs
31 Jul 2014, 08:15
Forum: Macro Plugin
Topic: How can I get running bot's name in automacro?
Replies: 3
Views: 3198

Re: How can I get running bot's name in automacro?

Thanks for reply.
I have used "$botname = @eval ($::char->{'name'})",it works. :lol:
by forbbs
31 Jul 2014, 08:14
Forum: Bug reports
Topic: Packet Parser|Tokenizer (unknown/unsupported packets)
Replies: 283
Views: 405366

Re: Packet Parser|Tokenizer (unknown/unsupported packets)

Help please,which handler should 09ca be?23bytes? [parseMsg] << Received packet: 0107 - Party Move [10 bytes] [parseMsg] Party member location: OldGuy - 121, 48 [parseMsg] << Received packet: 07FB [25 bytes] [parseMsg] << Received packet: 0983 [29 bytes] [parseMsg] << Received packet: 0117 - Skill L...
by forbbs
30 Jul 2014, 21:50
Forum: Macro Plugin
Topic: How can I get running bot's name in automacro?
Replies: 3
Views: 3198

How can I get running bot's name in automacro?

I'm running 2 bots at the same time.There is a automacro will be trigger sometimes,but I just want only one bot do it.I would like add conditions like "if (accountName == myBotName) {}".How can I get current running bot's name in macro?Thanks for any hints.
by forbbs
28 Jul 2014, 08:59
Forum: Other OpenKore support
Topic: Dead monster still exists in MonsterList
Replies: 0
Views: 1756

Dead monster still exists in MonsterList

I'm running bots on a private server. Sometimes,I noticed dead monsters still exist in MonsterList(printed by "ml" command).Then my bot will be stucked.
I use RO client check those monsters,there is nothing.Is it possible clear a Monsterlist by macro or something else?
by forbbs
26 Jul 2014, 22:25
Forum: Private Servers
Topic: Wrong status duration
Replies: 0
Views: 1266

Wrong status duration

I'm running bots on a new private server.Its servertype is RagexeRE_2013_08_07a.At first,it has "Packet Parser: Unknown switch: 0983" warning,I followed this post ,It was fixed. But I notice some status's duration like "EFST_SIT" "EFST_ON_PUSH_CART"... is always wrong.it Always be 9.999s. So status ...
by forbbs
07 Apr 2013, 10:11
Forum: Bug reports
Topic: Bot crashes when automacro condition checking
Replies: 1
Views: 17484

Bot crashes when automacro condition checking

When monster Moonlight Flower used skill ST_FULLSTRIP (ID 476) to my bot,the following automacro will cause kore crash. I wonder why? What's "unblessed reference"? automacro checkweapon { location not prontera timeout 4 status not EFST_NOEQUIPWEAPON equipped rightHand none call { log tring equip } }...
by forbbs
07 Apr 2013, 06:25
Forum: Macro Plugin
Topic: New feature for 'if': block of commands (r8457)
Replies: 8
Views: 4197

Re: New feature for 'if': block of commands (r8457)

I notice 'if' block of an automacro triggerd after mapchang will report: " error in 0: syntax error in if statement". like this automacro shieldequip { location not prontera timeout 5 equipped leftHand none call { if (@inventory (some shield) > 0) { log something to equip do eq some shield } else { ...
by forbbs
03 Apr 2013, 19:22
Forum: Other OpenKore support
Topic: How to use Yggdrasil Leaf item correctly?
Replies: 1
Views: 3016

Re: How to use Yggdrasil Leaf item correctly?

It seems there's some problems in item_skill function of Receive\kRO\Sakexe_0.pm. I did some cheap hack to resolve it. sub item_skill { my ($self, $args) = @_; my $skillID = $args->{skillID}; my $targetType = $args->{targetType}; # we don't use this yet my $skillLv = $args->{skillLv}; my $sp = $args...