psu_game: send_022c seems to be related to parties... or NPCs.

This commit is contained in:
Loïc Hoguin 2010-09-02 01:05:10 +02:00
parent 28bb2f92cb
commit 8204740117

View File

@ -396,6 +396,10 @@ area_load(AreaType, IsStart, SetID, OldUser, User, QuestFile, ZoneFile, AreaName
true -> ignore true -> ignore
end, end,
send_0233(SpawnList), send_0233(SpawnList),
case User#egs_user_model.partypid of
undefined -> ignore;
_ -> send_022c(0, 16#12)
end,
send_0208(), send_0208(),
send_0236(), send_0236(),
if User#egs_user_model.partypid =/= undefined, AreaType =:= mission -> if User#egs_user_model.partypid =/= undefined, AreaType =:= mission ->
@ -605,6 +609,10 @@ event({counter_enter, CounterID, FromZoneID, FromMapID, FromEntryID}) ->
send_1212(), send_1212(),
send_0201(User#egs_user_model{lid=0}), send_0201(User#egs_user_model{lid=0}),
send_0a06(), send_0a06(),
case User#egs_user_model.partypid of
undefined -> ignore;
_ -> send_022c(0, 16#12)
end,
send_0208(), send_0208(),
send_0236(); send_0236();
@ -790,7 +798,8 @@ event({npc_invite, NPCid}) ->
%% @todo Check if party already exists. %% @todo Check if party already exists.
case User#egs_user_model.partypid of case User#egs_user_model.partypid of
undefined -> undefined ->
{ok, PartyPid} = psu_party:start_link(GID); {ok, PartyPid} = psu_party:start_link(GID),
send_022c(0, 16#12);
PartyPid -> PartyPid ->
ignore ignore
end, end,
@ -802,7 +811,6 @@ event({npc_invite, NPCid}) ->
Character = NPCUser#egs_user_model.character, Character = NPCUser#egs_user_model.character,
SentNPCCharacter = Character#characters{gid=NPCid}, SentNPCCharacter = Character#characters{gid=NPCid},
SentNPCUser = NPCUser#egs_user_model{id=NPCid, character=SentNPCCharacter}, SentNPCUser = NPCUser#egs_user_model{id=NPCid, character=SentNPCCharacter},
send_022c(0, 16#12),
send_1004(npc_invite, SentNPCUser, PartyPos), send_1004(npc_invite, SentNPCUser, PartyPos),
send_101a(NPCid, PartyPos); send_101a(NPCid, PartyPos);