Give up, Brohan
Printable View
Give up, Brohan???
why is that?
can someone help me plz
where do i find badgecomponent
Seriously, give up.
dude im just asking for help and your saying seriously, give up uuhm? what help is that.... just give me an answer to my question please?
is it only for uber or can i use it for phoenix too?
and where do i find the file.
Phoenix = closed scource = not editable so fuck off
okej srry :/
thanks for this, helps a lot of users!
Better to use this:
Code:internal ServerMessage Serialize()
{
var EquippedBadges = new List<Badge>();
ServerMessage Message = new ServerMessage(229);
Message.AppendInt32(Count);
foreach (Badge Badge in Badges)
{
Message.AppendInt32(-1);
Message.AppendStringWithBreak(Badge.Code);
if (Badge.Slot > 0)
{
EquippedBadges.Add(Badge);
}
}
Message.AppendInt32(EquippedBadges.Count);
foreach (Badge Badge in EquippedBadges)
{
Message.AppendInt32(Badge.Slot);
Message.AppendStringWithBreak(Badge.Code);
}
return Message;
}
doesnt work man