I don't believe they do. But you can always check runesdatabase.com to be sure.grande wrote:I've been thinking to go back and do some quests in lower level zones to get titles. Do any of these quest lines generate titles?
Search found 8 matches
- Sat Nov 24, 2012 10:14 pm
- Forum: Userfunctions, waypoint scripts, etc.
- Topic: Silverspring Quests
- Replies: 8
- Views: 4024
Re: Silverspring Quests
- Sat Nov 24, 2012 2:41 am
- Forum: Userfunctions, waypoint scripts, etc.
- Topic: Silverspring Quests
- Replies: 8
- Views: 4024
Re: Silverspring Quests
I got a question. I assume there is a way to target an enemy npc and move to it without attacking it, I haven't figured out how yet. Got any suggestion?
Came across a quest where I have to stand pretty much inside a mob and use an item.
Came across a quest where I have to stand pretty much inside a mob and use an item.
- Sat Nov 24, 2012 2:32 am
- Forum: Userfunctions, waypoint scripts, etc.
- Topic: Silverspring Quests
- Replies: 8
- Views: 4024
Re: Silverspring Quests
I see you had some merchant code. You've commented it out but I think you will still get an error from the '<' symbol. You can't use '<' in xml files because it gets interpreted as the beginning of an xml tag. Whenever you want to use '<' you can flip it around. xml has no trouble with '>'. So
if ...
if ...
- Sat Nov 24, 2012 1:32 am
- Forum: Userfunctions, waypoint scripts, etc.
- Topic: Silverspring Quests
- Replies: 8
- Views: 4024
Re: Silverspring Quests
Thanks for the tips Rock. I really appreciate it!
I made the changes to the code that you suggested and re-uploaded them
Since you like the coding and the format I'm gonna continue with some more quests.
Thanks again.
I made the changes to the code that you suggested and re-uploaded them
Since you like the coding and the format I'm gonna continue with some more quests.
Thanks again.
- Fri Nov 23, 2012 11:18 pm
- Forum: Userfunctions, waypoint scripts, etc.
- Topic: Silverspring Quests
- Replies: 8
- Views: 4024
Silverspring Quests
Hello!
I started doing some quests for the bot in Silverspring.
I've got few quests finished so far and would like some feedback/tips for improvment.
The quests are:
[19] Amends
[19] Swindler's Request
[20] Nightmare
[20] Dreamland Crystal
[20] Ancient Dreamland (Hard)
Other features:
Level 17 ...
I started doing some quests for the bot in Silverspring.
I've got few quests finished so far and would like some feedback/tips for improvment.
The quests are:
[19] Amends
[19] Swindler's Request
[20] Nightmare
[20] Dreamland Crystal
[20] Ancient Dreamland (Hard)
Other features:
Level 17 ...
- Sun Nov 18, 2012 12:46 pm
- Forum: Runes of Magic
- Topic: [Waypoint] Daily quest waypoint (help needed)
- Replies: 4
- Views: 1602
Re: [Waypoint] Daily quest waypoint (help needed)
quick question. Will the code inside a waypoint run when the bot reaches the coordinates or when the waypoint is initiated?
- Sun Nov 18, 2012 12:05 pm
- Forum: Runes of Magic
- Topic: [Waypoint] Daily quest waypoint (help needed)
- Replies: 4
- Views: 1602
Re: [Waypoint] Daily quest waypoint (help needed)
This
qStatus = getQuestStatus(dq);
if qStatus == "complete" then
__WPL:setWaypointIndex(1);
end basically does nothing. Because it's the last waypoint, it's going to go to waypoint 1 regardless.
Did you want it to stay at waypoint 3 until the quest is complete? Then you could do
qStatus ...
qStatus = getQuestStatus(dq);
if qStatus == "complete" then
__WPL:setWaypointIndex(1);
end basically does nothing. Because it's the last waypoint, it's going to go to waypoint 1 regardless.
Did you want it to stay at waypoint 3 until the quest is complete? Then you could do
qStatus ...
- Sun Nov 18, 2012 11:38 am
- Forum: Runes of Magic
- Topic: [Waypoint] Daily quest waypoint (help needed)
- Replies: 4
- Views: 1602
[Waypoint] Daily quest waypoint (help needed)
Hello!
I'm new to MicroMacro and lua and I just started to learn yesterday.
I've searched and searched the forums to help me understand the code etc.
I have a problem with the waypoint I created for a daily quest.
The bot runs fine but it never turn in the quest (except if I have it completed when ...
I'm new to MicroMacro and lua and I just started to learn yesterday.
I've searched and searched the forums to help me understand the code etc.
I have a problem with the waypoint I created for a daily quest.
The bot runs fine but it never turn in the quest (except if I have it completed when ...