You are not logged in.

Applications: [GameMaster: OPEN] | [Volunteer Testers: OPEN]


This forum will be permanently shut down on Friday 13.07.2018
Please copy or save all important information from old forum before they will be deactivated
We have moved to new board. https://forum.runesofmagic.gameforge.com/Come join us.

  • "SuperiorFlash" started this thread

Posts: 45

Location: in my house

Occupation: something something dark side

Mood: Unsure

  • Send private message

1

Friday, August 17th 2012, 4:44am

Turn in Quest Macro

I be wondering if there is a macro for turning in quests. For example, Finish quest, Target Npc, Click macro and Tada! quest finish...that kind of macro. Thanks.
Term - 85/77/61 m/p/w
Guild - Silentjustice

tbaulksm

Beginner

Posts: 20

Location: Toronto, Ontario

  • Send private message

2

Friday, August 17th 2012, 5:38am

I'm not so great with tthe macro thing, but DailyNotes addon has an auto turnin feature on the daily quests.
Tikki, Altana Guild. Govinda
72 Warden/61 Scout/55Rogue

Noguai

Beginner

Posts: 5

Location: Germany

  • Send private message

3

Friday, August 17th 2012, 3:47pm

Source code

1
2
3
/script UseAction(1) --Actionslot where your attack skill is in
/script OnClick_QuestListButton(3, 1)
/script CompleteQuest()

Deltaninethc

Intermediate

Posts: 199

Location: Sin City

  • Send private message

4

Friday, August 17th 2012, 9:42pm

Source code

1
2
3
4
/script TargetUnit("focus1")
/script UseAction(1)
/script ChoiceOption(1)
/script TargetNearestEnemy()


This is, of course, after having set the quest NPC as your focus. You can also add the command you use for DIYCE at the end of the macro to automatically attack the mob as it becomes available. After having replaced the [name] with the name of your script, it would look something like:

Source code

1
2
3
4
5
/script TargetUnit("focus1")
/script UseAction(1)
/script ChoiceOption(1)
/script TargetNearestEnemy()
/run [name]()
Deltaninethc- 67/62/67 S/Wd/R(Osha)
Spokendeath- 72/62 M/P(Osha)

  • "SuperiorFlash" started this thread

Posts: 45

Location: in my house

Occupation: something something dark side

Mood: Unsure

  • Send private message

5

Saturday, August 18th 2012, 12:30am

Quoted from "Noguai;565100"

Source code

1
2
3
/script UseAction(1) --Actionslot where your attack skill is in
/script OnClick_QuestListButton(3, 1)
/script CompleteQuest()


This is what i was looking for. Thank you very much!
Term - 85/77/61 m/p/w
Guild - Silentjustice

Noguai

Beginner

Posts: 5

Location: Germany

  • Send private message

6

Saturday, August 18th 2012, 12:37am

You're welcome :)

BTW: Is there anything else like this? Looked in some Translators, but it's always the same:
Gern geschehen -> You're welcome
Nichts zu danken -> You're welcome
Keine Ursache -> You're welcome / Do not mention it
Bitteschön -> You're welcome
Bitte sehr -> You're welcome
Just to know something else...

  • "SuperiorFlash" started this thread

Posts: 45

Location: in my house

Occupation: something something dark side

Mood: Unsure

  • Send private message

7

Sunday, August 19th 2012, 12:36am

Quoted from "Noguai;565186"

You're welcome :)

BTW: Is there anything else like this? Looked in some Translators, but it's always the same:
Gern geschehen -> You're welcome
Nichts zu danken -> You're welcome
Keine Ursache -> You're welcome / Do not mention it
Bitteschön -> You're welcome
Bitte sehr -> You're welcome
Just to know something else...


yes. In chinese mandarin
不用谢 ---> You're Welcome or literally means no need for thanks

Quoted from "Deltaninethc;565165"

[code]/script TargetUnit("focus1")
/script UseAction(1)
/script ChoiceOption(1)
/script TargetNearestEnemy()

will this work for all quests? since it only picks the first option.
Term - 85/77/61 m/p/w
Guild - Silentjustice

Noguai

Beginner

Posts: 5

Location: Germany

  • Send private message

8

Sunday, August 19th 2012, 1:23am

That's not the thing I meant. :D I'm searching for a english synonym for "You're welcome".
I asked because I've noticed that I'm using always the same phrase.

I'm not sure whether ChoiceOption() activates the quest dialog at all.
If it does not work you could combine both macros.

EDIT: Damn it, I totaly misunderstood the point of his macro. This macro is used to talk to the NPC and activate the respawn of that one mob for the daily quest "exhibition fight" or however it's called in english clients. (german: "Schaukampf") So use this after you have accepted that quest and use mine to complete it.