Register for your free account! | Forgot your password?

You last visited: Today at 15:10

  • Please register to post and access all features, it's quick, easy and FREE!

Advertisement



ADM ,GS,GM

Discussion on ADM ,GS,GM within the Shaiya PServer Development forum part of the Shaiya Private Server category.

Reply
 
Old   #1
 
elite*gold: 0
Join Date: Jan 2014
Posts: 21
Received Thanks: 0
ADM ,GS,GM

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
havenban is offline  
Old 01/27/2014, 22:02   #2
 
Baby_Doll's Avatar
 
elite*gold: 43
Join Date: Aug 2011
Posts: 97
Received Thanks: 319
change the name of the character in Ps_GameData.dbo.Chars ans simply set a [ADM] [GM] [GS] or whatever you want in front of the charactername.
That has to be done for every character on the GM account you want to give a tag.
Baby_Doll is offline  
Old 01/27/2014, 22:07   #3
 
TeddyBear94's Avatar
 
elite*gold: 10
Join Date: May 2012
Posts: 1,857
Received Thanks: 2,627
you can aswell take the easy way and just run an Sql script such as
Code:
Update Ps_GameDate.dbo.Chars
Set Charname = '[GM]***'
Where CharID = x
TeddyBear94 is offline  
Old 01/27/2014, 23:11   #4
 
elite*gold: 0
Join Date: Jan 2014
Posts: 21
Received Thanks: 0
ty <3
havenban is offline  
Old 01/27/2014, 23:12   #5
 
nubness's Avatar
 
elite*gold: 10
Join Date: Jan 2012
Posts: 1,698
Received Thanks: 5,451
  • Wrong section
  • Don't say thanks, just use the **** thanks button, thanks for reading. Thanks.
nubness is offline  
Thanks
3 Users
Old 01/27/2014, 23:20   #6




 
Autrux's Avatar
 
elite*gold: 1
Join Date: Dec 2010
Posts: 33,281
Received Thanks: 5,715
Arrow Shaiya PServer Development -> Shaiya Private Server

#moved
Autrux is offline  
Old 01/28/2014, 11:58   #7
 
AxelMac's Avatar
 
elite*gold: 0
Join Date: Aug 2012
Posts: 454
Received Thanks: 111
Quote:
Originally Posted by TeddyBear94 View Post
you can aswell take the easy way and just run an Sql script such as
Code:
Update Ps_GameDate.dbo.Chars
Set Charname = '[GM]***'
Where CharID = x
maybe it's better to use this

Code:
UPDATE [PS_GameData].[dbo].[Chars]

SET CharName= '[ADM]***'
WHERE CharName= '***'
AxelMac is offline  
Old 01/28/2014, 16:41   #8
 
TeddyBear94's Avatar
 
elite*gold: 10
Join Date: May 2012
Posts: 1,857
Received Thanks: 2,627
Quote:
Originally Posted by AxelMac View Post
maybe it's better to use this

Code:
UPDATE [PS_GameData].[dbo].[Chars]

SET CharName= '[ADM]***'
WHERE CharName= '***'
it not better nor worst it just depends on what you like/prefear
TeddyBear94 is offline  
Old 01/28/2014, 16:50   #9
 
nubness's Avatar
 
elite*gold: 10
Join Date: Jan 2012
Posts: 1,698
Received Thanks: 5,451
It is better, you most likely have no idea what your CharID is, while everyone knows their CharName.
nubness is offline  
Old 01/28/2014, 18:31   #10
 
nephren's Avatar
 
elite*gold: 92
Join Date: Aug 2009
Posts: 731
Received Thanks: 971
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.
nephren is offline  
Thanks
1 User
Old 01/28/2014, 21:11   #11
 
AxelMac's Avatar
 
elite*gold: 0
Join Date: Aug 2012
Posts: 454
Received Thanks: 111
Quote:
Originally Posted by nephren View Post
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.
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
AxelMac is offline  
Old 01/29/2014, 06:46   #12
 
TeddyBear94's Avatar
 
elite*gold: 10
Join Date: May 2012
Posts: 1,857
Received Thanks: 2,627
Quote:
Originally Posted by nephren View Post
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:
Originally Posted by AxelMac View Post
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
it is better to not make any mistakes if your running a private server.
Mistakes like that makes you look stupid from the point of view of the players^^. So it is atleast in my eyes ( as i said everyone might prefear something different) a better way since you make sure your doing the right thing to the player
TeddyBear94 is offline  
Old 01/29/2014, 14:15   #13
 
nubness's Avatar
 
elite*gold: 10
Join Date: Jan 2012
Posts: 1,698
Received Thanks: 5,451
Teddy, tell me when was the last time you remembered all CharIDs on your server so you can smoothly write update queries. It's not that he uses his brain, it's that he's supporting your point of view. Now, if we have to develop the idea, let's make something like:
Code:
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.
nubness is offline  
Old 01/29/2014, 19:29   #14
 
Baby_Doll's Avatar
 
elite*gold: 43
Join Date: Aug 2011
Posts: 97
Received Thanks: 319
Imo you all shared your opinions & showed him few different ways he could use.
I don't think one is better or worse, it's just what way you prefear & how difficult the charname is in fact.

I don't think you need to go deeper into the "my way is better" "you say this because he say that" disscussion since 1. his question got answered & 2. you already poke each other more than enough
Baby_Doll is offline  
Thanks
1 User
Reply




All times are GMT +2. The time now is 15:10.


Powered by vBulletin®
Copyright ©2000 - 2024, Jelsoft Enterprises Ltd.
SEO by vBSEO ©2011, Crawlability, Inc.
This site is protected by reCAPTCHA and the Google Privacy Policy and Terms of Service apply.

Support | Contact Us | FAQ | Advertising | Privacy Policy | Terms of Service | Abuse
Copyright ©2024 elitepvpers All Rights Reserved.