Page 1 of 3

Energy of Justice easily earned

Posted: Wed Nov 13, 2013 5:57 am
by ElfonFire
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.

Re: Energy of Justice easily earned

Posted: Thu Nov 14, 2013 6:18 pm
by Aron
tried it and seems its fixed already

Re: Energy of Justice easily earned

Posted: Sat Nov 16, 2013 5:02 pm
by i1own0u
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.

Re: Energy of Justice easily earned

Posted: Sun Nov 17, 2013 5:46 am
by rock5
Try DeleteQuestByID(). It seems to be more reliable.

Re: Energy of Justice easily earned

Posted: Thu Nov 21, 2013 6:58 am
by CodeV
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.

Re: Energy of Justice easily earned

Posted: Thu Nov 21, 2013 9:30 am
by Braziliano
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!

Re: Energy of Justice easily earned

Posted: Mon Dec 09, 2013 9:26 pm
by ZZZZZ
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.

Re: Energy of Justice easily earned

Posted: Tue Dec 10, 2013 6:21 am
by crazzy
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

Re: Energy of Justice easily earned

Posted: Tue Dec 10, 2013 8:37 am
by ZZZZZ

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.

Re: Energy of Justice easily earned

Posted: Mon Dec 16, 2013 7:53 pm
by Aron
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?

Re: Energy of Justice easily earned

Posted: Mon Dec 16, 2013 11:28 pm
by rock5
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.

Re: Energy of Justice easily earned

Posted: Tue Dec 17, 2013 1:09 am
by rock5
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.

Re: Energy of Justice easily earned

Posted: Mon Dec 23, 2013 5:50 pm
by kuripot
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

Re: Energy of Justice easily earned

Posted: Sat Dec 28, 2013 10:46 am
by crazzy
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

Re: Energy of Justice easily earned

Posted: Mon Dec 30, 2013 3:41 am
by ZZZZZ
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.

Re: Energy of Justice easily earned

Posted: Tue Dec 31, 2013 7:17 pm
by 883Dman
It doesn't list unknown energy for me. Possibly i haven't unlocked it (unlikely) or they killed it.

Re: Energy of Justice easily earned

Posted: Wed Jan 01, 2014 1:25 am
by ZZZZZ
I havn't been able to do this on Nexon server if that is where you are.

Re: Energy of Justice easily earned

Posted: Wed Jan 01, 2014 7:31 pm
by whiskerbiscuit
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.

Re: Energy of Justice easily earned

Posted: Thu Jan 02, 2014 8:50 am
by rock5
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.

Re: Energy of Justice easily earned

Posted: Thu Jan 02, 2014 5:07 pm
by whiskerbiscuit
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