Show Posts

This section allows you to view all posts made by this member. Note that you can only see posts made in areas you currently have access to.


Messages - Talven81

Pages: [1]
1
Technical Help: Problems BEFORE entering the game / Windows Vista Support
« on: October 08, 2006, 10:03:23 pm »
PlaneShift works under Windows Vista RC1 now available for download and use until June 1, 2007.

I recommend going into the C:\Program Files (x86)\PlaneShift Crystal Blue\ and setting all .exe files (or at the very least psclient) to "Disable Desktop Composition" if you are using the Aero theme (where you can see thru the edges of the screen). The performance is much better when games are run with this disabled.

Since Vista is still in RC1 I can't guarantee everything works 100% under an incomplete OS. But I was able to get it running fairly well. I had to install the beta Nvidia 64-bit Vista drivers and beta Creative Audigy ZS Vista 64-bit drivers of course. If you have problems with them you can also attempt to install the Windows XP drivers. All the functionality may not be there but you will at least have full graphics capability.

If anyone needs assistance I would be happy to try to guide you thru getting PlaneShift to work under Vista, but it's fairly straight forward.

2
I came back to PS after a long period to see many things have changed!

However when I re-signed up and attempted to create a character the software crashes under the following...

When attempting to create a character if no name is entered PS crashes.

When attempting to change appearance (face etc) PS crashes.

When attempting to customize a character the error, you have not selected a race appears even when one is selected.

So far I haven\'t even been able to get past the character creation part using pre-defined skills OR custom.

Edit: After writing this I restarted PlaneShift and clicked create new character and it crashed there.

3
General Discussion /
« on: August 09, 2004, 12:37:58 am »
Nah wouldn\'t be perminant, just a temporary solution.

The perminant solution would be to have the patcher call the planeshift exe and set the default shortcut that the install program creates to point to the patcher. The patcher would also have to pass arguments to the planeshift exe.

4
Development Deliberation / Process Priority and Lag
« on: August 09, 2004, 12:22:24 am »
One thing I noticed about PS is it does not increase it\'s priority when it is in focus.

I noticed that EverQuest was set up that way and I now understand why. Several of my games do not do this and the lag in the game becomes unbearable. I have a piece of software that automatically controls the priority of the foreground window, and when run with planeshift the majority of the lag disappears.

Something you have to realize from a users point of view... while you and me may run fairly clean machines, many other users do not. They have all their neat little download tools, and weather updates, and media updates... stuff that WILL attempt to take processor time away from other software such as PS... unless PS\'s priority is higher effectively giving less time to other unessential processes.


Processes work in several levels for those who do not know...

0 Low Priority
8 Normal Priority
13 High Priority
15 Realtime

Few programs default to low priority, but things such as Virus Scanners, Popup Blockers etc belong here since they require little processor time but will ocasionally choose to be a hog.

Normal Priority is where most programs default to, when everything is crammed here it has equal rights to processor time.

High priority is where your fullscreen games should go, if you\'re not doing anything other than that game nothing else needs processor time.

Realtime priority is generally left to system processes that are REQUIRED to run your system. However games can be put here but don\'t expect to do ANYTHING else until that game is closed.

5
General Discussion / PlaneShift Auto-Update
« on: August 09, 2004, 12:08:08 am »
Note: I hope this is the right place to post this, if not plz move it... I could not find a forum that properly fit this topic. (May I suggest a forum for contributions to PS?)

I ran across planeshift and think you have an awesome project going on here. To this point I can find no other free 3D 1st Person MMORPG that is as far developed as yours.

The one thing I think that could easily be solved in PS is an auto-update feature. Currently you must go to the update and verify you have the newest version... which I\'m sure many people, especially newcomers to PS, will miss. This could end up with frustrated unhappy users using old versions that give up and never give PS a try.

I am not a programmer but I do dabble in various languages, and the first one ever learned was batch files, back on my ol\' 286 25Mhz (Don\'t laugh it was a powerhouse! LOL)

Anyways my point is I created a batch file that will automatically run the update program and then launch planeshift. It can be run from any directory so it doesn\'t matter where you put it.

Feel free to look over it and verify it is safe before you run it.

(Right click and Save As... to save the file)
http://knights.hyperdtech.com/files/PlaneShift.bat


Code: [Select]

@ECHO OFF
ECHO Loading PlaneShift Autopatch... [OK]

ECHO Locating PlaneShift...
CD \"\\Program Files\\PlaneShift\\\"
if errorlevel 1 goto dirfail
ECHO Planeshift Located... [OK]

ECHO Loading Patcher...
updater.exe
if errorlevel 1 goto updatefail
ECHO Patching complete... [OK]

ECHO Loading PlaneShift...
psclient.exe -video=opengl
if errorlevel 1 goto exefail
ECHO Planeshift Exited... [OK]
goto end


:dirfail
ECHO Unable to locate PlaneShift... [ERROR]
ECHO [ERROR] The \\Program Files\\PlaneShift\\ directory could not be found!
ECHO [ERROR] Please edit the planeshift.bat file to point to the proper location.
pause
goto end

:updatefail
ECHO Unable to patch PlaneShift... [ERROR]
ECHO [ERROR] The autopatcher was unable to execute the updater, or the updater has failed.
ECHO [ERROR] For further assistance please check the documentation or visit the PlaneShift website at [URL]www.planeshift.it[/URL]
pause
goto end

:exefail
ECHO Unable to load PlaneShift... [ERROR]
ECHO [ERROR] The autopatcher was unable to execute PlaneShift, or PlaneShift has failed.
ECHO [ERROR] For further assistance please check the documentation or visit the PlaneShift website at [URL]www.planeshift.it[/URL]
pause
goto end

:end

Pages: [1]