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 - TheBlunderbuss

Pages: [1]
1
Complaint Department / Too Dark
« on: October 26, 2007, 11:05:32 pm »
At times, I can't see anything at all. It's simply too dark!
Code in either hand-held torches/lanterns, or something like fullbright back into the game.

2
Linux Specific Issues / Re: Font problem
« on: October 21, 2007, 10:48:51 pm »
I can think of two things that could interfere:
1. Composite mode isn't enabled. "glxinfo | grep direct" should return "direct rendering: Yes"
2. Beryl/compiz  soaks up a lot of OpenGL resources and should be turned off.

I don't have a lot of experience dealing with font issues in CrystalSpace, but I have run across issues like that in other programs, and those points were wrenches in the works.

3
Linux Specific Issues / Re: Font problem
« on: October 21, 2007, 12:30:40 am »
Upload your picture to imageshack or photobucket.
There's too much pay-site crap going on with the host you picked.

4
Complaint Department / Re: Death Penalty
« on: October 20, 2007, 10:26:07 pm »
The penalty:  Stats are cut in half (str, end, agi, etc) and no mana for an hour or more of online, in-game time.

...oh and a guy comes to your house and punches you in the junk.

5
General Discussion / Re: 020 Release is ready!
« on: October 16, 2007, 09:10:29 pm »
It was mentioned to use /attack bloody    instead of /attack 1
What's the command for Full Defensive?

6
General Discussion / Re: Now I know why I quit
« on: October 14, 2007, 05:25:05 am »
The art is being uploaded.
Patience!

7
General Discussion / Re: 020 release is coming.
« on: October 13, 2007, 11:30:44 pm »
Haha awesome. SecondLife can kiss my grits!

8
Linux Specific Issues / Re: Please help me choose a distro
« on: October 13, 2007, 09:58:36 pm »
My first distro was Mepis.  Laptop and wireless support is second to none.
I now use Sidux since , at the time, Mepis went to an Ubuntu-base and I had compiling issues.

You can use Distrowatch to check out other distros.

9
General Discussion / Re: 020 release is coming.
« on: October 13, 2007, 09:50:46 pm »
Blunderbuss, this is a free game. You don't need to pay for anything.
Ahh but so is SecondLife, and you "don't need to pay for anything" there either.

10
General Discussion / Re: 020 release is coming.
« on: October 13, 2007, 07:06:04 am »
Houses are to be paid for with Trias, and not real-life money, I take it?

11
Linux Specific Issues / fixlibs.sh removes libs (0.3.019)
« on: October 10, 2007, 06:37:56 am »
When wget fails (either by server error or when the libs are already present), fixlibs.sh removes all the libs the user already has.
I've supplied my fix below
Code: [Select]
#!/bin/bash

echo This program will download the latest dynamic libs required by PlaneShift. If you have missing lib errors, running this program may fix them.
echo Press enter to continue. Press Ctrl+C to abort.
read -e ENTER
echo Downloading new libs. This may take a while.
{
wget http://download.xordan.com/32bitlibs.tar.bz2 &&
{
echo Download finished.... copying to correct location.
rm -R libs
tar -xjf 32bitlibs.tar.bz2
rm 32bitlibs.tar.bz2
echo All done.
} } || echo An error was encountered. No libs were updated or removed.


Pages: [1]