GM accounts only "Account still restricted"

09/17/2011 08:05 [ADMIN]Cryptic#1
Hey I have a weird problem.

My server been hacked cos I neglected to fully patch the GM exploit patch. I did that and its secure now Using bane's exploit fix

Problem is now everytime we try and log in with GM accounts (status 16) we get the accoint still restricted error. But when we change it back to 0 we get in without a problem. Anyone have a fix for this? very much apreciated
09/17/2011 08:10 taZツ#2
If you used the dupe fix, try to clear the leaves maybe.

UPDATE PS_UserData.dbo.Users_Master SET Leave = 0
09/17/2011 18:01 [ADMIN]Cryptic#3
no has nothing to do with dupe. It only involve gm accounts if we put status from 16 to 0 we can log in but means no gms can log in
09/17/2011 18:17 viper4513#4
you say you used Bane's guide to fix your GM explioit problem?

Did you actually set Static IP's for your GM's then?
09/17/2011 18:34 Xx.LaMin.xX#5
What i think is he didnt change the GMs IP adress in ''Static IP's for GMs'' by Bane's Script.

Go to-> StoredProcedure [dbo].[usp_Try_GameLogin_Taiwan]

Search

Code:
SET @gm1IP = 	'[COLOR="Red"]10.0.0.199[/COLOR]'
SET @gm2IP = 	'[COLOR="Red"]10.0.0.198[/COLOR]'
SET @gm3IP = 	'[COLOR="Red"]10.0.0.197[/COLOR]'
Change to

Code:
SET @gm1IP = 	'[COLOR="SeaGreen"]Your First GM's IP[/COLOR]'
SET @gm2IP = 	'[COLOR="SeaGreen"]Your Second GM's IP[/COLOR]'
SET @gm3IP = 	'[COLOR="SeaGreen"]Your Third GM's IP[/COLOR]'
Also there was a bug which i told to bane to change but he didnt :(

Search
Code:
IF(@UserIP = @gm1IP OR @UserIP = @gm2IP OR @UserIP = [COLOR="Red"]@gm2IP[/COLOR])
Change to

Code:
IF(@UserIP = @gm1IP OR @UserIP = @gm2IP OR @UserIP = [COLOR="SeaGreen"]@gm3IP[/COLOR])
I hope that i solved your problem, ^.~