[Client edit][Help]How to remove some button

06/07/2014 15:20 mejo33#1
Hello i need removed some buttons and frames from my client. Any one explain me how to? i need removed this (looks on screen red frame)
[Only registered and activated users can see links. Click Here To Register...]

Thanks for all.
06/07/2014 17:43 Spirited#2
Search next time. I created a thread that tells you exactly what you want to know. In fact, it's the first thread that comes up in "similar threads".
06/07/2014 17:51 mejo33#3
Quote:
Originally Posted by Spirited View Post
Search next time. I created a thread that tells you exactly what you want to know. In fact, it's the first thread that comes up in "similar threads".
Yeah i see [Only registered and activated users can see links. Click Here To Register...]

but there no event button and Arena button. I deleted only VIP buttons.
06/07/2014 17:58 Spirited#4
Quote:
Originally Posted by mejo33 View Post
Yeah i see [Only registered and activated users can see links. Click Here To Register...]

but there no event button and Arena button. I deleted only VIP buttons.
Then you're doing it incorrectly. The technique I used removes or repositions any button in the client - no exceptions.
06/07/2014 18:12 mejo33#5
Quote:
Originally Posted by Spirited View Post
Then you're doing it incorrectly. The technique I used removes or repositions any button in the client - no exceptions.
Can not find this, can you help me? i search for name "arena" and doesnt exist.
06/07/2014 18:42 Spirited#6
Quote:
Originally Posted by mejo33 View Post
Can not find this, can you help me? i search for name "arena" and doesnt exist.
Huh? Why are you searching for words? Where are you typing that in? I'm so confused. Did you read my thread?
06/07/2014 18:53 mejo33#7
Yeah i read ur post, but i understand how to create a command for open PM Window.
I trying to:
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 its not work, why wrong?

Edit: I found parameter for 5517 client is 3276, to dont work..
06/08/2014 06:27 Spirited#8
Quote:
Originally Posted by mejo33 View Post
Yeah i read ur post, but i understand how to create a command for open PM Window.
I trying to:


and its not work, why wrong?

Edit: I found parameter for 5517 client is 3276, to dont work..
Sorry, if I don't respond, that usually means I don't have an answer for you (not PM me until I answer). I don't use that source, so I don't know what those enum values represent. I don't work on that patch either. You would have to consult someone else who's more familiar with that patch.
06/08/2014 11:21 mejo33#9
Ok thanks Spirited for answer, any one can help me build this command to open gui for albetros 5518 path?

anyone can help me...?
06/10/2014 11:34 mejo33#10
I dont know how make it works, no one can help me, request closed.
06/10/2014 15:13 turk55#11
Code:
GeneralDataPacket pack = new GeneralDataPacket();
pack.Id = client.EntityUID;
pack.Data1 = 3276;
pack.Action = Enums.DataAction.PostCmd;  // 116;
pack.Data3Low = client.X;
pack.Data3High = client.Y;
client.Send(pack);
This works perfectly fine for me on patch 5517
06/11/2014 08:35 mejo33#12
Quote:
Originally Posted by turk55 View Post
Code:
GeneralDataPacket pack = new GeneralDataPacket();
pack.Id = client.EntityUID;
pack.Data1 = 3276;
pack.Action = Enums.DataAction.PostCmd;  // 116;
pack.Data3Low = client.X;
pack.Data3High = client.Y;
client.Send(pack);
This works perfectly fine for me on patch 5517

Thanks for your reply. THIS IS 100% WORK!

but i got new error, how to delete element? Find path button is: 304-1540 when i deleted this from gui.ini and restart the client i see path button on the left top screen in client.. its not deleted. Any one know how to delete this?