|
07-01-2009, 02:00 AM | #1 |
Pledge
Join Date: Jan 2009
Posts: 1
|
Random crash
Hey guys my first post. But I'm having some problems here. Got the game up and running with an intel graphics card but there is a problem...The game kinda of closes randomly, and when it does, the desktop gets really small, like 1/8th of it's original size, or the gamma in the game stays on desktop, browser, etc. So I would appreciate some help! (first post )
This is the first MMO that is actually playable on my machine! Besides runescape, which I do play, but regnum is funner |
07-01-2009, 03:01 AM | #2 |
Initiate
Join Date: Aug 2008
Location: San Luis - Argentina
Posts: 213
|
please tell us which versions of this software has on your system:
xorg-server xf86-video-intel Mesa Here some posts with info about RO Segfault: LINK LINK LINK
__________________
Inek Bárbaro en desarrollo. Sólo sangre azul. Sombras de Alsius (todavía me queda grande el cartelito) Hasta siempre Feo...G* |
07-01-2009, 04:52 AM | #3 |
Master
Join Date: Jul 2008
Location: South Central USA
Posts: 260
|
For Intel and ATI video we are are left with a pretty crashy experience unfortunately.... In the posts above youll see that I've managed to bandage some of these issues but they mostly remain unfixed.
This script will help you abit.. it will start RO with some tweaks, wait for it to exit, then reset your Desktop and gamma to the values they were before RO ran. It may even reduce your crashes abit Since your using Intel Video - are you using my Chroot method for running RO? If so there is an alternate version of this script at the end of the HOWTO thread (3rd link above). Use that instead... If you are not using the chroot method and you are getting into the game OK but just crashing at random times then the script below may reduce the frequency -- IN this case DONT use the chroot method file: rolauncher.sh Code:
#!/bin/bash # Location that RO is installed. (Default location is ~/regnum) GAME_DIR=~/regnum ## This stores the video mode of my current desktop so it may be recalled later ## since RO doesnt resize the screen for me on exit. OLD_VIDMODE="$(xrandr |grep "Screen 0" | awk '{print $8 $9 $10}' |sed '{s|,||}')" # Same for Gamma OLD_GAMMA=$(xgamma 2>&1 | awk '{print $3}' |sed '{s|,||}') ## Function to wait until RO was exited wait_game() { RO_EXIT="0" while [ $RO_EXIT = "0" ] do TMP1=$(ps -U $USER |grep game |grep -v grep |awk '{print $1}') if [ -z "$TMP1" ]; then RO_EXIT=1 fi sleep 0.5 done } cd "$GAME_DIR" export MALLOC_CHECK_=1 ./rolauncher sleep 1 # Wait till RO quits wait_game ## Clean up and revert to old vidmode ## export MALLOC_CHECK_=0 ## Makes sure previous desktop mode is set xrandr -s "$OLD_VIDMOD" xgamma --gamma "$OLD_GAMMA" exit 0
__________________
RA/Syrtis Hunter LVL50: Elusis RA/Syrtis Barba LVL50: Artemisia RA/Syrtis Conju Lvl45: Nellas Miriel Last edited by onemyndseye; 07-01-2009 at 05:04 AM. |
|
|