Hey likertuban and gang,
Long time lurker here. Thanks to you guys (and a little bit to my IT job

) I now have functioning Giga 4 and 2.2.3.2 servers! Thank you so much! I wanted to leave some info here for anyone who is getting stuck:
Account Creation in 2.2.3.2 One-Click - I tried the following query and failed:
INSERT INTO RF_USER.dbo.tbl_rfaccount (Id,Password,accounttype,birthdate)
VALUES ((CONVERT (binary(16),'A')),(CONVERT (binary(24),'A')),'0','01/01/1980')
For some reason, I just simply could not get into the game... however, I found out that when I created a GM account with the following I could login:
USE RF_USER Insert Into tbl_StaffAccount (ID,PW,Grade,Depart,RealName,SubGrade,Birthday,ComClass)
Values (Convert(binary,'!Marlboro'),convert(binary,'ultrapower'),'2','none','teste','2','01/01/1991','GM')
The solution for creating a user account was this - Use the TestAccount table instead. Here is a query you can use to create an account and play without being a GM! (I think...)
INSERT INTO RF_USER.dbo.tbl_RFTestAccount (id,password,BCodeTU,email) VALUES ((CONVERT (binary(16),'testaccount')),(CONVERT (binary(24),'testpassword')),'0','
[email protected]')
If anyone knows what a Test Account is or if it differs from a regular account that would be nice to know.
Otherwise, thanks for all of the help! You guys rule.