View Single Post
  #56  
Old 01-30-2009, 04:16 PM
cubber
Discordant
 
Join Date: Apr 2006
Posts: 374
Default

Here are a couple other scripts that I have been using:

This one starts the eqclient.exe file with the patchme flag and binds it to cpu0

I call it start and put it in your EverQuest folder.

Code:
#!/bin/sh

#start eqgame.exe on cpu0 and bypass the patcher.
taskset -c 0 wine eqgame.exe patchme

This launches the game in it's own X session and will give a boost in performance. You can launch this from the console without logging into your Window Manager to free up resources. This calls the start script above that is located in your EverQuest directory. Edit it to suit your needs.

Code:
#!/bin/sh

#Start EQ in a separate X session
X :3 -ac &
cd "/home/insert-your-user-here/.wine/drive_c/Program Files/Sony/EverQuest"
sleep 2
DISPLAY=:3 ./start
Reply With Quote