Page 1 of 2 12 LastLast
Results 1 to 15 of 23
  1. #1
    antifoo's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Posts
    80
    Reputation
    10
    Thanks
    2,206

    Thumbs up Dragon Nest Auto Priority 0.1


    See the priority column. Note that the priority is low (4) for two of the inactive dragon nest processes, while the active one has normal priority (8).

    Description:
    Lowers the process priority of all Drogon Nest instances except the focused one.
    This could make multiclient smoother for you.

    Only useful if you use some multiclient patch (will not work with VM or sandbox MC).
    Only tested with the SEA version of Dragon Nest, don't know if it will work with any other.

    Instructions:
    Run the attached application, it will adjust the priorities automatically.
    Exit it by right clicking its icon in the tray.

    Note that you need to disable GPK or any other antihacking rootkit used to hide the game.
    You could do that with my GPK fix (still works with SEA v65): https://www.mpgh.net/forum/487-dragon...kit-patch.html
    This is usually included in your multiclient patch.

    Scans:


    Source:
    This is a simple AHK script compiled to .exe. Below is the AHK source.
    If you have AHK you can run this code directly.
    Just put it in a file called something like "Dragon.Nest.Auto.Priority.0.1-antifoo.ahk" and run it.

    Code:
    app_name	= Dragon Nest Auto Priority
    app_version	= 0.1
    app_date	= 2012-07-09
    app_author	= antifoo, hx.hq*****
    app_desc	= Lowers the priority of all Dragon Nest game instances except the active one.
    
    #SingleInstance force
    #NoEnv
    
    SetWorkingDir %A_ScriptDir%
    Process, priority, , High
    
    
    main(){
    	global
    	
    	Menu, tray, add, %app_name% %app_version%, tray_menu_about
    	Menu, tray, add, Check for &Updates, tray_menu_link
    	Menu, tray, add, &About, tray_menu_about
    	Menu, tray, add
    	Menu, tray, add, E&xit, tray_menu_quit
    
    	Menu, tray, default, %app_name% %app_version%
    	Menu, tray, NoStandard
    
    	Menu, tray, tip, %app_name%
    	
    
    	Loop
    	{
    		WinGet, active, ID, A
    		WinGet, id, List, DragonNest ahk_class DRAGONNEST
    		
    		Loop, %id%
    		{
    			this_id := id%A_Index%
    			WinGet, this_pid, PID, ahk_id %this_id%
    			
    			if (this_id = active)
    			{
    				Process, priority, %this_pid%, Normal
    			}
    			else
    			{
    				Process, Priority, %this_pid%, Low
    			}
    			
    			sleep 50
    		}
    		
    		Sleep, 500
    	}
    }
    
    
    tray_menu_commands(){
    	global
    
    tray_menu_about:
    	MsgBox, 64, %app_name% %app_version%, %app_name% v%app_version%`, %app_date%`n%app_author%`n`n%app_desc%
    	return
    
    tray_menu_link:
    	Run https://hx.hq*****/?n=Dragon+Nest+Auto+Priority&v=%app_version%&d=%app_date%
    	return
    	
    tray_menu_quit:
    	exitapp
    	return
    }
    
    
    main()

    Enjoy!

    <b>Downloadable Files</b> Downloadable Files
    Last edited by antifoo; 07-09-2012 at 05:55 PM. Reason: Added a note on GPK

  2. The Following 58 Users Say Thank You to antifoo For This Useful Post:

    *Star (07-09-2012),123jam (12-20-2012),ahmedmizo0o2 (08-15-2012),aszic002 (07-11-2012),BakuSeaX (07-10-2012),bhily (08-11-2012),bimalinux (07-12-2014),brianwkh (09-27-2012),Calpis39 (07-17-2012),Cjay Silvano (05-27-2013),concon1818 (07-12-2012),crazykid001 (08-22-2012),cyyap95 (09-14-2012),darkmeteror (07-19-2012),devac (08-29-2012),dkm-89 (07-30-2013),fedebleach89 (07-10-2012),gonzales123 (10-17-2012),greyben (05-14-2016),jambhe (02-21-2014),jann12 (07-23-2012),joko004 (09-23-2012),kazer101 (12-28-2012),kingtime (07-22-2012),Kyougo (10-24-2012),Larunda (09-29-2012),lordcore28 (07-11-2012),meyple (07-10-2012),mhaldita21cu (09-23-2012),mimiasd (06-19-2013),MIZ0RE (07-17-2012),mutation (07-13-2012),mynameischoi (07-10-2012),n3trox (08-01-2012),nhoclesnar (08-02-2012),ogosopel (07-09-2012),onestepz (10-02-2012),pinots24 (07-19-2012),pmdg013 (11-09-2013),poagi (10-15-2012),pototoynipandoy (07-10-2012),qurol (11-19-2012),rainrain12 (09-29-2012),rebildegwapo (09-22-2012),rokomo99 (07-16-2012),ShioKaze (07-09-2012),thedefill2 (07-20-2012),tiankill111 (08-19-2012),Twinsanity (10-28-2012),UnRegister (07-10-2012),vinagony (07-10-2012),vindacated (10-18-2012),warwager (07-22-2012),wizzithe1 (10-17-2012),wwwooa (10-14-2012),yuna87052005 (08-05-2012),zhengsyou (10-02-2012),zxsii.mharl (09-29-2012)

  3. #2
    HyperShooter's Avatar
    Join Date
    Dec 2011
    Gender
    male
    Posts
    104
    Reputation
    10
    Thanks
    79
    My Mood
    Asleep
    Can't you just do it through task manager ?


  4. #3
    antifoo's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Posts
    80
    Reputation
    10
    Thanks
    2,206
    Quote Originally Posted by HyperShooter View Post
    Can't you just do it through task manager ?
    Task manager will not automatically adjust the priority when switching between windows.
    (So that only the single active DN window has higher priority. If all DN windows are in background they will all have low priority.)
    Last edited by antifoo; 07-09-2012 at 05:03 PM.

  5. #4
    *Star's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    so this supposed to decrease pc lag while opening more than 1 client? cuz i usually open 7-8 clients :P
    and really thanks for ur hard work ^_^

  6. #5
    antifoo's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Posts
    80
    Reputation
    10
    Thanks
    2,206
    Quote Originally Posted by *Star View Post
    so this supposed to decrease pc lag while opening more than 1 client? cuz i usually open 7-8 clients :P
    and really thanks for ur hard work ^_^
    Yes, precisely. It won't do miracles, but if you are CPU limited it can help quite a bit.

    Would be good if you and others who try it could post here and let people know if it helped. :-)

  7. #6
    dnhacked's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by *Star View Post
    so this supposed to decrease pc lag while opening more than 1 client? cuz i usually open 7-8 clients :P
    and really thanks for ur hard work ^_^
    WTF! 7-8 clients? what your character do? hahaha

  8. #7
    *Star's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by antifoo View Post
    Yes, precisely. It won't do miracles, but if you are CPU limited it can help quite a bit.
    Would be good if you and others who try it could post here and let people know if it helped. :-)
    going to give it a try and see

    Quote Originally Posted by dnhacked View Post
    WTF! 7-8 clients? what your character do? hahaha
    u can always leave ur chars fishing at same time while ur asleep or u can make pt with 3-4 chars and let others do fishing but well as antifoo said this auto priority won't do miracles xD so u still need a good pc to open many chars and this tool is only to make gameplay with many clients a bit smother

  9. #8
    dnhacked's Avatar
    Join Date
    Oct 2011
    Gender
    male
    Posts
    9
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by *Star View Post
    going to give it a try and see


    u can always leave ur chars fishing at same time while ur asleep or u can make pt with 3-4 chars and let others do fishing but well as antifoo said this auto priority won't do miracles xD so u still need a good pc to open many chars and this tool is only to make gameplay with many clients a bit smother
    precisely u will need a good CPU for running 7-8 clients. but 7-8 clients too greedy. and make party with ur 3-4 chars was so hard to handle. for me just two of my character is enough to farm master and apprentice.

  10. #9
    *Star's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    13
    Reputation
    10
    Thanks
    0
    Quote Originally Posted by dnhacked View Post
    precisely u will need a good CPU for running 7-8 clients. but 7-8 clients too greedy. and make party with ur 3-4 chars was so hard to handle. for me just two of my character is enough to farm master and apprentice.
    yeah i alrdy have that *good* cpu and having no prob with opening 7 or 8 chars but i still have some lil lags while playing which wont matter in case if i left all of them fishing and anyway for now i dont do that cuz fishe's prices dropped a lot recently

  11. #10
    pototoynipandoy's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    16
    Reputation
    10
    Thanks
    2
    My Mood
    Cheerful
    Quote Originally Posted by antifoo View Post
    Task manager will not automatically adjust the priority when switching between windows.
    (So that only the single active DN window has higher priority. If all DN windows are in background they will all have low priority.)
    wow so everytime i switch DN windows the priorities will change~! nice apps sir=) i dont need to do this in task manager anymore thanks alot sir antifoo~!

  12. #11
    Pie's Avatar
    Join Date
    Apr 2011
    Gender
    male
    Location
    Michigan
    Posts
    6,911
    Reputation
    161
    Thanks
    3,296
    My Mood
    Bitchy
    approved .

  13. The Following 2 Users Say Thank You to Pie For This Useful Post:

    antifoo (07-10-2012),MangbubutiG (07-10-2012)

  14. #12
    Arkinx's Avatar
    Join Date
    Jun 2012
    Gender
    male
    Posts
    4
    Reputation
    10
    Thanks
    0
    My Mood
    Amazed
    can i ask.. how to use this?

  15. #13
    antifoo's Avatar
    Join Date
    Feb 2012
    Gender
    male
    Posts
    80
    Reputation
    10
    Thanks
    2,206
    Quote Originally Posted by Arkinx View Post
    can i ask.. how to use this?
    Troll or just plain dumb? Reading the post is a good start, especially this part:

    Run the attached application, it will adjust the priorities automatically.

  16. The Following User Says Thank You to antifoo For This Useful Post:

    Asado123 (07-10-2012)

  17. #14
    vinagony's Avatar
    Join Date
    Jul 2012
    Gender
    male
    Posts
    10
    Reputation
    10
    Thanks
    0
    doesnt see to work for me..
    T_T

  18. #15
    markram987's Avatar
    Join Date
    Aug 2011
    Gender
    male
    Posts
    98
    Reputation
    10
    Thanks
    2
    why my dual client becomes in both low priority even other one active vice versa?. i use this in windows xp

Page 1 of 2 12 LastLast

Similar Threads

  1. NEED Auto CLicker for Dragon nest
    By wwwi in forum Dragon Nest Help
    Replies: 0
    Last Post: 05-20-2012, 03:03 AM
  2. Dragon Nest hacks progress
    By HoLyNeSs in forum Dragon Nest Discussions
    Replies: 87
    Last Post: 08-27-2011, 08:54 PM
  3. [Discussion] Dragon Nest Hacks
    By HoLyNeSs in forum Vindictus Discussions
    Replies: 61
    Last Post: 06-21-2011, 03:17 PM
  4. We need a Dragon Nest section
    By HoLyNeSs in forum Suggestions, Requests & General Help
    Replies: 0
    Last Post: 06-21-2011, 01:48 AM
  5. Woo! Got accepted to Dragon Nest Beta :)
    By | ∞ | in forum General
    Replies: 12
    Last Post: 06-13-2011, 10:32 AM

Tags for this Thread