Energy of Justice easily earned

Talk about anything in Runes of Magic. This does not need to pertain to botting.
Message
Author
ElfonFire
Posts: 4
Joined: Mon Nov 11, 2013 5:47 am

Energy of Justice easily earned

#1 Post by ElfonFire » Wed Nov 13, 2013 5:57 am

Hallo everyone,

I just registered to this Forum and want to thank for all the waypoints and scripts people are uploading here.

There was leaked an easy way of earning Energy of Justice in the German Forum last weak, and because I didn't find anything about it here I want to share the method.

Do you know the NPC Pap Hessof in Chrysalia? Well he has two Public Quests: Unbekannte Entscheidung and Finale Analyse (translation is unknown decission and final analysis)
If you do the first quest manually you get an Item in the backpack. Now you can return the quest and get 100 points. Then you take the next quest, final analysis, but do not finish it.
If you take the quest and give it up, you get the item for unknown decission again to your backpack, and can finish unknown decission again and so on..

So the logic, once you did it manually is,
-take quest final analysis
-abandon quest
-take quest unknown decission
-finis quest unknown decission

With this routine you can just stand at the NPC and finish all 6000 points alone in a few minutes.

Remember officials allready know about it and it could be considered as exploiting.

Aron
Posts: 39
Joined: Tue Feb 19, 2013 10:30 am

Re: Energy of Justice easily earned

#2 Post by Aron » Thu Nov 14, 2013 6:18 pm

tried it and seems its fixed already

i1own0u
Posts: 32
Joined: Mon Mar 19, 2012 6:32 pm

Re: Energy of Justice easily earned

#3 Post by i1own0u » Sat Nov 16, 2013 5:02 pm

it's not fixed, yet.

macro can be made ingame, needs to happen kinda like this though (i don't have anything decent enough to post, its just daily notes and /cast attacks..)

1.) acceptquest(unknown energy) -- Has to be EoJ version
2.) acceptquest(final analysis) -- Pretyt sure there is only eoj version
3.) completequest(unknown energy)
4.) deletequest(final analysis)

step 4 is retarded though. the macro ingame is to deletequest(ID) but regardless of ID, it seems to delete whatever freakin quest it wants.

User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Energy of Justice easily earned

#4 Post by rock5 » Sun Nov 17, 2013 5:46 am

Try DeleteQuestByID(). It seems to be more reliable.
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan

CodeV
Posts: 1
Joined: Thu Nov 21, 2013 6:47 am

Re: Energy of Justice easily earned

#5 Post by CodeV » Thu Nov 21, 2013 6:58 am

By the way I think this leaked because of me. I discovered this option in the first day Chrysalia came out already. And used this a bit time-to-time to collect some EOJ. Two weeks ago two guys asked how I collect EOJ and I talked about it kindly. I play in German server. And shortly after that I heard a rumor there is some kind of forum post, anyone has link to this or is this topic removed?
Game feature in my opinion not an explotation :)
By the way at first those quests were quite useless. If other Chrysalia quests was not nerfed and others were running those this +100 points every time gave 6th or 7th place.

Braziliano
Posts: 82
Joined: Fri Apr 19, 2013 2:36 pm

Re: Energy of Justice easily earned

#6 Post by Braziliano » Thu Nov 21, 2013 9:30 am

If u got the quest unlocked for the EOJ event etc..
This is what i did to farm

Image

Make sure you do your daily's Green = OK.


---------------
write your 2 macro's

~ Macro 1 (Quest) ~

/script TargetUnit("focus1");
/script UseAction(1);
/script OnClick_QuestListButton(1,1);
/script AcceptQuest();
/script OnClick_QuestListButton(2,1);
/script CompleteQuest();

~ Macro 2 (Delete) ~

/Run DeleteQuest(425597)
/Wait 0.6
/Run DeleteQuest(425598)

---------------
Then place them on your hotkey bar like this..
Image
---------------

If u got Daily notes , MAKE sure u tick on the eoj events '' Final Analysis & Unknown Energy ''
Put the NPC on FOCUS!
And last but not least , before u start the XML script .. acept the quests before hand.
Image


have fun!
Attachments
Eoj macro.xml
(496 Bytes) Downloaded 469 times

ZZZZZ
Posts: 513
Joined: Sun Oct 21, 2012 1:42 am

Re: Energy of Justice easily earned

#7 Post by ZZZZZ » Mon Dec 09, 2013 9:26 pm

Or instead of 2 macro's, you can just use this:

Code: Select all

	<onLoad>	
function EOJCrysalia()
			player:target_NPC(120273) -- Papp Hesof
			RoMScript("DeleteQuestByID(425598)");
			EOJCrysalia()
		end	
</onLoad>
Using DailyNotes of course.

crazzy
Posts: 35
Joined: Sun Feb 17, 2013 4:47 am

Re: Energy of Justice easily earned

#8 Post by crazzy » Tue Dec 10, 2013 6:21 am

hyhy ZZ,

do you mean instead of both macros or do you mean to implement your code to the existing .xml?
how does it work for you? maybe you can pm me with your woking files? thanks bro^^

craZZy

ZZZZZ
Posts: 513
Joined: Sun Oct 21, 2012 1:42 am

Re: Energy of Justice easily earned

#9 Post by ZZZZZ » Tue Dec 10, 2013 8:37 am

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints type="TRAVEL">
<onLoad>
	YourTargetScore = 6000
	
    function waitForEventStart()
      repeat
         yrest(1000) -- check every second
         local namePE,messagePE,namePH,ScorePE,Count , IsScoreVisible= RoMScript("PE_GetInfo(1)")
         if Count == 2 and YourTargetScore > ScorePE then break end
      until false
   end

		function EOJCrysalia()
			waitForEventStart()
			player:target_NPC(120273) -- Papp Hesof
			RoMScript("DeleteQuestByID(425598)");
			EOJCrysalia()
		end	
</onLoad>
	<!-- #  1 --><waypoint x="-9407" z="-18349" y="945">
			player:target(120273) -- Papp Hesof
			EOJCrysalia()
	</waypoint>
</waypoints>
That's what i used.

Aron
Posts: 39
Joined: Tue Feb 19, 2013 10:30 am

Re: Energy of Justice easily earned

#10 Post by Aron » Mon Dec 16, 2013 7:53 pm

i tried ur script but my bot stands still at the npc and doing nothing, is there a userfunction i need or what are the requirements i need for it?

User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Energy of Justice easily earned

#11 Post by rock5 » Mon Dec 16, 2013 11:28 pm

I'm no expert on public events or this bug but I think I see 2 problems with the waitForEventStart function.
  • 1. It uses PE_GetInfo(1) to get the event status. From what I understand this only works if the PE frame is showing in the game. Users have reported that it sometimes doesn't show or only shows on certain channels. I believe the only reliable way to wait for the event start is to wait for the messages which always show. This comes up a lot. Maybe I should create a waitForEventStart userfunction.

    2. I don't know why but it checks your target score while waiting for the event to start. I don't see how your score can change if you are waiting, unless you are doing the event manually.
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan

User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Energy of Justice easily earned

#12 Post by rock5 » Tue Dec 17, 2013 1:09 am

I had a think about it and I see the point for the score check in the waiting for event function. If you have already reached your target score then it continues to wait until the end of the event.
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan

kuripot
Posts: 493
Joined: Mon Nov 07, 2011 9:14 pm

Re: Energy of Justice easily earned

#13 Post by kuripot » Mon Dec 23, 2013 5:50 pm

ZZZZZ wrote:

Code: Select all

<?xml version="1.0" encoding="utf-8"?><waypoints type="TRAVEL">
<onLoad>
	YourTargetScore = 6000
	
    function waitForEventStart()
      repeat
         yrest(1000) -- check every second
         local namePE,messagePE,namePH,ScorePE,Count , IsScoreVisible= RoMScript("PE_GetInfo(1)")
         if Count == 2 and YourTargetScore > ScorePE then break end
      until false
   end

		function EOJCrysalia()
			waitForEventStart()
			player:target_NPC(120273) -- Papp Hesof
			RoMScript("DeleteQuestByID(425598)");
			EOJCrysalia()
		end	
</onLoad>
	<!-- #  1 --><waypoint x="-9407" z="-18349" y="945">
			player:target(120273) -- Papp Hesof
			EOJCrysalia()
	</waypoint>
</waypoints>
That's what i used.


why it's not work to me.. just stamding on npc.. doing nothing

crazzy
Posts: 35
Joined: Sun Feb 17, 2013 4:47 am

Re: Energy of Justice easily earned

#14 Post by crazzy » Sat Dec 28, 2013 10:46 am

hey guys,

the xml doesn´t for work for me either..! just stands there and do nothing

is there any working wp file?

bb crazzzzzyyy

ZZZZZ
Posts: 513
Joined: Sun Oct 21, 2012 1:42 am

Re: Energy of Justice easily earned

#15 Post by ZZZZZ » Mon Dec 30, 2013 3:41 am

It probably doesn't work for you because as I said 2 posts before the code I posted, I use the Addon Daily Notes, aka, you need both quests ticked in the Auto accept/complete option for it to work.

If you want to do it without daily notes then add the quest commands into the function. (AcceptQuestByName("xxx") and CompleteQuestByName("xxxxx")).

I only posted that version because that's all i use and its an option for those that use Daily Notes.

883Dman
Posts: 90
Joined: Sat Dec 08, 2012 9:25 pm

Re: Energy of Justice easily earned

#16 Post by 883Dman » Tue Dec 31, 2013 7:17 pm

It doesn't list unknown energy for me. Possibly i haven't unlocked it (unlikely) or they killed it.

ZZZZZ
Posts: 513
Joined: Sun Oct 21, 2012 1:42 am

Re: Energy of Justice easily earned

#17 Post by ZZZZZ » Wed Jan 01, 2014 1:25 am

I havn't been able to do this on Nexon server if that is where you are.

whiskerbiscuit
Posts: 5
Joined: Wed Jan 01, 2014 7:23 pm

Re: Energy of Justice easily earned

#18 Post by whiskerbiscuit » Wed Jan 01, 2014 7:31 pm

Your can farm these easily without a bot or a complicated macro. Works best with a keyboard that is able to macro.

I use a Logitec g19 and macro'ed the following so all I have to do is essentially target him and hold the button down (or tape a pencil to my desk pressing the button down) No mouse clicks etc.. involved. Click to move MUST be turned on.

Macro
/cast Attack
/wait .2
/cast Attack
/wait .2
/cast Attack
/wait .2
/cast Attack
/wait .2
/run DeleteQuestByID(425598);
/wait .2
/run DeleteQuestByID(425601);
/wait .2
/run DeleteQuestByID(425616);
/wait .2
/run DeleteQuestByID(425602);

Place the macro somewhere on your action bar then macro that action to your keyboard. Granted this does not switch channels so you farm one single channel. About 2 hours I was able to get a little over 1500 EOJ's.

User avatar
rock5
Posts: 12173
Joined: Tue Jan 05, 2010 3:30 am
Location: Australia

Re: Energy of Justice easily earned

#19 Post by rock5 » Thu Jan 02, 2014 8:50 am

Of course that would mean the game would have to remain open and active and you can't use the computer for anything else while it's going.
  • Please consider making a small donation to me to support my continued contributions to the bot and this forum. Thank you. Donate
  • I check all posts before reading PMs. So if you want a fast reply, don't PM me but post a topic instead. PM me for private or personal topics only.
  • How to: copy and paste in micromacro
    ________________________
    Quote:
    • “They say hard work never hurt anybody, but I figure, why take the chance.”
          • Ronald Reagan

whiskerbiscuit
Posts: 5
Joined: Wed Jan 01, 2014 7:23 pm

Re: Energy of Justice easily earned

#20 Post by whiskerbiscuit » Thu Jan 02, 2014 5:07 pm

rock5 wrote:Of course that would mean the game would have to remain open and active and you can't use the computer for anything else while it's going.
True but I only run it while asleep or at work so it works perfectly for me or others in the same situation

Post Reply

Who is online

Users browsing this forum: No registered users and 1 guest