Quote:
|
Originally Posted by midokate
you told me tha my character don't have permission to be a GM
im new user of rappelz server i dont know how to edi ttelecaster.dbo.character
if you know how to handl it please help me !!!!!
|
1. Open your SQL server management console
2. Authenticate and connect to your object browser.
3. Expand Databases
4. Expand Telecaster
5. Expand Tables
6. Locate dbo.character table
7. Right click on it and select edit top *** rows
8. Find the permission column and change your characters permission value to 100
9. Select the NULL or permission entry in the same column in the row directly below your character row, this will accept your row modification.
10. Save all and restart all of your servers and client.
You can also do it with an SQL update command
1. Select new query
2. Paste the following in changing the text for YourCharacterNameHere to the appropriate name.
Code:
update Telecaster.dbo.Character set permission = 100 where name = 'YourCharacterNameHere'
3. Execute SQL