Vsro Thief Trader Hunter

01/15/2012 23:50 benossa#1
Hi, I have my little vsro server just to do some funny stuff and I have noticed that my client crashes when I try to create Alias for any job so is it something wrong with my media.pk2 (I have used one from GM Shadow it seems good)
and Im using client v 1.188.
and is there any option that I can manualy make my Alias in server database ?
01/17/2012 12:37 Reality_xXx#2
It is not the pk2 files which causing this crashes in this particular time, check again your Database.
An tip for you, (if you're crashing in-game it's not have to be the client / pk2 missing files, sometimes [rare] crashes are causes because you've done something wrong in the DB).

Regards, Reality.
01/18/2012 22:16 benossa#3
Quote:
Originally Posted by Reality_xXx View Post
It is not the pk2 files which causing this crashes in this particular time, check again your Database.
An tip for you, (if you're crashing in-game it's not have to be the client / pk2 missing files, sometimes [rare] crashes are causes because you've done something wrong in the DB).

Regards, Reality.
so, do you know can I manually create my Alias in DB ? I have searched tables but nothing found... :rolleyes:
01/18/2012 22:39 IceAmStiel#4
Should be "NickName16" (I suppose)
PHP Code:
USE SRO_VT_SHARD
Declare @CharNick varchar(25SET @CharNick 'Caipi' /*Your Charname*/
Declare @Alias varchar(25)

SET @Alias 'Bla' /*Desired Alias*/

Update _Char SET NickName16 = @Alias WHERE CharName16 = @CharNick 
01/19/2012 10:32 benossa#5
Quote:
Originally Posted by IceAmStiel View Post
Should be "NickName16" (I suppose)
PHP Code:
USE SRO_VT_SHARD
Declare @CharNick varchar(25SET @CharNick 'Caipi' /*Your Charname*/
Declare @Alias varchar(25)

SET @Alias 'Bla' /*Desired Alias*/

Update _Char SET NickName16 = @Alias WHERE CharName16 = @CharNick 
thank you very much