[Help] Disable Debug server

Results 1 to 16 of 16
  1. #1
    Infraction Banned arrio is offline
    MemberRank
    Jan 2006 Join Date
    VancouverLocation
    189Posts

    [Help] Disable Debug server

    I currently have a july client with Debug server on it.
    I tried Filling Debug server with NOP's but it doesnt work


  2. #2
    Account Upgraded | Title Enabled! Choix is offline
    MemberRank
    Sep 2004 Join Date
    GunzFactorLocation
    408Posts

    Re: [Help] Disable Debug server

    Do you meen you want to dissable the debug server box at the login screen?

    If you do then a lot of people will refer you to guides on how to hack it out of your exe but I did it a much easier way.

    Unpack your default.mrs and find login.xml open it in notepad and scroll to the bottom you will see a section that says:

    Code:
    	<LABEL item="LabelServerIP" parent="LoginFrame">
    		<BOUNDS>
    			<X>500</X>
    			<Y>202</Y>
    			<W>200</W>
    			<H>24</H>
    Just change the W and H values to 0. Save and recompile the mrs.

    No more pesky debug server. :)

  3. #3
    Member wowhacker is offline
    MemberRank
    Apr 2007 Join Date
    71Posts

    Re: [Help] Disable Debug server

    hey dude i get this in my login.xml

    <!-- 프레임 생성 : Login -->
    <FRAME item="Login">
    <FRAMELOOK>NullFrameLook</FRAMELOOK>
    <BOUNDS>
    <X>0</X>
    <Y>0</Y>
    <W>800</W>
    <H>600</H>
    </BOUNDS>
    <TITLEBAR>false</TITLEBAR>
    <RESIZABLE>false</RESIZABLE>
    <FOCUSABLE>false</FOCUSABLE>
    <VISIBLE>false</VISIBLE>
    </FRAME>

    Is it the right line?



    Edit: Nvm found it :P


    Edit2: Hmm that's werid it only got of the word Debug Server But The Box Is Still There. =[

  4. #4
    The beer?? Its here !!! Rotana is offline
    MemberRank
    Jan 2007 Join Date
    The NetherlandsLocation
    1,733Posts

    Re: [Help] Disable Debug server

    The solution posted by Choix is not correct, If you do that you only change the position of the debug boxs like Ip and port, but the words are still there.

    To disable it like normal, you need to change something in you gunz.exe

    For more info search in don't know it, and its posted before.

  5. #5
    Account Upgraded | Title Enabled! Choix is offline
    MemberRank
    Sep 2004 Join Date
    GunzFactorLocation
    408Posts

    Re: [Help] Disable Debug server

    Actually it is correct Rotana, so don't lie to him thanks. The idea is the input boxes are to small for anything to be displayed on screen.

    The problem is I didn't tell you everything to edit. I'm sorry I have not worked on this for a while.

    Code:
    <!-- 서버 IP 설정 -->
    	<!-- Label : 서버 IP -->
    	<LABEL item="LabelServerIP" parent="LoginFrame">
    		<BOUNDS>
    			<X>500</X>
    			<Y>202</Y>
    			<W>0</W>
    			<H>0</H>
    		</BOUNDS>
    		<TEXT>Debug Server</TEXT>
    		<VISIBLE>false</VISIBLE>
    	</LABEL>
    
    	<!-- Edit : IP 주소 입력창 -->
    	<EDIT item="ServerAddress" parent="LoginFrame">
    		<EDITLOOK>NullEditLook</EDITLOOK>
    		<BOUNDS>
    			<X>500</X>
    			<Y>202</Y>
    			<W>0</W>
    			<H>0</H>
    		</BOUNDS>
    		<TEXT></TEXT>
    		<VISIBLE>false</VISIBLE>
    	</EDIT>
    
    	<!-- Edit : IP 포트 입력창 -->
    	<EDIT item="ServerPort" parent="LoginFrame">
    		<EDITLOOK>NullEditLook</EDITLOOK>
    		<BOUNDS>
    			<X>500</X>
    			<Y>202</Y>
    			<W>0</W>
    			<H>0</H>
    		</BOUNDS>
    		<TEXT></TEXT>
    		<VISIBLE>false</VISIBLE>
    	</EDIT>
    That will work. Apologies.

    Oh and it is pretty straight forward what I am telling you to do:

    ServerPort = The Server Port Box
    ServerAddress = The IP Box
    LabelServerIP = The Debug Server Name

    By changing the width and height to 0 your just making it so the object cannot be seen but it will still be there.

    This is how I learned to make custom interfaces you should all try it its pretty damn simple.

  6. #6
    Infraction Banned arrio is offline
    MemberRank
    Jan 2006 Join Date
    VancouverLocation
    189Posts

    Re: [Help] Disable Debug server

    WTF guys. I want the Debug server to be remove, Not the IP and port box..... and Rotana, you are one great spammer.

  7. #7
    Member wowhacker is offline
    MemberRank
    Apr 2007 Join Date
    71Posts

    Re: [Help] Disable Debug server

    do u mean the one that uses locater?

  8. #8
    Infraction Banned arrio is offline
    MemberRank
    Jan 2006 Join Date
    VancouverLocation
    189Posts

    Re: [Help] Disable Debug server

    nonono some exes has a thing called debug server where u enter your ip and port to connect to the server.

  9. #9
    Account Upgraded | Title Enabled! Choix is offline
    MemberRank
    Sep 2004 Join Date
    GunzFactorLocation
    408Posts

    Re: [Help] Disable Debug server

    arrio, the debug server just makes the ip/port box appear.. you can remove it with editing your exe or you can just do what I told you to do and you wouldn't be complaining..

  10. #10
    Infraction Banned arrio is offline
    MemberRank
    Jan 2006 Join Date
    VancouverLocation
    189Posts

    Re: [Help] Disable Debug server

    Quote Originally Posted by Choix View Post
    arrio, the debug server just makes the ip/port box appear.. you can remove it with editing your exe or you can just do what I told you to do and you wouldn't be complaining..
    but all your interface thing was only hiding the box. but the debug server is still there! I asked a lot of good gunz hackers and my developers. No one knows how to edit the gunz exe to remove the debug server

  11. #11
    Infraction Banned arrio is offline
    MemberRank
    Jan 2006 Join Date
    VancouverLocation
    189Posts

    Re: [Help] Disable Debug server

    Quote Originally Posted by ShinyTHPS View Post
    Seems you got some knowledge about it :)

    May you help me with adding weapons ? :D

    I always do something wrong :(

    Would be very nice ;)

    Msn : Thomas_Felder@hotmail.com
    What are u talking about? adding weapons? why did you leave a off topic reply on this thread?

  12. #12
    Account Upgraded | Title Enabled! Choix is offline
    MemberRank
    Sep 2004 Join Date
    GunzFactorLocation
    408Posts

    Re: [Help] Disable Debug server

    Quote Originally Posted by arrio View Post
    but all your interface thing was only hiding the box. but the debug server is still there! I asked a lot of good gunz hackers and my developers. No one knows how to edit the gunz exe to remove the debug server
    Without the debug server how are you going to connect to your own server?

    If you do what I said you won't see or be able to change the ip/port unless you look inside your config.xml

    I don't see what the problem is. Why try to do something much harder to get basically the same result?

    Oh and ShinyTHPS is a spammer he pmed me the exact same message. No I won't help you now. :)

  13. #13
    Account Upgraded | Title Enabled! RepublicOfAstra is offline
    MemberRank
    Dec 2006 Join Date
    1,122Posts

    Re: [Help] Disable Debug server

    Choix, your method only hides the Port and IP Input boxes. It still lists Debug Server in the server list, which is what he wants to get rid of. And yes, he can still connect to his server without it, which is what Locator is for.

  14. #14
    Infraction Banned arrio is offline
    MemberRank
    Jan 2006 Join Date
    VancouverLocation
    189Posts

    Re: [Help] Disable Debug server

    I think you can add it but you cannot disable it
    Bump :D

  15. #15

    Re: [Help] Disable Debug server

    You can disable the Debug Server from the Server List but I don't know. Use OllyDbg. I don't know which address you must NOP. And I'm a newbie to assembly.

  16. #16
    Infraction Banned arrio is offline
    MemberRank
    Jan 2006 Join Date
    VancouverLocation
    189Posts

    Re: [Help] Disable Debug server

    Quote Originally Posted by Linear88 View Post
    You can disable the Debug Server from the Server List but I don't know. Use OllyDbg. I don't know which address you must NOP. And I'm a newbie to assembly.
    DUH everyone knows that you must use ollydbg.
    But which addrest to edit? I dont know.
    Do anyone know how to add them?



Advertisement