Search found 25 matches
- Tue Nov 15, 2016 3:02 pm
- Forum: Runes of Magic
- Topic: Is there any guide about creating addon?
- Replies: 1
- Views: 2486
Re: Is there any guide about creating addon?
still need help
- Tue Nov 08, 2016 2:30 pm
- Forum: Runes of Magic
- Topic: Is there any guide about creating addon?
- Replies: 1
- Views: 2486
Is there any guide about creating addon?
I just tried to write a basic addon but it doesn't work.
FightInfo.lua
local FightInfo = {
name = "FightInfo",
version = "1.0",
author = "blabla",
};
SLASH_FightInfo1 = "/fi";
SlashCmdList["FightInfo"] = function(editBox, msg)
if string.lower(msg) == "attack" then
DEFAULT_CHAT_FRAME ...
FightInfo.lua
local FightInfo = {
name = "FightInfo",
version = "1.0",
author = "blabla",
};
SLASH_FightInfo1 = "/fi";
SlashCmdList["FightInfo"] = function(editBox, msg)
if string.lower(msg) == "attack" then
DEFAULT_CHAT_FRAME ...
- Tue Nov 01, 2016 1:01 am
- Forum: Runes of Magic
- Topic: [SOLVED] Start RoMBot with specific waypoint via batch file
- Replies: 6
- Views: 6292
Re: Start RoMBot with specific waypoint via batch file
Not working. I tried this as well.
character = character:gsub("%ß", "\225")
but this doesn't working also.
EDIT:
if string.find(character, "part of char name") then
character = "-part of char name-\225"
end
if string.find(character, "part of char name") then
character = "-part of char name ...
character = character:gsub("%ß", "\225")
but this doesn't working also.
EDIT:
if string.find(character, "part of char name") then
character = "-part of char name-\225"
end
if string.find(character, "part of char name") then
character = "-part of char name ...
- Sun Oct 30, 2016 10:13 am
- Forum: Runes of Magic
- Topic: [SOLVED] Need help in my function...
- Replies: 0
- Views: 10832
[SOLVED] Need help in my function...
function setRaidPos(num)
for i = 1, 36 do
name = GetPartyMemberName(i)
if name == player.Name then
RoMScript("MoveRaidMember(i, num)")
break;
end
end
end
I can't understand why it doesn't work. Also when I trying to check that on waypoint's onLoad phase, it saying (number expected, got nil ...
for i = 1, 36 do
name = GetPartyMemberName(i)
if name == player.Name then
RoMScript("MoveRaidMember(i, num)")
break;
end
end
end
I can't understand why it doesn't work. Also when I trying to check that on waypoint's onLoad phase, it saying (number expected, got nil ...
- Thu Oct 27, 2016 2:01 pm
- Forum: Runes of Magic
- Topic: has anyone figured way to change mirror buffs in waypoint?
- Replies: 3
- Views: 4149
Re: has anyone figured way to change mirror buffs in waypoint?
Just download CenedrilHelper addon and use that
/run CenedrilHelper.UseComboSkill(1,54)
/wait 0.35
/run CenedrilHelper.UseComboSkill(1,54)
54 is position of cenedril spell on your skillbar and 1 is type of it.
1 = pdam
2 = mdam
3 = heal
You must type "/run CenedrilHelper.UseComboSkill(1,54 ...
/run CenedrilHelper.UseComboSkill(1,54)
/wait 0.35
/run CenedrilHelper.UseComboSkill(1,54)
54 is position of cenedril spell on your skillbar and 1 is type of it.
1 = pdam
2 = mdam
3 = heal
You must type "/run CenedrilHelper.UseComboSkill(1,54 ...
- Thu Oct 27, 2016 1:47 pm
- Forum: Runes of Magic
- Topic: [SOLVED] Auto click on Transport Portal
- Replies: 0
- Views: 10694
[SOLVED] Auto click on Transport Portal
I need code for entering portal that I opened.
"Transport portal opened by <character name>" is it. It isn't on database I checked as "Transport portal" and tried all NPC Ids but findNearestNameOrId function couldn't find anything. Can I enter portal that created by transport portal rune via ...
"Transport portal opened by <character name>" is it. It isn't on database I checked as "Transport portal" and tried all NPC Ids but findNearestNameOrId function couldn't find anything. Can I enter portal that created by transport portal rune via ...
- Sun Oct 23, 2016 5:20 pm
- Forum: Runes of Magic
- Topic: [SOLVED] Checking Party Members health without targething them.
- Replies: 4
- Views: 4379
Re: Checking Party Members health without targething them.
Thanks, its working.
- Sun Oct 23, 2016 7:51 am
- Forum: Runes of Magic
- Topic: [SOLVED] Checking Party Members health without targething them.
- Replies: 4
- Views: 4379
Re: Checking Party Members health without targething them.
player:findNearestNameOrId(name) returning true if it exists or returning a value that non checkable value then i think we can't check players identification with that function. so your code returning nil always :S still need help
- Sun Oct 23, 2016 7:08 am
- Forum: Runes of Magic
- Topic: [SOLVED] Optimisation Problem in Code
- Replies: 3
- Views: 4761
Re: Optimisation Problem in Code
function checkTankHP()
local MEFcd = getCD(493529)
getTank();
raidTank = player:getTarget();
if (raidTank.HP < raidTank.MaxHP/100*50) and raidTank.HP > 1 then
if MEFcd == 0 then
player:cast("DRUID_MOTHER_EARTHS_FOUNTAIN")
else
getTank(target);
player:cast("DRUID_MOTHER_EARTHS_PROTECTION ...
local MEFcd = getCD(493529)
getTank();
raidTank = player:getTarget();
if (raidTank.HP < raidTank.MaxHP/100*50) and raidTank.HP > 1 then
if MEFcd == 0 then
player:cast("DRUID_MOTHER_EARTHS_FOUNTAIN")
else
getTank(target);
player:cast("DRUID_MOTHER_EARTHS_PROTECTION ...
- Sat Oct 15, 2016 8:23 am
- Forum: Runes of Magic
- Topic: [SOLVED] Optimisation Problem in Code
- Replies: 3
- Views: 4761
[SOLVED] Optimisation Problem in Code
repeat
print('Active.')
checkChat();
if swapCheck == true then
print('Battle Mode!')
RoMScript("TargetUnit('raid1target');");
target = player:getTarget();
followTank();
MScd = getCD(493546)
PScd = getCD(493545)
FTcd = getCD(495174)
if FTcd == 0 then
RoMScript("MoveRaidMember(9, 6 ...
print('Active.')
checkChat();
if swapCheck == true then
print('Battle Mode!')
RoMScript("TargetUnit('raid1target');");
target = player:getTarget();
followTank();
MScd = getCD(493546)
PScd = getCD(493545)
FTcd = getCD(495174)
if FTcd == 0 then
RoMScript("MoveRaidMember(9, 6 ...
- Sat Oct 08, 2016 10:17 am
- Forum: Runes of Magic
- Topic: [SOLVED] Monitor Party Chat Twice
- Replies: 4
- Views: 4905
Re: [REQUEST] Monitor Party Chat Twice
Unfortunately, I got that code from another topic and it was working with "checkeventparty" function. But when I put second checker, whole waypoint only running second wrote function. But I checked inside of that function, now its working.
- Sat Oct 08, 2016 4:28 am
- Forum: Runes of Magic
- Topic: [SOLVED] Monitor Party Chat Twice
- Replies: 4
- Views: 4905
Re: [REQUEST] Monitor Party Chat Twice
Its defined on party.lua. Nevermind problem solved.
EventMonitorStart("check", "CHAT_MSG_PARTY")
EventMonitorStart("check2", "CHAT_MSG_PARTY")
time, moreToCome, name, message = EventMonitorCheck("check","4,1",true)
time, moreToCome, name2, message2 = EventMonitorCheck("check2","4,1",true ...
EventMonitorStart("check", "CHAT_MSG_PARTY")
EventMonitorStart("check2", "CHAT_MSG_PARTY")
time, moreToCome, name, message = EventMonitorCheck("check","4,1",true)
time, moreToCome, name2, message2 = EventMonitorCheck("check2","4,1",true ...
- Fri Oct 07, 2016 6:45 pm
- Forum: Runes of Magic
- Topic: [SOLVED] Checking Party Members health without targething them.
- Replies: 4
- Views: 4379
[SOLVED] Checking Party Members health without targething them.
My problem is exactly same with title. For additional, I need to use spells on them without targeting them as well. Thanks in advance.
- Fri Oct 07, 2016 1:22 pm
- Forum: Runes of Magic
- Topic: [SOLVED] Start RoMBot with specific waypoint via batch file
- Replies: 6
- Views: 6292
Re: Start RoMBot with specific waypoint via batch file
It isn't asking path name. Only asking my character name that including "ß". My parameters like that :
START ../micromacro.exe "%~dp0/bot.lua" profile:..ss.. path:realsup\..ss.. char:..ß..
or
START ../micromacro.exe "%~dp0/bot.lua" profile:..ss.. path:realsup\..ss.. char:..ss..
It is always ...
START ../micromacro.exe "%~dp0/bot.lua" profile:..ss.. path:realsup\..ss.. char:..ß..
or
START ../micromacro.exe "%~dp0/bot.lua" profile:..ss.. path:realsup\..ss.. char:..ss..
It is always ...
- Fri Oct 07, 2016 8:04 am
- Forum: Runes of Magic
- Topic: [SOLVED] Monitor Party Chat Twice
- Replies: 4
- Views: 4905
[SOLVED] Monitor Party Chat Twice
Here is my waypoint file. I need multi-monitoring party chat but its working random, I mean when I write "buff" it doesn't working but if i spam that it working sometimes.I need multithread method I don't know much about that so I tried it with writing a function for that. Still same. I need a code ...
- Tue Oct 04, 2016 10:15 am
- Forum: Runes of Magic
- Topic: [SOLVED] Start RoMBot with specific waypoint via batch file
- Replies: 6
- Views: 6292
Re: Start RoMBot with specific waypoint via batch file
My characters name contains "ß" so micromacro taking it as "ss" when checking profile but it always asking me when I executing path with batch. Any way to prevent that ? I tried as char:...ss... and char:...ß... but always asking. Other characters are working good.
- Sun Oct 02, 2016 2:41 pm
- Forum: Runes of Magic
- Topic: [SOLVED] Start RoMBot with specific waypoint via batch file
- Replies: 6
- Views: 6292
[SOLVED] Start RoMBot with specific waypoint via batch file
I need start bot with a waypoint that I chose with only batch file. So I click on batch and bot starts the waypoint file.
- Sun Oct 02, 2016 11:43 am
- Forum: Runes of Magic
- Topic: [SOLVED] Checking Target' Target
- Replies: 1
- Views: 2564
[SOLVED] Checking Target' Target
How can I check existence of targets target ?
- Sun Oct 02, 2016 11:27 am
- Forum: Runes of Magic
- Topic: [SOLVED] Checking Party Chat for Action
- Replies: 1
- Views: 2074
[SOLVED] Checking Party Chat for Action
How can I check party chat? For Instance, if "x" player send "go" in party chat, micromacro user will use "y" buff. I need help about it.
- Sat Oct 01, 2016 11:12 am
- Forum: Runes of Magic
- Topic: [SOLVED] Need Info About "findEnemy"
- Replies: 2
- Views: 3254