I currently have a july client with Debug server on it.
I tried Filling Debug server with NOP's but it doesnt work
Printable View
I currently have a july client with Debug server on it.
I tried Filling Debug server with NOP's but it doesnt work
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:
Just change the W and H values to 0. Save and recompile the mrs.Code:<LABEL item="LabelServerIP" parent="LoginFrame">
<BOUNDS>
<X>500</X>
<Y>202</Y>
<W>200</W>
<H>24</H>
No more pesky 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. =[
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.
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.
That will work. Apologies.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>
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.
WTF guys. I want the Debug server to be remove, Not the IP and port box..... and Rotana, you are one great spammer.
do u mean the one that uses locater?
nonono some exes has a thing called debug server where u enter your ip and port to connect to the 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..
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. :)
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.
I think you can add it but you cannot disable it
Bump :D
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.