Search found 61 matches

by vitriol
06 Sep 2015, 01:12
Forum: Resolved Questions
Topic: Hook when HP or SP changed
Replies: 6
Views: 5973

Re: Hook when HP or SP changed

Plugins::addHooks(['packet/hp_sp_changed', \&doHookSubroutine]);
by vitriol
25 Aug 2015, 22:44
Forum: Resolved Questions
Topic: Slow attack after loot
Replies: 5
Views: 5472

Re: Slow attack after loot

zCasanova wrote:the bot actually returns to pathing prior to attacking available mobs within its sight
this indicates that it is a timeout issue. I immediately see two parameters that could cause this behavior. And one of them is in the timeouts.txt file but is missing from the wiki.
by vitriol
03 Aug 2015, 23:01
Forum: Macro Plugin
Topic: [guide/help] Macro usefulls
Replies: 23
Views: 108958

Re: [guide/help] Macro usefulls

you should look at Globals.pm for the list of players on screen. And then loop for each player and compare the coordinates. that file also contains everything else you requested as well but it's easier with plugins imho since you can use functions like this one in Actors/Item.pm # $ActorItem->equipp...
by vitriol
23 Jul 2015, 03:29
Forum: Macro Plugin
Topic: [guide/help] Macro usefulls
Replies: 23
Views: 108958

Re: [guide/help] Macro usefulls

How can I add 'coma' to an integer value? And what is the integer limit value of macro? $num1 = 1000000000 $num2 = 1000 $num3 = @eval ($num1/$num2) The value of $num3 = 1000000 What I want to have as an output is: 1,000,000 How can I do that? $num3 =~ /(\d\d\d)?(\d\d\d)?(\d\d\d)?(\d\d\d)?(\d\d\d)?(...
by vitriol
05 Jul 2015, 02:04
Forum: Bug reports
Topic: r8977 - uninitialized value $ChatQueue::config{"callSign"}
Replies: 7
Views: 4644

Re: r8977 - uninitialized value $ChatQueue::config{"callSign"}

download older revisions and check each to see exactly which revision broke it. then "diff" it to the previous revision and find the code that broke your config and fix it and ask a dev to commit your change to svn. you can find help on opk irc channel
by vitriol
03 Jul 2015, 00:35
Forum: Private Servers
Topic: Timeout on map server
Replies: 3
Views: 3523

Re: Timeout on map server

you have to figure it out by searching the forums because nobody really bothered to compile instructions
by vitriol
29 Jun 2015, 23:01
Forum: Private Servers
Topic: Timeout on map server
Replies: 3
Views: 3523

Re: Timeout on map server

hercules emulator + timeout on map server => they use packet header encryption. you need to find the packet keys by diffing the original unpacked client with the custom server exe and then apply that to encrypt everything you send to the server by modifying the src/Network/send pm files