Search found 14 matches

by -haseo-
11 May 2012, 14:22
Forum: Bug reports
Topic: Packet Parser|Tokenizer (unknown/unsupported packets)
Replies: 283
Views: 401596

Re: Packet Parser|Tokenizer (unknown/unsupported packets)

Dear moderators,

please give us a valid link to JCV's RO Tools v1.0.3 so we can update our recvpackets.txt, the one provided here (uploaded at 4shared.com) is not clean.

Thank you.
by -haseo-
10 May 2012, 13:25
Forum: Fixed bugs
Topic: Q about squelchDomains
Replies: 3
Views: 7810

Re: Q about squelchDomains

Many messages are related to the booking system (party search), I doubt all other RO's out there have that system too. I know the messages don't hurt, I just don't want them displayed. Already used the search function of course. Is there any file where I can manually add those Packets (like the comm...
by -haseo-
10 May 2012, 06:40
Forum: Fixed bugs
Topic: Q about squelchDomains
Replies: 3
Views: 7810

Q about squelchDomains

Hello, I'm using squelchDomains skill, publicchat, emotion, effect, connection, drop, pet, startup, console, refine but I still get alot of unwanted messages on my vender: http://img560.imageshack.us/img560/1108/how2h.jpg What I need to use to avoid this type of text (basicly everything in yellow), ...
by -haseo-
27 Apr 2012, 15:54
Forum: Other OpenKore support
Topic: console /<text>/
Replies: 11
Views: 10019

Re: console /<text>/

solved.

Code: Select all

automacro tripple {
	console /DEX\+3/
	call stopit
}
by -haseo-
27 Apr 2012, 12:23
Forum: Other OpenKore support
Topic: console /<text>/
Replies: 11
Views: 10019

console /<text>/

Hello, I want to enchant armors for DEX+3, so I wrote an automacro that keeps enchanting my armors until I get a DEX one. Unfortunaly you can't use "+" in console /<text>/ so this doesn't work: automacro stopit { console /DEX+3/ # <- doesn't work because of the + console /"DEX"/ # <- not working eit...
by -haseo-
04 Feb 2012, 19:25
Forum: iRO
Topic: How to heal to certain percentage when HP is lower than...
Replies: 2
Views: 2332

Re: How to heal to certain percentage when HP is lower than...

Code: Select all

automacro blablub {
   hp < 50 %
   call gravitysucks
   timeout 10
}

macro gravitysucks {
   hp < 95 %
   do ss 28
   pause 1.5
   call gravitysucks
}
by -haseo-
05 Jan 2012, 10:49
Forum: Discussion
Topic: Heal only when no monsters around
Replies: 5
Views: 4437

Re: Heal only when no monsters around

Yeah I do know about the invulnerability after teleport. I think the teleportAuto_minAggressivesInLock doesn't play a role in my setup since I use telesearch. So I will teleport after X seconds anyway (ai_teleport_idle X), no matter how many aggros there are. heal yourself, aggro-ing them in the pro...
by -haseo-
01 Jan 2012, 16:21
Forum: Discussion
Topic: Heal only when no monsters around
Replies: 5
Views: 4437

Re: Heal only when no monsters around

Hey,

it's useful in my case because I'm telesearching on a map with strong aggro monsters. When I tele into a mob of them, I really don't want to aggro them when using heal.

Maybe there's something for a macro like:

Code: Select all

if hp < 80 % & MonsterCount (on screen) = 0 then
?
by -haseo-
31 Dec 2011, 13:55
Forum: Other OpenKore support
Topic: Compile problems under linux
Replies: 2
Views: 4590

Compile problems under linux

Hello, trying to run OK on a debian based machine and I'm having problems with that readline thingy. Here is the output when trying to run that readlinetest.c program: linux:/home/ok# gcc -c readlinetest.c readlinetest.c:1: error: expected '=', ',', ';', 'asm' or '__attribute__' before '<' token In ...
by -haseo-
29 Dec 2011, 12:02
Forum: Discussion
Topic: Heal only when no monsters around
Replies: 5
Views: 4437

Heal only when no monsters around

Hello,

I want to heal myself (skill) but only when no monsters are around.
useSelf_skill [<skill name>] {
smartEncore [<boolean flag>]

# Skill Use Conditions
# Self Conditions
}
Is there any conditions for this?