Search found 58 matches

by gelo2012
15 May 2014, 13:32
Forum: Macro Plugin
Topic: [Help] talknpc on same location
Replies: 1
Views: 2286

[Help] talknpc on same location

An npc is on the same location as the npc I want to talk to. Example: # Name Coordinates ID 0 Kafra_pRO (200, 205) 31315 1 Kafra_sak (200, 205) 32316 if I use talknpc 200 205 c c c the bot cannot talk on the npc I want to talk to. Because there is another npc but is hidden in the same coordinates. H...
by gelo2012
14 Apr 2014, 18:55
Forum: pRO
Topic: Unpacked Clients for pRO with ways of finding hex codes
Replies: 308
Views: 217416

Re: Unpacked Clients for pRO with ways of finding hex codes

I can remember that i've had a client that can show woe damage. Can this be done again? Also, can the following be done on pRO client using hex?: 1.Remove chat filtering 2.Remove camera limitation (not zoom but x y position) does anyone has a collection of hex for pRO? can you share it on this page ...
by gelo2012
05 Apr 2014, 03:08
Forum: Macro Plugin
Topic: [Requesting] Macro For Private Server
Replies: 1
Views: 12995

Re: [Requesting] Macro For Private Server

Code: Select all

automacro sp {
sp <= 5%
location not prontera
run-once 1
call {
do ai manual
pause 1
c @go 0
pause 1
do move prontera 149 181
pause 1
do talknpc 150 181 r0 n
pause 2
do talknpc 158 181 r0 n
pause 2
do ai on
release sp
}
}
by gelo2012
05 Apr 2014, 03:05
Forum: Macro Plugin
Topic: [Problem]Detecting the condition and execute the commands
Replies: 1
Views: 2228

Re: [Problem]Detecting the condition and execute the commands

Try this: automacro sp { sp <= 5% location not prontera run-once 1 call { do ai manual pause 1 c @go 0 pause 1 do move prontera 149 181 pause 1 do talknpc 150 181 r0 n pause 2 do talknpc 158 181 r0 n pause 2 release sp } } PS : sorry I forgot to add in the last line before the release sp : do ai on
by gelo2012
05 Apr 2014, 02:59
Forum: Resolved Questions
Topic: time trigger problem (use eval)
Replies: 10
Views: 10690

Re: eval time trigger problem

Try this:

Code: Select all

automacro OK {
        exclusive 1
        run-once 1
        call {
$i = @eval ($.time - $a)
if ($i >= 21) goto timesup

              :timesup
              log OK
      }
}
Just remove the excess close parenthesis:

Code: Select all

macro tt {
log @eval ($.time)
}
I haven't tested it.
by gelo2012
05 Apr 2014, 02:44
Forum: Tips & Tricks
Topic: Quagmire Question
Replies: 3
Views: 9665

Re: Quagmire Question...

Greetings fellow botters! Just wanna ask, How do you make your BOT fly when he is being Quagmired by a monster? doCommand tele { hp sp homunculus_hp homunculus_sp homunculus_dead onAction whenStatusActive Quagmire whenStatusInactive whenFollowing spirit aggressives monsters notMonsters stopWhenHit ...
by gelo2012
05 Apr 2014, 02:40
Forum: Tips & Tricks
Topic: Where to go from here?
Replies: 2
Views: 10496

Re: Where to go from here?

So I am very new to this, started about a month or so ago.. So far I have managed to get a RK from 101 to 121 on magmarings. The exp is trash, its only making about 10 million every day or so and I am stuck on what to change. Here is my code along with my gear and stats! This is what I did: A. Bot ...
by gelo2012
05 Apr 2014, 02:24
Forum: Other OpenKore support
Topic: autosell dont detect the item in items.txt to sell it
Replies: 1
Views: 2975

Re: autosell dont detect the item in items.txt to sell it

Post a screen shot of your console with the problem you are getting.
by gelo2012
05 Apr 2014, 02:09
Forum: Macro Plugin
Topic: [guide/help] Macro usefulls
Replies: 23
Views: 107596

Re: [guide/help] Macro usefulls

How can I add 'coma' to an integer value? And what is the integer limit value of macro?

Code: Select all

$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?