Search found 9 matches

by valsan
Sun Jan 27, 2013 2:42 pm
Forum: Runes of Magic
Topic: Keys out of space, then use Macro spaces???
Replies: 13
Views: 2496

Re: Keys out of space, then use Macro spaces???

It works!!!

thanks :)

and yes, i use spanish client
by valsan
Sun Jan 27, 2013 1:52 pm
Forum: Runes of Magic
Topic: Keys out of space, then use Macro spaces???
Replies: 13
Views: 2496

Re: Keys out of space, then use Macro spaces???

i will try this
by valsan
Sun Jan 27, 2013 12:10 pm
Forum: Runes of Magic
Topic: Keys out of space, then use Macro spaces???
Replies: 13
Views: 2496

Re: Keys out of space, then use Macro spaces???

uff i dont undertand :/ i get this output from the commands you give me: Command> for k,v in pairs(settings.profile.skills) do print(k,v.Name) end 1 PRIEST_SOUL_SOURCE 2 PRIEST_URGENT_HEAL 3 PRIEST_REGENERATE 4 PRIEST_FIGHTING_SPIRIT_COMBINATION 5 PRIEST_EXPLOSION_OF_FIGHTING_SPIRIT 6 PRIEST_ASCENDI...
by valsan
Sun Jan 27, 2013 9:24 am
Forum: Runes of Magic
Topic: Keys out of space, then use Macro spaces???
Replies: 13
Views: 2496

Re: Keys out of space, then use Macro spaces???

mmm... something strange... the debug msg never mention the explosion skill, is as if ignored: [DEBUG] PLAYERHASBUFF PRIEST_AMPLIFIED_ATTACK [DEBUG] PLAYERHASBUFF PRIEST_GRACE_OF_LIFE [DEBUG] NORAGEENERGYCONCEN PRIEST_CONDENSED_RAGE Use MACRO: PRIEST_BATTLE_MONK_S=> Hesp├®ride multicolor (20011/2001...
by valsan
Sun Jan 27, 2013 6:54 am
Forum: Runes of Magic
Topic: Keys out of space, then use Macro spaces???
Replies: 13
Views: 2496

Re: Keys out of space, then use Macro spaces???

PJ is buffed with battle monk stance. Fighting spirit combination and Ascending dragon (both also are battle monk stance skills) work corretly. The priority of the skill is correct because use buffs before atack. Then atack (full buffed), used Combination that enter cooldown, and pj stay waiting unt...
by valsan
Sun Jan 27, 2013 12:23 am
Forum: Runes of Magic
Topic: Keys out of space, then use Macro spaces???
Replies: 13
Views: 2496

Re: Keys out of space, then use Macro spaces???

Hi!! Im using this for my monk <skills_priest> <skill name="PRIEST_SOUL_SOURCE" hotkey="MACRO" priority="110" inbattle="true" hpper="15" /> <skill name="PRIEST_URGENT_HEAL" hotkey="MACRO" priority="100" hpper="50&qu...
by valsan
Thu Oct 11, 2012 11:02 pm
Forum: Runes of Magic
Topic: Help for complete script
Replies: 14
Views: 4044

Re: Help for complete script

Finnaly run!!

This is the code i used for it:

Code: Select all

local count = 0;
local item = guildbank:findItem(203402);

while ((30 > count) and (item)) do
item:moveTo("bags");
count = count + item.ItemCount
item = guildbank:findItem(203402);
yrest(2000)
end
by valsan
Thu Oct 11, 2012 7:55 am
Forum: Runes of Magic
Topic: Help for complete script
Replies: 14
Views: 4044

Re: Help for complete script

I also try with

Code: Select all

local count = 0;
local item = bank:findItem(203402) 
while ((count < 30) and (item)) do
item:moveTo("bags")
count = count + item.ItemCount;

item = bank:findItem(203402);
end
but not working, even using guildbank:findItem not workin...

any help or tip please?
by valsan
Wed Oct 10, 2012 4:49 pm
Forum: Runes of Magic
Topic: Help for complete script
Replies: 14
Views: 4044

Re: Help for complete script

Hi all! Im writing a waypoint to do the guild quest, basically i copy from this post but it dont run. The seccion of the error is when try to get item from the guild bank: player:target_NPC("112062"); yrest(6000) player:target_NPC("112062"); --open twice, in case anyone left open...