[Guide] Edit the Client's GUI (Button Locations)

06/08/2014 02:28 mejo33#16
Quote:
Originally Posted by EOS 60D View Post
Thanks for this guide took my 1 min to figure out on 5518 patch.. Parameter should be 3276 in my case..
I using too 5518 patch and cant open this gui console... i build my command like that:
Quote:
private static bool Command_GUI(Player user, string[] data)
{
if (user.Permission < PlayerPermission.Helper) return false;
user.Send(new DataPacket
{
Id = 116,
UID = user.UID,
Timestamp = Albetros.Core.SystemTime.Now,
Action = DataAction.PMGUI,
});
return true;
}
And try it make for SendToScreen like that:
Quote:
private static bool Command_GUI(Player user, string[] data)
{
if (user.Permission < PlayerPermission.Helper) return false;
user.Send(new DataPacket
{
user.SendToScreen(new Packet.DataPacket
{
Id = 116,
UID = user.UID,
Timestamp = Albetros.Core.SystemTime.Now,
Action = DataAction.PMGUI,
}, true);
return true;
}
and too dont work.. please help me!
07/10/2014 14:02 Soulfly25#17
where could I find the latest subtype ID and Data Parameter of this. Because It's not workin in the latest patch 5910.

Thanks..
07/10/2014 17:41 Spirited#18
Quote:
Originally Posted by Soulfly25 View Post
where could I find the latest subtype ID and Data Parameter of this. Because It's not workin in the latest patch 5910.

Thanks..
Guess until you get it. That's how we're getting this subtype.
07/11/2014 01:46 turk55#19
Working on patch 5517:
Code:
GeneralDataPacket pack = new GeneralDataPacket();
pack.Id = client.EntityUID;
pack.Data1 = 3276;
pack.Action = Enums.DataAction.PostCmd; //(Enums.DataAction)116;
pack.Data3Low = client.X;
pack.Data3High = client.Y;
client.Send(pack);
07/25/2014 13:52 ROGER~#20
Seems good !
08/01/2014 14:08 GameHackerPM#21
oh... I did that 1 year ago! but i couldn't edit GUI.ini cause it's text in different language! :) Didn't understand what is that! :p

Thanks for sharing too! and this GUI you can use it for sending commands and send some messages <.> and much more!
08/01/2014 14:38 WolF:d#22
You dont need to send packet to the server you can just type @pmnew and gui edit window will open. working on private servers and official conquer ;)
08/01/2014 18:00 L'ava™#23
thanks
08/26/2014 02:33 zakkwilde_17#24
it works on patch 5065!?
09/04/2014 06:35 mkd1231#25
btw what if i want delite the icons HELP !
09/04/2014 07:05 Spirited#26
Quote:
Originally Posted by mkd1231 View Post
btw what if i want delite the icons HELP !
Read the thread.
09/04/2014 11:39 mkd1231#27
i removed but if i click will be open the icon
09/04/2014 17:52 Spirited#28
Quote:
Originally Posted by mkd1231 View Post
i removed but if i click will be open the icon
You must also edit the delete the resource in the executable using a resource editor.
09/04/2014 21:04 mkd1231#29
how i can find the resoruce edior or somting show me pls :D
09/05/2014 05:00 Spirited#30
Please stop spamming threads and use google.
[Only registered and activated users can see links. Click Here To Register...]