Welcome!

Join our community of MMO enthusiasts and game developers! By registering, you'll gain access to discussions on the latest developments in MMO server files and collaborate with like-minded individuals. Join us today and unlock the potential of MMO server development!

Join Today!

[Guide]How to make GM Accounts

Status
Not open for further replies.
Junior Spellweaver
Joined
Jan 30, 2009
Messages
100
Reaction score
20
GM Accounts
UP2
Code:
DECLARE @RC int
DECLARE @id varchar(13)
DECLARE @pw varchar(13)
DECLARE @depart varchar(32)
DECLARE @class varchar(12)
DECLARE @name varchar(12)
DECLARE @birthday varchar(10)
DECLARE @grade int
DECLARE @subgrade int
SELECT @id = 'your login'
SELECT @pw = 'youre password'
SELECT @depart = 'none'
SELECT @class = 'GM'
SELECT @name = 'name'
SELECT @birthday = 'None'
SELECT @grade = 2
SELECT @subgrade = 4
EXEC @RC = [rf_account].[dbo].[pInsert_Staff] @id, @pw, @depart, @class, @name, @birthday, @grade, @subgrade
DECLARE @PrnLine nvarchar(4000)
PRINT 'Stored Procedure: rf_account.dbo.pInsert_Staff'
SELECT @PrnLine = ' Return Code = ' + CONVERT(nvarchar, @RC)
PRINT @PrnLine
UP5,6 and 2.2.1, 2.2.2
Code:
DECLARE @RC int
DECLARE @id varchar(13)
DECLARE @pw varchar(13)
DECLARE @depart varchar(32)
DECLARE @class varchar(12)
DECLARE @name varchar(12)
DECLARE @birthday varchar(10)
DECLARE @grade int
DECLARE @subgrade int
SELECT @id = 'your login'
SELECT @pw = 'youre password'
SELECT @depart = 'none'
SELECT @class = 'GM'
SELECT @name = 'name'
SELECT @birthday = 'None'
SELECT @grade = 2
SELECT @subgrade = 4
EXEC @RC = [RF_User].[dbo].[pInsert_Staff] @id, @pw, @depart, @class, @name, @birthday, @grade, @subgrade
DECLARE @PrnLine nvarchar(4000)
PRINT 'Stored Procedure: RF_User.dbo.pInsert_Staff'
SELECT @PrnLine = ' Return Code = ' + CONVERT(nvarchar, @RC)
PRINT @PrnLine
2.2.3 BSB
Code:
DECLARE @RC int     
DECLARE @id varchar(13)     
DECLARE @pw varchar(13)     
DECLARE @depart varchar(32)     
DECLARE @class varchar(12)     
DECLARE @name varchar(12)     
DECLARE @birthday varchar(10)     
DECLARE @grade int     
DECLARE @subgrade int     
SELECT @id = 'Youre Login'     
SELECT @pw = 'Youre Password'     
SELECT @depart = 'none'     
SELECT @class = 'GM'     
SELECT @name = 'name'     
SELECT @birthday = 'None'     
SELECT @grade = [COLOR="Magenta"]2[/COLOR]     
SELECT @subgrade = [COLOR="Cyan"]4[/COLOR]     
EXEC @RC = [rf_user].[dbo].[pInsert_Staff] @id, @pw, @depart, @class, @name, @birthday, @grade, @subgrade     
DECLARE @PrnLine nvarchar(4000)     
PRINT 'Stored Procedure: rf_user.dbo.pInsert_Staff'     
SELECT @PrnLine = ' Return Code = ' + CONVERT(nvarchar, @RC)

Important

Before, we used 2,4, all the time, and were happy:p , but with the 2.2.3 the situation has changed a bit
2 4 - with this ACC, you can write in the GM chat, but can't use commands such as% lv% * @ ^, etc.
4 4 - Can do everything, but can't write in the GM chat
2 3 - Same as 2 4
255 255 - same as 4 4, but players can loot gm things
 
Newbie Spellweaver
Joined
Feb 18, 2008
Messages
66
Reaction score
3
hey im wondering if u could add the GM account for EP2P1 Update 5 server .___. because ive tried every single one of those and it doesnt work xD

ty ^^
 
Joined
Feb 1, 2010
Messages
2
Reaction score
0
Hey, is there anything I'm missing. Or every GM command for 255 grade GM doesnt work at all. I am always receiving error(authority)

Is there a way to fix it ?
 
Junior Spellweaver
Joined
Jan 30, 2009
Messages
100
Reaction score
20
check zoneserver

---------- Post added at 12:01 PM ---------- Previous post was at 11:15 AM ----------

check zoneserver
 
Leech feeder.
Joined
Oct 19, 2008
Messages
802
Reaction score
99
any idea why in giga 4 ep 2 server i cant use ! for notice chat, i tried different grade combinations (2,4, 4,4, 255 etc)
 
Newbie Spellweaver
Joined
Apr 29, 2010
Messages
13
Reaction score
0
different is

"SELECT @grade = 2
SELECT @subgrade = 4" > >> GM Player

if user player

"SELECT @grade = 0
SELECT @subgrade = 0" >>>Player only

its rights??????
 
Junior Spellweaver
Joined
Jan 30, 2009
Messages
100
Reaction score
20
NO, player go in rfaccount and GMs go in staffaccount. And for players you need (id,pass,email,birthdate).
 
Newbie Spellweaver
Joined
Nov 23, 2006
Messages
13
Reaction score
0
Yes, it wont work because you need to have the stored procedure (rf_account.dbo.pInsert_Staff)
 
Newbie Spellweaver
Joined
Mar 1, 2011
Messages
6
Reaction score
0
@baltais

sir can u help me to make a 24/7 rf online private server?
 
Status
Not open for further replies.
Back
Top