Search found 13 matches

by bluesky
31 May 2017, 13:34
Forum: Macro Plugin
Topic: An error of openkore macros
Replies: 2
Views: 2750

Re: An error of openkore macros

Mortimal wrote:maybe your console is not utf8... you run your open core on win or lin?

I used WIN7 64bit

I tried to change both file to utf-8
src\Interface\Console.pm
src\Interface\Wx\console.pm

got the same error


and I tried change
plugins/macro/Macro/Automacro.pm
to utf-8

the same error :cry: :cry:
by bluesky
30 May 2017, 13:34
Forum: Macro Plugin
Topic: An error of openkore macros
Replies: 2
Views: 2750

An error of openkore macros

hi,I used the newest openkore and macro plugins *** OpenKore what-will-become-2.1 ( version ctime:2017_05_30 ) - Custom Ragnarok Online client *** My control\macros.txt was UTF-8 but when I trade with other player always crashed Malformed UTF-8 character (fatal) at plugins/macro/Macro/Automacro.pm l...
by bluesky
14 Apr 2017, 04:05
Forum: Macro Plugin
Topic: How can I get chat room player name?
Replies: 7
Views: 4544

Re: How can I get chat room player name?

$user =~ s/^\"(.*)\"$/\1/; my pull request https://github.com/OpenKore/openkore/pull/550/files Thank you, but your line-4152 code had two version? in here: $user =~ s/^\"(.*)\"$/\1/; in github: $user =~ s/^\"(.*)\"$/$1/; I download your github openkore then I tried both version,but still Quick look...
by bluesky
13 Apr 2017, 14:19
Forum: Macro Plugin
Topic: How can I get chat room player name?
Replies: 7
Views: 4544

Re: How can I get chat room player name?

try that... i dont know what your aim is so -_- hello I have got a little problem@@ although I got the player name and set to varible $player1 If the player name only have number example: $player1 = 321654 do pm "$player1" test always got error message Quick look-up 321654 not exist because :( <pm ...
by bluesky
11 Apr 2017, 08:27
Forum: Macro Plugin
Topic: How can I get chat room player name?
Replies: 7
Views: 4544

Re: How can I get chat room player name?

Gets list of users in chatroom(maybe xD ) stores it in $s: $s = @eval(print "@::currentChatRoomUsers") Gets n user from list $s: @arg ("$s", n) Output list of users in chatroom: $s = @eval(print "@::currentChatRoomUsers") $chatnumber = 0 while ($chatnumber < 20) as loop $chatnumber++ log @arg ("$s"...
by bluesky
11 Apr 2017, 05:45
Forum: Macro Plugin
Topic: How can I get chat room player name?
Replies: 7
Views: 4544

Re: How can I get chat room player name?

Data is stored in global. So to get first man in chat room: @eval($::currentChatRoomUsers[0]) It's worked! Thank you!! :D But I have a little problem example $chatnumber = 0 while ($chatnumber < 20)as loop $chatnumber++ $player$chatnumber = @eval($::currentChatRoomUsers[$chatnumber]) end loop $play...
by bluesky
10 Apr 2017, 15:51
Forum: Macro Plugin
Topic: How can I get chat room player name?
Replies: 7
Views: 4544

How can I get chat room player name?

I want to get player real name in chat. I used command "chat info" to catch it. [list] -----------Chat Room Info----------- Title Users Public/Private [list] 2/ Private [list] -- Users -- [list] 0 test° [list] 1 mo mo Question 1: Behind name had many space. name + space = 27 Character Question 2: If...
by bluesky
07 Feb 2017, 15:09
Forum: Resolved Questions
Topic: How can I use sura skill "Dash like a bullet" on route?
Replies: 6
Views: 4603

Re: How can I use sura skill "Dash like a bullet" on route?

Mortimal wrote:

Code: Select all

$i = @eval (Misc::checkLineWalkable ({x => $::char->{pos}{x}, y => $::char->{pos}{y}}, {x => $x, y => $y},0))
Now it's worked :D :D :D
Thank you very much :D
by bluesky
07 Feb 2017, 12:14
Forum: Resolved Questions
Topic: How can I use sura skill "Dash like a bullet" on route?
Replies: 6
Views: 4603

Re: How can I use sura skill "Dash like a bullet" on route?

the same error move 201 95 [route] Calculating route to: amatsu: 201, 95 [info] 7 steps to destination at x=201 y=95 [macro] [macro] automacro dashroute triggered. [macro] [macro] dashroute.call error: error in 2: @eval (Misc::checkLineWalkable ({x => $::char->{pos}{x}, y => <$::char->{pos}{y}}, {x ...
by bluesky
07 Feb 2017, 11:11
Forum: Resolved Questions
Topic: How can I use sura skill "Dash like a bullet" on route?
Replies: 6
Views: 4603

Re: How can I use sura skill "Dash like a bullet" on route?

$i = @eval (Misc::checkLineWalkable ({x => <your x position>, y => <your y position>}, {x => <target x>, y => <target y>},0)) Thank you!! But I got a error message@@ move 94 65 [route] Calculating route to: geffen: 94, 65 [info] 4 steps to destination at x=94 y=65 [macro] [macro] automacro dashrout...