Esempio n. 1
0
/// Invoked (from char-server) when the party info is not found
int party_recv_noinfo(int party_id, int char_id)
{
	party_broken(party_id);
	if (char_id != 0) { // Requester
		struct map_session_data *sd = map_charid2sd(char_id);

		if (sd && sd->status.party_id == party_id)
			sd->status.party_id = 0;
	}
	return 0;
}
Esempio n. 2
0
// パーティ解散通知
static
int intif_parse_PartyBroken (int fd)
{
    party_broken (RFIFOL (fd, 2));
    return 0;
}
Esempio n. 3
0
// パーティ解散通知
static
void intif_parse_PartyBroken(int fd)
{
    party_broken(RFIFOL(fd, 2));
}
Esempio n. 4
0
// パーティ解散通知
static
void intif_parse_PartyBroken(Session *, const Packet_Fixed<0x3826>& fixed)
{
    party_broken(fixed.party_id);
}