Re: The new Exp bug - need waypoint help
Posted: Mon Oct 01, 2012 1:08 am
Well, when you start "rom/getid" and point your mouse at it, what do you get?
MicroMacro home
https://www.solarstrike.net/phpBB3/
Code: Select all
player:target_NPC("111393");
Code: Select all
RoMScript("StaticPopup_OnClick(StaticPopup1, 1);")
Code: Select all
if waitForLoadingScreen(10) == false then
Do some other action if the loading screen fails to apear after 10s.
end
Code: Select all
<?xml version="1.0" encoding="utf-8"?><waypoints type="RUN">
<!-- # 1 --><waypoint x="5503" z="-4221" y="72" tag="accept">
player:target_NPC("Daris");
yrest(500)
AcceptQuestByName("Fortschrittsnotiz der Abenteurergilde");
repeat
yrest(750)
Boss = player:findNearestNameOrId("111393")
until Boss
player:target_Object("111393");
RoMScript("StaticPopup_OnClick(StaticPopup1, 1);");
waitForLoadingScreen()
</waypoint>
<!-- # 16 --><waypoint x="23" z="-73" y="84" tag="complete">
player:target_NPC("Laath Tawan");
yrest(500)
CompleteQuestByName("Fortschrittsnotiz der Abenteurergilde")
repeat
yrest(750)
Boss = player:findNearestNameOrId("111393")
until Boss
player:target_Object("111393");
RoMScript("StaticPopup_OnClick(StaticPopup1, 1);");
waitForLoadingScreen()
</waypoint>
</waypoints>
Is there a way to use this to switch to a third class? say picking the quest up on with main and secondary class lv 60/60+, and then wanting to deliver the quest on the third class, which is lower than 60?rock5 wrote:player:target_NPC("Class Administrator") yrest(1000)
ChoiceOptionByName("I want to switch my primary and secondary class.")
Code: Select all
RoMScript("ExchangeClass(5,6)")
Code: Select all
/script SendSystemChat(EXCHANGECLASS_MAINCLASS)
Keeps saying "Sorry, we can't find NPC Daris even though its right in front of my character's face?AlterEgo95 wrote:I've got a working script for portals, smetimes it gets stuck, if it targets the portal and then the portal disappears. But anyway, here it is:
You should only rename the Questname if you play in other languages than german.Code: Select all
<?xml version="1.0" encoding="utf-8"?><waypoints type="RUN"> <!-- # 1 --><waypoint x="5503" z="-4221" y="72" tag="accept"> player:target_NPC("Daris"); yrest(500) AcceptQuestByName("Fortschrittsnotiz der Abenteurergilde"); repeat yrest(750) Boss = player:findNearestNameOrId("111393") until Boss player:target_Object("111393"); RoMScript("StaticPopup_OnClick(StaticPopup1, 1);"); waitForLoadingScreen() </waypoint> <!-- # 16 --><waypoint x="23" z="-73" y="84" tag="complete"> player:target_NPC("Laath Tawan"); yrest(500) CompleteQuestByName("Fortschrittsnotiz der Abenteurergilde") repeat yrest(750) Boss = player:findNearestNameOrId("111393") until Boss player:target_Object("111393"); RoMScript("StaticPopup_OnClick(StaticPopup1, 1);"); waitForLoadingScreen() </waypoint> </waypoints>
Edit: I didn't see, that there was a second page, sry -.-
The reason is, that you have to load game (by either teleporting or other ways) on a level 60/60+ character, otherwise the quest wont shop up after deliveryrock5 wrote:Why can't you just do the quest as 60/lowerclass? I don't think there are any addons that help in switching 3 classes.
I just had a look. You can change it like this.
When you've selected the npc option and the Class Change dialog is showing, use this command.To change to Mage/Priest for example. So 5 is for Mage and 6 is for Priest.Code: Select all
RoMScript("ExchangeClass(5,6)")
I don't know all the class numbers. To see what the class numbers are, open the Class Change dialog, select a class as the primary class then enter this command in game chatThat will print the number of the class currently selected.Code: Select all
/script SendSystemChat(EXCHANGECLASS_MAINCLASS)
Have fun.