Go Back   Champions of Regnum > English > Technical Support > Linux

Linux Technical issues under Linux platform

Reply
 
Thread Tools Display Modes
Old 09-01-2009, 06:22 PM   #1
platyna
Initiate
 
Join Date: Feb 2009
Location: Poland
Posts: 234
platyna is an unknown quantity at this point
Default 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)
platyna no ha iniciado sesión   Reply With Quote
Old 09-01-2009, 07:01 PM   #2
UmarilsStillHere
Marquis
 
UmarilsStillHere's Avatar
 
Join Date: Jul 2007
Location: England
Posts: 2,419
UmarilsStillHere will become famous soon enough
Default

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
UmarilsStillHere no ha iniciado sesión   Reply With Quote
Old 09-01-2009, 09:25 PM   #3
platyna
Initiate
 
Join Date: Feb 2009
Location: Poland
Posts: 234
platyna is an unknown quantity at this point
Default

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)
platyna no ha iniciado sesión   Reply With Quote
Old 09-02-2009, 04:31 AM   #4
Znurre
Marquis
 
Join Date: Jan 2007
Location: RA
Posts: 1,897
Znurre will become famous soon enoughZnurre will become famous soon enough
Default

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`
This will bypass the rolauncher, and thus the check for characters.sdb.

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
Znurre no ha iniciado sesión   Reply With Quote
Old 09-02-2009, 09:35 AM   #5
platyna
Initiate
 
Join Date: Feb 2009
Location: Poland
Posts: 234
platyna is an unknown quantity at this point
Default

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)
platyna no ha iniciado sesión   Reply With Quote
Old 09-05-2009, 07:04 PM   #6
onemyndseye
Master
 
onemyndseye's Avatar
 
Join Date: Jul 2008
Location: South Central USA
Posts: 260
onemyndseye is on a distinguished road
Default

Small correction to Z's post if anyone is interested.

Code:
./game username $(echo -ne password | md5sum |awk '{print $1}')
the awk is needed to curb any extra output from md5sum... it returns a "-" behind the password on my system which breaks the login string


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.
onemyndseye no ha iniciado sesión   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. The time now is 04:23 AM.


Powered by vBulletin® Version 3.8.7
Copyright ©2000 - 2025, vBulletin Solutions, Inc.
NGD Studios 2002-2024 © All rights reserved