• Unfortunately, we have experienced significant hard drive damage that requires urgent maintenance and rebuilding. The forum will be a state of read only until we install our new drives and rebuild all the configurations needed. Please follow our Facebook page for updates, we will be back up shortly! (The forum could go offline at any given time due to the nature of the failed drives whilst awaiting the upgrades.) When you see an Incapsula error, you know we are in the process of migration.

How To Make GM Account On MSSQL

Joined
Jul 27, 2008
Messages
868
Reaction score
56
I Will Tell U How To Make A GM Account ( RYL 2 ) , For RYL 1 ( Winner1)


1stly Go to Database > Youxiuser > Tables > Usertbl

and then find ur id with ur special UID

And THen

go to Database > Part2_Zodiac > Tables > Adminlist

( IF RYL 1 ) Database > Winner1 > Tables > Adminlist

Bring Alone Ur UID And Level Or GM 1 , 3 , 2 , 5 ,

After That Close

Go to DB Agent > Open Console And then type reloadadmin

After Its Says " Adminlist Reload Successfuly " You Cn Relogin And Have Fun

Admin Level

1 - Supporter

2 - Operator Level 1

3 - Operator Level 2

5 - Administrator / Developer
 
Newbie Spellweaver
Joined
May 8, 2009
Messages
54
Reaction score
6
Re: [Release] How To Make GM Account On MSSQL

ape da ni..ok good job hahaha
 
Newbie Spellweaver
Joined
Sep 24, 2008
Messages
16
Reaction score
0
Re: [Release] How To Make GM Account On MSSQL

isnt this a tutorial ?
 
Newbie Spellweaver
Joined
Aug 14, 2009
Messages
31
Reaction score
4
Re: [Release] How To Make GM Account On MSSQL

thanx for that guide...woodclaw..what is ur new YM??
 
Newbie Spellweaver
Joined
Sep 16, 2009
Messages
5
Reaction score
0
Re: [Release] How To Make GM Account On MSSQL

huhu..
complicated here..
can i wanna new link for mssql 2000 sp4..
*no dead link needed...
huhu..
hope all can help my prob..
 
Newbie Spellweaver
Joined
Jun 6, 2006
Messages
12
Reaction score
3
Re: [Release] How To Make GM Account On MSSQL

I Will Tell U How To Make A GM Account ( RYL 2 ) , For RYL 1 ( Winner1)


1stly Go to Database > Youxiuser > Tables > Usertbl

and then find ur id with ur special UID

And THen

go to Database > Part2_Zodiac > Tables > Adminlist

( IF RYL 1 ) Database > Winner1 > Tables > Adminlist

Bring Alone Ur UID And Level Or GM 1 , 3 , 2 , 5 ,

After That Close

Go to DB Agent > Open Console And then type reloadadmin

After Its Says " Adminlist Reload Successfuly " You Cn Relogin And Have Fun

Admin Level

1 - Supporter

2 - Operator Level 1

3 - Operator Level 2

5 - Administrator / Developer


Why not just use the Server Controller tool? ...
KaitoDaumoto - How To Make GM Account On MSSQL - RaGEZONE Forums
 
Moooooooooooooooo
Loyal Member
Joined
Jul 19, 2006
Messages
442
Reaction score
130
Re: [Release] How To Make GM Account On MSSQL

and waste another 100 hours to figure out how to make the tool working.

Useless. Period.
 
Newbie Spellweaver
Joined
Nov 11, 2009
Messages
7
Reaction score
0
Re: [Release] How To Make GM Account On MSSQL

smekom......ade sesiape leh tlong saye buat ryl kite sendiri x????
sape taw leh ajar...plis sesangat....add kat ym... adis.adie@yahoo.com
 
Newbie Spellweaver
Joined
Jun 6, 2006
Messages
12
Reaction score
3
Re: [Release] How To Make GM Account On MSSQL

what is that?? u make it by urself?? can share?? T_T

Pretty sure you told me to duck off in another thread, but I guess I could share it. Question is would you know what to do with it?

Code:
Imports System.Data.SqlClient


Public Class frmRegister
    Dim myCaptcha As New Captcha


    Private Sub frmRegister_Load(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles MyBase.Load

    End Sub

    Private Sub frmRegister_Shown(ByVal sender As Object, ByVal e As System.EventArgs) Handles Me.Shown

        myCaptcha.CaptchaHeight = bmpCaptcha.Height
        myCaptcha.CaptchaWidth = bmpCaptcha.Width
        myCaptcha.CaptchaFont = New Font("Verdana", 20, FontStyle.Regular)
        myCaptcha.GenerateNewCaptcha()
        bmpCaptcha.Image = myCaptcha.CaptchaImage
        'txtSecurityCode.Text = myCaptcha.CaptchaCode
        cbGMLevel.Text = cbGMLevel.Items(0).ToString

    End Sub

    Private Sub btnOK_Click(ByVal sender As System.Object, ByVal e As System.EventArgs) Handles btnOK.Click
        'Me.Close()

        If txtAccount.Text = "" Or txtConfirmPassword.Text = "" Or txtEMail.Text = "" Or txtPassword.Text = "" Or txtSecurityCode.Text = "" Then
            MsgBox("Required Field Missing", MsgBoxStyle.Critical, "Create Account - Validation Error")
            Exit Sub
        End If

        If txtSecurityCode.Text <> myCaptcha.CaptchaCode Then
            MsgBox("Captcha Code Invalid", MsgBoxStyle.Critical, "Create Account - Validation Error")
            Exit Sub
        End If

        If txtPassword.Text <> txtConfirmPassword.Text Then
            MsgBox("Passwords do not match.", MsgBoxStyle.Critical, "Create Account - Validation Error")
            Exit Sub
        End If

        Dim connstring As String
        connstring = "Data Source=127.0.0.1;Initial Catalog=youxiuser;User ID=sa;Password=PASSWORDHERE"

        Dim SQLConn As New SqlConnection(connstring)
        Call SQLConn.Open()

        Dim strQuery As String
        strQuery = "EXECUTE [youxiuser].[dbo].[spJoinUser] '" & txtAccount.Text & "', '" & txtPassword.Text & "','" & txtEMail.Text & "'"

        Dim SQLCmd As New SqlCommand(strQuery, SQLConn)

        Call SQLCmd.ExecuteNonQuery()

        Dim SQLdr As SqlDataReader
        Dim UID As String = ""

        If cbGMLevel.Text <> "Level 0" Then
            strQuery = "SELECT uid FROM [youxiuser].[dbo].[usertbl] WHERE account = '" & txtAccount.Text & "' and email = '" & txtEMail.Text & "'"
            SQLCmd = New SqlCommand(strQuery, SQLConn)
            SQLdr = SQLCmd.ExecuteReader
            SQLdr.Read()

            UID = SQLdr(0)
            SQLdr.Close()

            Dim GMLevel As String = "0"

            Select Case cbGMLevel.Text
                Case "Level 0"
                    GMLevel = "0"
                Case "Level 1"
                    GMLevel = "1"
                Case "Level 2"
                    GMLevel = "2"
                Case "Level 3"
                    GMLevel = "3"
                Case "Level 4"
                    GMLevel = "4"
                Case "Level 5"
                    GMLevel = "5"
            End Select

            strQuery = "EXECUTE [gameDB].[dbo].[InsertAdmin] '" & UID & "', '" & GMLevel & "'"
            SQLCmd = New SqlCommand(strQuery, SQLConn)

            Call SQLCmd.ExecuteNonQuery()
        End If




        SQLConn.Close()

        If cbGMLevel.Text <> "Level 0" Then
            Call MsgBox(cbGMLevel.Text & " Admin Account Created: " & txtAccount.Text, MsgBoxStyle.Information, "Account Created")
        Else
            Call MsgBox("Account Created: " & txtAccount.Text, MsgBoxStyle.Information, "Account Created")
        End If

        Me.Close()
    End Sub

And like Alpha said, it's useless for anyone who knows SQL. Its just for admins/easy account creating.
 
Joined
Mar 17, 2010
Messages
1
Reaction score
0
Re: [Release] How To Make GM Account On MSSQL

woodclaw,how to give command for create item,drop item and summon monster??i have that command,/createitem ID LVL GRADE...what LVL and GRADE stand for??can u give me an example??plss..
 
Banned
Banned
Joined
Jan 21, 2009
Messages
58
Reaction score
4
Re: [Release] How To Make GM Account On MSSQL

'-' this boy have a hole in brain T_T'
 
Joined
Aug 19, 2010
Messages
4
Reaction score
2
Re: [Release] How To Make GM Account On MSSQL

Whon i search forums of ryl in ragezone ?

---------- Post added at 11:16 PM ---------- Previous post was at 11:10 PM ----------

Woodclaw you Beautfull
 
Back
Top