how i can make ADM GM or GS at name
this not work:admin:true,Admin lvl 255,status 16
i have only blue nick
... pls help
this not work:admin:true,Admin lvl 255,status 16
i have only blue nick
... pls help
Update Ps_GameDate.dbo.Chars Set Charname = '[GM]XXX' Where CharID = x
maybe it's better to use thisQuote:
you can aswell take the easy way and just run an Sql script such as
Code:Update Ps_GameDate.dbo.Chars Set Charname = '[GM]XXX' Where CharID = x
UPDATE [PS_GameData].[dbo].[Chars] SET CharName= '[ADM]XXX' WHERE CharName= 'XXX'
is about 50 players or more can happen that you do not know well charid but only by changing the old name, if you do not know you should enter the ID database to check if you know the name we do not need anything, just change the script putting the old name and the new one, it may happen that the old man is wrong, but it has never been used will give an error, if you are wrong ID we are going to completely change the name of someone who did not want toQuote:
CharID is Unique so it is better to use CharID.
Let anyone named the same with a point at the End or an I instead of a L.
However, it can be corrected so, well.
If you're too lazy to search for the CharID use the CharName.
atleast some1 uses his brain^^Quote:
CharID is Unique so it is better to use CharID.
Let anyone named the same with a point at the End or an I instead of a L.
However, it can be corrected so, well.
If you're too lazy to search for the CharID use the CharName.
it is better to not make any mistakes if your running a private server.Quote:
is about 50 players or more can happen that you do not know well charid but only by changing the old name, if you do not know you should enter the ID database to check if you know the name we do not need anything, just change the script putting the old name and the new one, it may happen that the old man is wrong, but it has never been used will give an error, if you are wrong ID we are going to completely change the name of someone who did not want to
UPDATE PS_GameData.dbo.Chars SET CharName = 'new charname' WHERE CharName = 'name' AND Family = x and Job = y AND whatever other filter conditions to make sure you pick the right one.