[Development] Simple Account View

Status
Not open for further replies.
Experienced Elementalist
Joined
Apr 30, 2011
Messages
255
Reaction score
92
Hello RageZoners,

Im Developing Simple Account View, that can access Players Info w/o going to SQLSERVER..

As of now, im done with info view, so im thinking more info, that i can provide in the system...

Akerius - [Development] Simple Account View - RaGEZONE Forums


Akerius - [Development] Simple Account View - RaGEZONE Forums


Akerius - [Development] Simple Account View - RaGEZONE Forums


Akerius - [Development] Simple Account View - RaGEZONE Forums


Akerius - [Development] Simple Account View - RaGEZONE Forums


Akerius - [Development] Simple Account View - RaGEZONE Forums

And...

Editing Features will be put on the system >.<

Account Viewer 1.0
Akerius - [Development] Simple Account View - RaGEZONE Forums
Features:
• Can View Account and Character Info
• Can Update Game Authorization

if you want to test it heres the link:


if .exe is not working (missing DLL), try the setup.exe


Delete char and account are disabled, im not doing it yet :laugh:
 
Last edited:
Protip: Add inventory viewing/modifying features for the characters.

Also, are you setting this up so that it has to be run with the SQL server on localhost, or do you have it configured to support WAN connections?
 
Protip: Add inventory viewing/modifying features for the characters.

Also, are you setting this up so that it has to be run with the SQL server on localhost, or do you have it configured to support WAN connections?

i doesnt work on WAN, only for owners view, and no need to configure sql to run this, i used existing odbc connection... my problem now is, not all users can run this, dll prob and etc... so ive decided to reprogram this on vb.net former vb6... but i need time for doing it, because my schooling (sponsored by the company) on .net starts on feb 20 :laugh:

and thanks for the tip :thumbup1:
 
No need for that.

Get your favorite programming langauge, create an SQL connection, execute some queries and fetch the result, display the results in an UI and done you are.

Or code it on your website, even easier.

EDIT:
Hello Joey.
 
Last edited:
would it be neccessary? since when u must delete members characters. a ban account function would be interesting, though. its alot of easier too.
 
delete account would be kewl :thumbup:
Code:
DELETE FROM [ACCOUNT_DBF].dbo.[ACCOUNT_TBL] WHERE account='accountName'
DELETE FROM [ACCOUNT_DBF].dbo.[ACCOUNT_TBL_DETAIL] WHERE account='accountName'
DELETE FROM [CHARACTER_01_DBF].dbo.[CHARACTER_TBL] WHERE account='accountName'

that would leave pieces lying around in some tables, but I assume you don't mind.
 
Code:
DELETE FROM [ACCOUNT_DBF].dbo.[ACCOUNT_TBL] WHERE account='accountName'
DELETE FROM [ACCOUNT_DBF].dbo.[ACCOUNT_TBL_DETAIL] WHERE account='accountName'
DELETE FROM [CHARACTER_01_DBF].dbo.[CHARACTER_TBL] WHERE account='accountName'

that would leave pieces lying around in some tables, but I assume you don't mind.

Lol, a comprehensive delete function which doesn't leave any leftover pieces, would be quite complex. At the very least, it would need to get the m_idPlayer values for each character on the account, and use those to delete all the information from the CHARACTER_01_DBF tables (and possibly other values would be needed to get everything).
 
its useless to delete any accounts as i said. not even cuz of the complexity ... what if u ever decide to recover an account, u arent able to do that anymore, so.
 
its useless to delete any accounts as i said. not even cuz of the complexity ... what if u ever decide to recover an account, u arent able to do that anymore, so.

The solution to that would be to create completely separate databases that have empty copies of ACCOUNT_DBF and CHARACTER_01_DBF. You copy the account info that's going to be deleted into those databases, and then delete it from the original ones.
 
The solution to that would be to create completely separate databases that have empty copies of ACCOUNT_DBF and CHARACTER_01_DBF. You copy the account info that's going to be deleted into those databases, and then delete it from the original ones.

not bad idea, but what if u delete account xxx, and somebody creates account xxx again, and u want to delete it the new one again too, u will have doubled entries, u will still need to keep the account entry to avoid people will create same name accounts, or it will rain of errors, whenever u recover an account that has been created again or whenever u delete an account that holds a name of an old account u deleted before.
 
not bad idea, but what if u delete account xxx, and somebody creates account xxx again, and u want to delete it the new one again too, u will have doubled entries, u will still need to keep the account entry to avoid people will create same name accounts, or it will rain of errors, whenever u recover an account that has been created again or whenever u delete an account that holds a name of an old account u deleted before.

Lol, you can keep coming up with problems and I can keep coming up with solutions. I had a bit of experience with the eFlyff channel merging, when they combined pairs of channels into single ones. If there were duplicate character names, they added a 1 to the beginning of the name and the next time the character logged in, they got a free name change. If you're going to recover an account that has already been remade, just change the name lol same with char names.
 
Status
Not open for further replies.
Back