![]() |
Delete Account - Printable Version +- Mirage Source (https://mirage-engine.uk/forums) +-- Forum: Mirage Source (Nostalgia) (https://mirage-engine.uk/forums/forumdisplay.php?fid=61) +--- Forum: Archive (2006-2011) (https://mirage-engine.uk/forums/forumdisplay.php?fid=18) +---- Forum: Resources (https://mirage-engine.uk/forums/forumdisplay.php?fid=49) +---- Thread: Delete Account (/showthread.php?tid=275) |
Delete Account - DarkX - 27-08-2006 Hey guys/girls as you know I started from a blank version of MSE, but I noticed a problem with it's frmDeleteAccount.... I was looking at it for a few minutes, and well I'll just give the code. Code: Private Sub lblConnect_Click() and then theres this one Code: Private Sub lblConnect_Click() Thanks in advance, Korrey D. :::::::::::::::::::::::::::::::EDIT::::::::::::::::::::::::::::::::::::::::::: Nevermind I fixed it... for anyone who has the same problem I did(which seems to be just in general in MSE) open your frmDeleteAccount and double click picconnect and replace the code Code: Private Sub lblConnect_Click() with Code: Private Sub picConnect_Click() - Coke - 27-08-2006 Frm delete account before deletes individual characters (i believe) ;o - DarkX - 28-08-2006 It seemed to not even do that for me, it was somewhat like this example 1. click delete acount 2. type name & password 3. hit enter and start playing the game That doesn't seem right to me, well anyway with that code it fixes it and actually delete's the account. - DarkX - 28-08-2006 Yeah but none theless I still want the option to be there for 'em - Matt - 28-08-2006 I took the option out. I hate it when I get players coming to me saying things like: "I clicked the wrong thing, and deleted my account, is it possible for me to get it back?" Some people are stupid, so, I've been taking anything out like that. - DarkX - 28-08-2006 Yeah but I think of it like this, if there stupid, there stupid, that's there problem. - Matt - 28-08-2006 I don't really want people able to delete whole accounts. I'm going to implement a warning system as well, where if I warn a player, that character can not be deleted, as it might store some information about whether or not that player was involved in some shady business, and if they delete the character or the account, how can I find this stuff out? Alot of people are stupid, but not all, but I don't have the paitence for those messages. - DarkX - 28-08-2006 Yeah, the thing here though is that when you click DELETEACCOUNT, it says "YOUR ON THE PATH TO DELETING A CHARACTER" then the commands yes/no, so if there dumb enough to click "YES" after reading that, than they deserve to have it deleted. - Coke - 28-08-2006 The ONLY thing that can come of character/account deletion is if people get hacked, they lose everything =P WHY NOT INSTEAD of deleting accounts, simply have it copy that account to a deleted folder then delete the original account. Then you have backups incase anyone fucks up/is hacked. Or just have it rename the account file to deleted-acc num- or some such - Matt - 28-08-2006 Then apparently, you made something in the wrong area. To do that, you would just need to edit the menu state delete account stuff, nothing else. So, I don't know why that happened to you. - Leighland - 29-08-2006 Advocate Wrote:I took the option out. I hate it when I get players coming to me saying things like: Simple solution... If InputBox(Are you sure?) ... etc.etc.etc If InputBox(Positive?)... etc.etc.etc If InputBox(Absolutely want to?)... etc.etc.etc If InputBox(You know there's no turning back?)... etc.etc.etc If InputBox(Okay to proceed?)... etc.etc.etc If InputBox(100% okay with your decision?)... etc.etc.etc If InputBox(Gunna PM an admin saying you accidently deleted your account after clicking okay 6 times allready?)... etc.etc.etc If InputBox(Account deleted, have a nice day)... etc.etc.etc Lol... and then make a little piece of code like the following: **** Note this is for my own personal ammusement ***** [CLIENT] Code: Call SendData("CLICKAGE" & SEP_CHAR & END_CHAR) [SERVER] Code: If LCase(Parse(0)) = "clickage" Then Then post the stats on your website for all to see ! ![]() - Leighland - 29-08-2006 Shadow Dragon Wrote:I think that I'm just going to put the delete account lbl inside once you've logged in. That wroks too I guess :roll: - DarkX - 05-09-2006 Yeah I already did that, and now I'm working on making a SPRPG that you can select in the main menu exmaple Menu List Single Player Multi-Player Quit then when you click multi-player it brings up the usual menu, and when you click SP you get a menu that has New Account - New character Delete Account - Delete character Quit (probably not going to add new/delete account, also the SPRPG is going to use DX8 and I'll be working on converting MSE and MS3.0.3./.7 to DX8) |