|
|
Linux Technical issues under Linux platform |
|
Thread Tools | Display Modes |
|
09-01-2009, 06:22 PM | #1 |
Initiate
Join Date: Feb 2009
Location: Poland
Posts: 234
|
Game hangs on characters.sdb loading.
Yes, I tried to delete sdb and idx files, or even whole ~/regnum folder and reinstall, no luck.
Any other ideas? Regards.
__________________
Syrtis, Horus: Platyna (Conjurer), Platyna Ahn (Warlock), Platyna Ida (Hunter), Platyna Ira (Barbarian) |
09-01-2009, 07:01 PM | #2 |
Marquis
Join Date: Jul 2007
Location: England
Posts: 2,419
|
There is this thread with the same Issue,
http://www.regnumonline.com.ar/forum...ad.php?t=44745 On windows though, "removing problamatic SDB" file is the closest thing to a solution we got though
__________________
Faith 50 Barb Faithless 50 Lock
Umaril 45 Conju Kailas 45 Marks Pel 45 Knight |
09-01-2009, 09:25 PM | #3 |
Initiate
Join Date: Feb 2009
Location: Poland
Posts: 234
|
I know how to use Search, removing the files did not helped, as I wrote.
Regards.
__________________
Syrtis, Horus: Platyna (Conjurer), Platyna Ahn (Warlock), Platyna Ida (Hunter), Platyna Ira (Barbarian) |
09-02-2009, 04:31 AM | #4 |
Marquis
Join Date: Jan 2007
Location: RA
Posts: 1,897
|
You can always try to start the rolauncher to ensure you are using the latest Regnum version, close it and then run:
Code:
cd live ./game username `echo -ne password | md5sum` You will probably get stuck right before entering the character selection screen though... Please report back
__________________
Winning a fight is not what makes you a good player, it's how you do it.
http://home.znur.re/screenshot%20201...2011_39_37.jpg |
09-02-2009, 09:35 AM | #5 |
Initiate
Join Date: Feb 2009
Location: Poland
Posts: 234
|
I know it Znurre, I can play because I do bypass rolauncher now. However it would be nice to get this problem fixed.
Regards.
__________________
Syrtis, Horus: Platyna (Conjurer), Platyna Ahn (Warlock), Platyna Ida (Hunter), Platyna Ira (Barbarian) |
09-05-2009, 07:04 PM | #6 |
Master
Join Date: Jul 2008
Location: South Central USA
Posts: 260
|
Small correction to Z's post if anyone is interested.
Code:
./game username $(echo -ne password | md5sum |awk '{print $1}') Or a small script to do the same with more direct input: Code:
#!/bin/bash case "$1" in --gui) RO_USER="$(cat ~/.ngdstudios/rolauncher |grep user= |sed '{s|user=||}')" PASSWD=$(zenity --entry --hide-text --text=Password) PASS_CRYPT=$(echo -ne $PASSWD | md5sum |awk '{print $1}') PASSWD="" ;; *) if [ -z "$1" -o -z "$2" ]; then echo "" echo "Usage: $0 <user> <password>" echo " $0 --gui" exit 1 else if [ ! -f ./live/game ]; then echo "Regnum Live folder not found! Running from the correct directory?" exit 2 fi fi RO_USER=$1 PASS_CRYPT=$(echo -ne $2 | md5sum |awk '{print $1}') ;; esac cd ./live ./game $RO_USER $PASS_CRYPT & RO_USER="" PASS_CRYPT="" exit 0 Have fun
__________________
RA/Syrtis Hunter LVL50: Elusis RA/Syrtis Barba LVL50: Artemisia RA/Syrtis Conju Lvl45: Nellas Miriel Last edited by onemyndseye; 09-05-2009 at 08:06 PM. |
|
|