Dark RO
Moderator: Moderators
-
- Noob
- Posts: 8
- Joined: 09 Aug 2016, 21:41
- Noob?: Yes
Re: Dark RO
try using macro?
Trigger soul linker but doing flag emoticon
on your linkMe macro, get job id
then use skill depending on jobid
Trigger soul linker but doing flag emoticon
Code: Select all
automacro linkOnFlag {
console /\[dist=(.*)\] (.*) \((\d+)\): (.*)(Flag)(.*)$/
call linkMe
timeout 5
priority 0
}
Code: Select all
macro linkMe {
#get player
$i = $.lastMatch3
#get player's job id
$job = @eval ($::players{$::playersID[$i]}->{jobID})
...
Code: Select all
...
if ($job = 4059) #4059 is GX
# sp stands for use skill on player, more info at http://openkore.com/index.php/Category:Console_Command
do sp 457 "$n"
stop
...
Please stop posting craps like this:
"Hello <insert name>, do you have [bot|server|configuration|<insert job/class>] in <insert pserver>? can you send it to me? <via PM or insert email address>"
"Hello <insert name>, do you have [bot|server|configuration|<insert job/class>] in <insert pserver>? can you send it to me? <via PM or insert email address>"
-
- Noob
- Posts: 3
- Joined: 06 Sep 2016, 04:13
- Noob?: Yes
Re: Dark RO
Is this for soul linker? The server doesnt have soul linker job. XDAthan17 wrote:try using macro?
Trigger soul linker but doing flag emoticonon your linkMe macro, get job idCode: Select all
automacro linkOnFlag { console /\[dist=(.*)\] (.*) \((\d+)\): (.*)(Flag)(.*)$/ call linkMe timeout 5 priority 0 }
then use skill depending on jobidCode: Select all
macro linkMe { #get player $i = $.lastMatch3 #get player's job id $job = @eval ($::players{$::playersID[$i]}->{jobID}) ...
Code: Select all
... if ($job = 4059) #4059 is GX # sp stands for use skill on player, more info at http://openkore.com/index.php/Category:Console_Command do sp 457 "$n" stop ...
-
- Noob
- Posts: 8
- Joined: 09 Aug 2016, 21:41
- Noob?: Yes
Re: Dark RO
ohh, then care to explain what you really need?Shortiee wrote: Is this for soul linker? The server doesnt have soul linker job. XD
auto linker? auto use of items?
useSelf_item http://openkore.com/index.php/UseSelf_item
auto cannibalize?
can be made using macro.
in config.txt
Code: Select all
route_randomWalk 0 #make sure kore will not wander in map
lockMap gef_fild00 #sample map
lockMap_x 120 #sample coords
lockMap_y 180
Code: Select all
macro summon_cannibalize {
do sl 232 121 180 5
}
232 => bio cannibalize
121 => x coordinate
180 => y coordinate
5 => skill level
more info: http://openkore.com/index.php/Skill_Use_Command
get skillid from http://ratemyserver.net/index.php?page=skill_db&jid=18
type 'skills' in console
auto triggering
Code: Select all
automacro summoning {
location gef_fild00 120 180 #only when your in this exact location
priority 1
call summon_cannibalize
timeout 30 #summon every 30seconds
}
Please stop posting craps like this:
"Hello <insert name>, do you have [bot|server|configuration|<insert job/class>] in <insert pserver>? can you send it to me? <via PM or insert email address>"
"Hello <insert name>, do you have [bot|server|configuration|<insert job/class>] in <insert pserver>? can you send it to me? <via PM or insert email address>"
-
- Human
- Posts: 48
- Joined: 17 Mar 2015, 06:48
- Noob?: Yes
Re: Dark RO
automacro link {
party /b/i
call {
$id = @player ($.lastparty)
if ($id < 0) stop
$jobID = @eval ($::players{$::playersID[$id]}->{jobID})
if ($jobID = 7) goto knight
if ($jobID = 8) goto priest
if ($jobID = 9) goto wizard
if ($jobID = 10) goto smith
if ($jobID = 11) goto sniper
if ($jobID = 12) goto assassin
if ($jobID = 13) goto knight
if ($jobID = 14) goto paladin
if ($jobID = 15) goto champion
if ($jobID = 16) goto professor
if ($jobID = 17) goto stalker
if ($jobID = 18) goto creator
if ($jobID = 19) goto clown
if ($jobID = 20) goto clown
if ($jobID = 21) goto paladin
if ($jobID = 23) goto supernovice
if ($jobID = 4008) goto knight
if ($jobID = 4009) goto priest
if ($jobID = 4010) goto wizard
if ($jobID = 4011) goto smith
if ($jobID = 4012) goto sniper
if ($jobID = 4013) goto assassin
if ($jobID = 4014) goto knight
if ($jobID = 4015) goto paladin
if ($jobID = 4016) goto champion
if ($jobID = 4017) goto professor
if ($jobID = 4018) goto stalker
if ($jobID = 4019) goto creator
if ($jobID = 4020) goto clown
if ($jobID = 4021) goto clown
if ($jobID = 4022) goto paladin
if ($jobID = 4047) goto star
if ($jobID = 4049) goto soul
:creator
do sp 445 $id
stop
release link
:champion
do sp 447 $id
stop
release link
:star
do sp 448 $id
stop
release link
:professor
do sp 449 $id
stop
release link
:paladin
do sp 450 $id
stop
release link
:supernovice
do sp 451 $id
stop
release link
:knight
do sp 452 $id
stop
release link
:wizard
do sp 453 $id
stop
release link
:priest
do sp 454 $id
stop
release link
:clown
do sp 455 $id
stop
release link
:stalker
do sp 456 $id
stop
release link
:assassin
do sp 457 $id
stop
release link
:smith
do sp 458 $id
stop
release link
:sniper
do sp 460 $id
stop
release link
:soul
do sp 461 $id
stop
release link
}
}
add your own class
party /b/i
call {
$id = @player ($.lastparty)
if ($id < 0) stop
$jobID = @eval ($::players{$::playersID[$id]}->{jobID})
if ($jobID = 7) goto knight
if ($jobID = 8) goto priest
if ($jobID = 9) goto wizard
if ($jobID = 10) goto smith
if ($jobID = 11) goto sniper
if ($jobID = 12) goto assassin
if ($jobID = 13) goto knight
if ($jobID = 14) goto paladin
if ($jobID = 15) goto champion
if ($jobID = 16) goto professor
if ($jobID = 17) goto stalker
if ($jobID = 18) goto creator
if ($jobID = 19) goto clown
if ($jobID = 20) goto clown
if ($jobID = 21) goto paladin
if ($jobID = 23) goto supernovice
if ($jobID = 4008) goto knight
if ($jobID = 4009) goto priest
if ($jobID = 4010) goto wizard
if ($jobID = 4011) goto smith
if ($jobID = 4012) goto sniper
if ($jobID = 4013) goto assassin
if ($jobID = 4014) goto knight
if ($jobID = 4015) goto paladin
if ($jobID = 4016) goto champion
if ($jobID = 4017) goto professor
if ($jobID = 4018) goto stalker
if ($jobID = 4019) goto creator
if ($jobID = 4020) goto clown
if ($jobID = 4021) goto clown
if ($jobID = 4022) goto paladin
if ($jobID = 4047) goto star
if ($jobID = 4049) goto soul
:creator
do sp 445 $id
stop
release link
:champion
do sp 447 $id
stop
release link
:star
do sp 448 $id
stop
release link
:professor
do sp 449 $id
stop
release link
:paladin
do sp 450 $id
stop
release link
:supernovice
do sp 451 $id
stop
release link
:knight
do sp 452 $id
stop
release link
:wizard
do sp 453 $id
stop
release link
:priest
do sp 454 $id
stop
release link
:clown
do sp 455 $id
stop
release link
:stalker
do sp 456 $id
stop
release link
:assassin
do sp 457 $id
stop
release link
:smith
do sp 458 $id
stop
release link
:sniper
do sp 460 $id
stop
release link
:soul
do sp 461 $id
stop
release link
}
}
add your own class

-
- Noob
- Posts: 8
- Joined: 11 Jul 2016, 04:41
- Noob?: Yes
Re: Dark RO
Do you have config on server.txt for dark-ro? im having a hard time figuring out the ip of the server, my bot always gets a connection error
-
- Noob
- Posts: 3
- Joined: 06 Sep 2016, 04:13
- Noob?: Yes
Re: Dark RO
@athan:
I was able to use to let my bot use the link but it doesnt use the link on the target, It says ( it only says " Permitted To Use (**Job**) Level 5 ). My slave need to use an item for it to talis.
I was able to use to let my bot use the link but it doesnt use the link on the target, It says ( it only says " Permitted To Use (**Job**) Level 5 ). My slave need to use an item for it to talis.
-
- Noob
- Posts: 8
- Joined: 11 Jul 2016, 04:41
- Noob?: Yes
Re: Dark RO
@Shortiee
Can you send to me your bot sir? i really can't connect to server, i already did all sniffing tools but still can't connect, please sir share it to me please, this is my email,... leeandrew.a@yahoo.com, i will really appreciate your kindness
Can you send to me your bot sir? i really can't connect to server, i already did all sniffing tools but still can't connect, please sir share it to me please, this is my email,... leeandrew.a@yahoo.com, i will really appreciate your kindness
-
- Noob
- Posts: 8
- Joined: 09 Aug 2016, 21:41
- Noob?: Yes
Re: Dark RO
try this command:Shortiee wrote:@athan:
I was able to use to let my bot use the link but it doesnt use the link on the target, It says ( it only says " Permitted To Use (**Job**) Level 5 ). My slave need to use an item for it to talis.
ip (<inventory item #> <player #>)
more info: http://openkore.com/index.php/Ip
Please stop posting craps like this:
"Hello <insert name>, do you have [bot|server|configuration|<insert job/class>] in <insert pserver>? can you send it to me? <via PM or insert email address>"
"Hello <insert name>, do you have [bot|server|configuration|<insert job/class>] in <insert pserver>? can you send it to me? <via PM or insert email address>"