I recognize this error in Wx, but do not know why it happens.
Never tried the start.exe
Search found 388 matches
- 22 Dec 2013, 12:52
- Forum: Other Plugins
- Topic: webMonitor v2 - by BonScott
- Replies: 101
- Views: 61160
- 21 Dec 2013, 22:12
- Forum: Other Plugins
- Topic: webMonitor v2 - by BonScott
- Replies: 101
- Views: 61160
Re: webMonitor v2 - by BonScott
In the list of loaded plugins erros.txt not displayed the WebMonitor. This is the appropriate place for such a question? I do not understand.
About the problem, it must be caused by the fact that you have forgotten to install the module Win32::Console
About the problem, it must be caused by the fact that you have forgotten to install the module Win32::Console
- 21 Dec 2013, 17:41
- Forum: Macro Plugin
- Topic: New features: postfix control with "if"
- Replies: 0
- Views: 1460
- 21 Dec 2013, 16:26
- Forum: Macro Plugin
- Topic: New features: switch/case
- Replies: 7
- Views: 3621
Re: New features: switch/case

You updated the address of SVN? Here worked perfectly.
- 15 Dec 2013, 22:40
- Forum: Macro Plugin
- Topic: New features: switch/case
- Replies: 7
- Views: 3621
- 15 Dec 2013, 12:55
- Forum: Share your macro's
- Topic: Public Heal slave Macro
- Replies: 4
- Views: 7893
Re: Public Heal slave Macro
Replace the goto/label the if/elsif automacro autoheal2{ pubm /h(eal|il)/i call heal } macro heal{ do sp 28 $.lastpub } automacro autoheal{ pubm /h(eal|il) (\d+)/i call { $maxHeal = 10 $maxHealAmount = 20000 $healStrength = 1300 if ($.lastMatch2 <= $maxHeal && $.lastMatch2 >= 1) { $amount = @eval ($...
- 15 Dec 2013, 12:42
- Forum: Developers Corner
- Topic: How to open Poseidon?
- Replies: 3
- Views: 2395
Re: How to open Poseidon?
What's the server that's trying to connect?
If bRO, the Poseidon is no longer necessary.
If bRO, the Poseidon is no longer necessary.
- 15 Dec 2013, 12:41
- Forum: Developers Corner
- Topic: How to record names of players in a map?
- Replies: 2
- Views: 1943
Re: How to record names of players in a map?
You looked at the plugins section? There are two plugins that do this.
A complex with many functions:
http://forums.openkore.com/viewtopic.php?f=34&t=33876
A simpler:
http://forums.openkore.com/viewtopic.php?f=34&t=53
A complex with many functions:
http://forums.openkore.com/viewtopic.php?f=34&t=33876
A simpler:
http://forums.openkore.com/viewtopic.php?f=34&t=53
- 14 Dec 2013, 17:04
- Forum: Developers Corner
- Topic: [Macro Plugin] Implementation of switch/case
- Replies: 1
- Views: 2286
Re: [Macro Plugin] Implementation of switch/case
I sent for SVN.
r8782
r8782
- 12 Dec 2013, 00:04
- Forum: Developers Corner
- Topic: [Macro Plugin] Implementation of switch/case
- Replies: 1
- Views: 2286
[Macro Plugin] Implementation of switch/case
At the suggestion of kLabMouse, implemented support for switch/case in Macro Plugin. Example of use: http://i.imgur.com/HaHa0gS.png This is useful to make the code more organized, making maintenance easier. Diff: http://pastebin.com/kL7aiTzH How to use: It is similar to if followed by several else ....