• 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.

[Release] DN Register Query Script for (DN_EU File pack)

Skilled Illusionist
Joined
Mar 24, 2007
Messages
362
Reaction score
34
Hey forum!

I've noticed that people are struggling to even get into the game via login so i made a query so you guys can get in and have account to get in to game.

This might be a useless release but at least people don't have to keep posting "How do i get in ? or How to i make an account? " all the time! =]

So anyway! basically it's simple just run this in MSSQL and execute! , You have also can use this for web for php aswell!

#Query Script#
Code:
[COLOR=#008000]/* [This query is was made by major333/sirmajor] */
/* [DN_EU Register script] */[/COLOR]

USE [[COLOR=#ff0000]Account[/COLOR]] 
GO
DECLARE @[I][B][URL="http://forum.ragezone.com/members/850422.html"]return[/URL][/B][/I]_value int
EXEC @[I][B][URL="http://forum.ragezone.com/members/850422.html"]return[/URL][/B][/I]_value = [dbo].[DN_REGISTER]
@in_Login = N'[COLOR=#ff0000]Username goes here[/COLOR]',
@in_Password = N'[COLOR=#ff0000]Secret crap goes here[/COLOR]',
@in_Email = N'[COLOR=#ff0000]Teh email stuffs[/COLOR]'
SELECT 'Return Value' = @[I][B][URL="http://forum.ragezone.com/members/850422.html"]return[/URL][/B][/I]_value
GO

Also this is an example which you can use for the web , I'm not going to type the whole script for you i'm sure you will know how to make one by now.

#PHP example#

Code:
[COLOR=#008000]/* [This query is was made by major333/sirmajor] */
/* [DN_EU Register script for PHP] */
[/COLOR]
[COLOR=#008000]/* Warning!!! */
[COLOR=#008000]/* [Make sure you run this via [/COLOR][/COLOR]Apache 2.2[COLOR=#008000][COLOR=#008000] and not XAMPP or Wamp! ,  as they aren't compatible] */[/COLOR][/COLOR]

USE [[COLOR=#ff0000]Account[/COLOR]] 
GO
DECLARE @[I][B][URL="http://forum.ragezone.com/members/850422.html"]return[/URL][/B][/I]_value int
EXEC @[I][B][URL="http://forum.ragezone.com/members/850422.html"]return[/URL][/B][/I]_value = [dbo].[DN_REGISTER]
@in_Login = N'[COLOR=#ff0000]Username goes here[/COLOR]',
@in_Password = N'[COLOR=#ff0000]Secret crap goes here[/COLOR]',
@in_Email = N'[COLOR=#ff0000]Teh [COLOR=#ff0000]email [/COLOR]stuffs[/COLOR]'
[COLOR=#008000]
/* @in_FirstName =N'' [COLOR=#008000]<---[This is just example of a field you might want add in the php script][/COLOR]*/[/COLOR]
[COLOR=#008000]/* @in_Birthday =N'' [COLOR=#008000]<---[[COLOR=#008000][COLOR=#008000]<---[This is just example of a field you might want add in the php script][/COLOR][/COLOR][/COLOR]*/[/COLOR]
[COLOR=#008000]/* @in_LastName =N'' [COLOR=#008000]<---[[COLOR=#008000][COLOR=#008000]<---[This is just example of a field you might want add in the php script[/COLOR][/COLOR]][/COLOR]*/[/COLOR][COLOR=#008000] 
[/COLOR]
SELECT 'Return Value' = @[I][B][URL="http://forum.ragezone.com/members/850422.html"]return[/URL][/B][/I]_value
GO

Enjoy!
 
Last edited: