Project 1999

Go Back   Project 1999 > General Community > Technical Discussion

Reply
 
Thread Tools Display Modes
  #191  
Old 03-28-2017, 10:32 AM
mgellan mgellan is offline
Fire Giant

mgellan's Avatar

Join Date: Mar 2010
Location: Winnipeg Canada
Posts: 880
Default

Quote:
Originally Posted by Branlail [You must be logged in to view images. Log in or Register.]
I actually have the same issue going full screen. It crashes out. I also find that it is running ridiculously slow in windowed mode. Unplayable really.

I have installed it, updated to v43 files (which had the correct DSETUP file) and verified that my comp is running off my NVIDIA chipset, not the onboard intel stuff. I guess my next step is to play around with drivers and see if that helps.

Anyone have any thoughts? I have a 660m NVIDIA Geforce with the NVIDIA 367.57 recommended drivers going.
Was just reading back through the thread and saw this - for ANYONE having display problems on Linux with NVIDIA make sure you're running the proprietary NVIDIA drivers not the open source drivers that come by default. Other than causing all sorts of problems with multiple monitors etc. performance is shit. Yes I know this guy is but just a thought [You must be logged in to view images. Log in or Register.]

Regards,
Mg
__________________

OMNI Officer (Retired from EQ)
Check out my P99 Hunting Guide!
Reply With Quote
  #192  
Old 03-28-2017, 11:58 AM
krakmojo krakmojo is offline
Large Bat


Join Date: Jul 2014
Posts: 11
Default

Try the following setting in your eqclient.ini, it helped me sometimes.

VertexShaders=FALSE
Reply With Quote
  #193  
Old 07-01-2017, 11:39 AM
malishious malishious is offline
Large Rat


Join Date: Jun 2014
Location: In front of my computer...
Posts: 6
Default

I am running xubuntu and have wine installed and titanium installed. I have all the necessary files added and/or removed. I have edited the EQ wine icon command and used my user instead of <user>. When I click on the icon to run the game nothing happens. No error messages or pop-ups. Any idea as to what I am doing wrong?
Reply With Quote
  #194  
Old 07-15-2017, 04:58 PM
Grizzled Grizzled is offline
Kobold


Join Date: Sep 2010
Posts: 178
Default

I got everything working so far with POL. Except p99 keeps telling me my spell files are out of date, even though I have already copy/pasted version 45(current) in their folders.
Reply With Quote
  #195  
Old 07-15-2017, 05:06 PM
Ashintar Ashintar is offline
Fire Giant


Join Date: Feb 2010
Posts: 796
Default

Quote:
Originally Posted by Grizzled [You must be logged in to view images. Log in or Register.]
I got everything working so far with POL. Except p99 keeps telling me my spell files are out of date, even though I have already copy/pasted version 45(current) in their folders.
Did you rename dsetup.dll to the correct case?

Quote:
Originally Posted by VincentF
Things i did to get everquest P99 working on my Antergos/Gnome3 setup

1. Copied eq1 folder to linux
2. removed files from eq folder as per p99 website
3. When copying p99 specific files into eq folder pay attention to case sensitive files, in particular dsetup.dll! You have to rename it to DSETUP.dll
4. Get sound to work. Open terminal and enter sudo pacman -S lib32-alsa-lib lib32-alsa-plugins lib32-libpulse lib32-alsa-oss lib32-openal
5. Edit eqclient.ini and change video mode or size to fit your monitor
5a. Change windowedmode to false if you want fullscreen
5b. set refresh rate to 60

I also have the blank server login screen occasionally but usually only takes one retry to get it working
__________________


Drumas - 60 Cleric
Ashintar - 60 Wizard
Reply With Quote
  #196  
Old 07-15-2017, 08:39 PM
Grizzled Grizzled is offline
Kobold


Join Date: Sep 2010
Posts: 178
Default

looks like I had both caps and lower case for that dll. deleted the lower case, no change though, still spell out of date message. changed the dll to uppercase and doesnt make a difference either.
Last edited by Grizzled; 07-15-2017 at 08:44 PM..
Reply With Quote
  #197  
Old 07-25-2017, 02:17 AM
sounion sounion is offline
Aviak

sounion's Avatar

Join Date: Nov 2015
Posts: 80
Default

I'm new to ubuntu so I may be asking a stupid question.

I have eq titanium installed and the wine desktop shortcut setup. But, I don't know how to change my eqgame.exe to eqgame patchme. In Windows I know I could right click > properties and type it in, but I don't have that option when I go into properties in ubuntu. I am within the .wine directory in my files.

Any ideas?
Reply With Quote
  #198  
Old 07-25-2017, 04:04 AM
Kavious Kavious is offline
Planar Protector


Join Date: Nov 2015
Posts: 1,305
Default

Theres various ways it could be done. I personally just have the shortcut call an EQStart.sh script that will load the game. Here is the script I use:

#!/bin/sh
# if you don't have the script's cwd set, you get XML errors
export WINEPREFIX=/home/username/.wine/

cd /home/username/.wine/drive_c/EverQuest

# Bind to one core of the processor and launch.
# The client will spew a lot of errors, especially every time
# you target a mob, hence the stdout/stderr redirect.
# You probably want to leave off the 2>/dev/null until you're satisfied
# everything is working.

taskset -c 0 padsp wine eqgame.exe patchme 2>/dev/null
Last edited by Kavious; 07-25-2017 at 04:08 AM..
Reply With Quote
  #199  
Old 07-25-2017, 11:40 AM
sounion sounion is offline
Aviak

sounion's Avatar

Join Date: Nov 2015
Posts: 80
Default

Quote:
Originally Posted by Kavious [You must be logged in to view images. Log in or Register.]
Theres various ways it could be done. I personally just have the shortcut call an EQStart.sh script that will load the game. Here is the script I use:

#!/bin/sh
# if you don't have the script's cwd set, you get XML errors
export WINEPREFIX=/home/username/.wine/

cd /home/username/.wine/drive_c/EverQuest

# Bind to one core of the processor and launch.
# The client will spew a lot of errors, especially every time
# you target a mob, hence the stdout/stderr redirect.
# You probably want to leave off the 2>/dev/null until you're satisfied
# everything is working.

taskset -c 0 padsp wine eqgame.exe patchme 2>/dev/null
Do I do this in Terminal? And I notice the taskset is still using eqgame.exe patchme. I can't edit the exe to add the patchme. How do I do that?
Reply With Quote
  #200  
Old 07-25-2017, 03:24 PM
Kavious Kavious is offline
Planar Protector


Join Date: Nov 2015
Posts: 1,305
Default

Its like a Windows batch file. You just create a text file of the above and then run it (or point your shortcut to open the shell script).

You technically could run the commands in a terminal and it would work just the same
Reply With Quote
Reply


Posting Rules
You may not post new threads
You may not post replies
You may not post attachments
You may not edit your posts

BB code is On
Smilies are On
[IMG] code is On
HTML code is Off

Forum Jump


All times are GMT -4. The time now is 05:07 AM.


Everquest is a registered trademark of Daybreak Game Company LLC.
Project 1999 is not associated or affiliated in any way with Daybreak Game Company LLC.
Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.