help create devkit battle arena counter

06/27/2021 23:15 Desperado1337#1
i playing server turkish with maxiguard they can show battle arena counter anywhere they want i ask many devs they dont know
any can help me ?
[Only registered and activated users can see links. Click Here To Register...]
06/28/2021 00:04 bimbum*#2
Code:
        string x1 = "interface\\timer\\timer_0.ddj";
        m_IRM.GetResObj<CIFStatic>(id, 1)->TB_Func_13(x1, 0, 0);
there are many sources published already for guis , just make a window consists of 5 images
2 for minutes 1 for : and 2 for seconds... set the position for the images and keep updating them depends on the seconds count

[Only registered and activated users can see links. Click Here To Register...]
06/28/2021 00:07 thaidu0ngpr0#3
use filter and send this packet
Quote:
public void ShowTimer(int timetoset)
{
Packet pk = new Packet(0x34D2);
pk.WriteUInt8((byte)8);
pk.WriteUInt32(timetoset);
LOCAL_SECURITY.Send(pk);
ASYNC_SEND_TO_CLIENT(CLIENT_SOCKET);

}
06/28/2021 00:35 Desperado1337#4
thanks worked