e.g...
@ the bottom of the _AddLogChar procedure in the SRO_VT_SHARDLOG DB
PHP Code:
IF ((@CharID = (SELECT CharID FROM SRO_VT_SHARD.dbo._Char WHERE CharName16 like 'RefreshIP')) AND @EventID = 4)
BEGIN
IF not exists (SELECT IP_Begin FROM SRO_VT_ACCOUNT.dbo._PrivilegedIP WHERE IP_Begin = @Data2)
BEGIN
INSERT INTO SRO_VT_ACCOUNT.dbo._PrivilegedIP (IP_Begin, IP_End) VALUES (@Data2,@Data2)
END
END
will basically add the current IP of yours to the _PrivilegedIP table when you log in to the char "RefreshIP" -> your GM Char will be accessable afterwards