Page 1 of 1

Entrance to IDK 50

Posted: Sun Oct 19, 2014 9:05 pm
by spyfromsiochain
Hi guys, long time no see.

I have a simple question I think:

I would like to make a waypoint to explore IDK 50, but I cant even pass the entrance prompt (plz see attachment).

ty

Re: Entrance to IDK 50

Posted: Sun Oct 19, 2014 10:21 pm
by rock5
If it's a static popup then there are 2 commands I know that basically does the same thing

Code: Select all

StaticPopup_OnClick(StaticPopup1, 1)
StaticPopup_EnterPressed(StaticPopup1)

Re: Entrance to IDK 50

Posted: Fri Oct 24, 2014 11:14 am
by spyfromsiochain

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints>
	<!-- #  1 --><waypoint x="-20407" z="-21168" y="1035"	tag="start">
    SlashCommand("ILG inv"); 
	if (not player:hasBuff("506686")) then
    inventory:useItem(207202); 
	end	</waypoint>
	<!-- #  2 --><waypoint x="-20347" z="-21185" y="1037">	SlashCommand("ILG inv");</waypoint>
	<!-- #  3 --><waypoint x="-20311" z="-21242" y="1039">	StaticPopup_EnterPressed(StaticPopup1);</waypoint>
	<!-- #  4 --><waypoint x="4326" z="2548" y="228">	</waypoint>
	<!-- #  5 --><waypoint x="4407" z="2554" y="228">	</waypoint>
Doesn't work... what I am doing wrong?

StaticPopup_OnClick(StaticPopup1, 1)
StaticPopup_EnterPressed(StaticPopup1)

Neither one worked...

Regards

Re: Entrance to IDK 50

Posted: Fri Oct 24, 2014 11:24 am
by rock5
Then my guess is it isn't a static popup frame.

If it was me, I would use LuaExplorer addon http://rom.curseforge.com/addons/luaexplorer/ to figure out what frame it is. Just start it up and go to the second tab which shows the visible frames. Then just go through the list and see if I can figure out which frame it is. Do you think you could do that?

Re: Entrance to IDK 50

Posted: Sun Oct 26, 2014 1:48 am
by ZZZZZ
I had a waypoint for spaming IDK when the PoM event was on. I just used this and it worked fine for me (to enter IDK 35).

Code: Select all

	<!-- #  1 --><waypoint x="-20295" z="-21239" y="1039">
			repeat	
				yrest(200);	
			until RoMScript("StaticPopup1:IsVisible()")
			RoMScript("StaticPopup_OnClick(StaticPopup1, 2);")
			waitForLoadingScreen();
			fly()
	</waypoint>