Adjust player spawn pos, fix some proto names
This commit is contained in:
parent
7648e6c014
commit
b63ee14fa8
2 changed files with 53 additions and 33 deletions
|
@ -22,10 +22,6 @@ pub async fn on_enter_scene_cs_req(session: &PlayerSession, body: &EnterSceneCsR
|
|||
floor_id: entrance_config.floor_id,
|
||||
entry_id: entrance_config.id,
|
||||
game_mode_type: 1, // TODO: EntranceType -> enum repr(u32)
|
||||
// TODO: thing above is probably not gm type
|
||||
nnfgkelcban: 1,
|
||||
lgflfajffjl: 1,
|
||||
pjbjelcgkof: 1,
|
||||
..Default::default()
|
||||
}),
|
||||
};
|
||||
|
@ -49,10 +45,33 @@ pub async fn on_get_cur_scene_info_cs_req(
|
|||
floor_id: 20101001,
|
||||
entry_id: 2010101,
|
||||
game_mode_type: 1,
|
||||
nnfgkelcban: 1,
|
||||
lgflfajffjl: 1,
|
||||
pjbjelcgkof: 1,
|
||||
scene_group_list: vec![SceneGroupInfo {
|
||||
leader_entity_id: 1,
|
||||
scene_group_list: vec![
|
||||
SceneGroupInfo {
|
||||
state: 1,
|
||||
group_id: 0,
|
||||
entity_list: vec![SceneEntityInfo {
|
||||
group_id: 0,
|
||||
inst_id: 0,
|
||||
entity_id: 1,
|
||||
actor: Some(SceneActorInfo {
|
||||
avatar_type: 3,
|
||||
base_avatar_id: 1314,
|
||||
map_layer: 2,
|
||||
uid: session.player_uid(),
|
||||
}),
|
||||
motion: Some(MotionInfo {
|
||||
pos: Some(Vector {
|
||||
x: -550,
|
||||
y: 19364,
|
||||
z: 4480,
|
||||
}),
|
||||
rot: Some(Vector::default()),
|
||||
}),
|
||||
..Default::default()
|
||||
}],
|
||||
},
|
||||
SceneGroupInfo {
|
||||
state: 1,
|
||||
group_id: 19,
|
||||
entity_list: vec![SceneEntityInfo {
|
||||
|
@ -66,15 +85,16 @@ pub async fn on_get_cur_scene_info_cs_req(
|
|||
}),
|
||||
motion: Some(MotionInfo {
|
||||
pos: Some(Vector {
|
||||
z: 4480,
|
||||
y: 19364,
|
||||
x: -570,
|
||||
y: 19364,
|
||||
z: 4480,
|
||||
}),
|
||||
rot: Some(Vector::default()),
|
||||
}),
|
||||
..Default::default()
|
||||
}],
|
||||
}],
|
||||
},
|
||||
],
|
||||
..Default::default()
|
||||
}),
|
||||
},
|
||||
|
|
|
@ -15996,7 +15996,7 @@ pub struct Mbdeomilmed {
|
|||
#[prost(uint32, repeated, tag = "12")]
|
||||
pub pgcmnafcahe: ::prost::alloc::vec::Vec<u32>,
|
||||
#[prost(uint32, tag = "11")]
|
||||
pub pjbjelcgkof: u32,
|
||||
pub game_mode_type: u32,
|
||||
#[prost(uint32, tag = "1")]
|
||||
pub ojljokcgaad: u32,
|
||||
}
|
||||
|
@ -20097,11 +20097,11 @@ pub struct Icjemgcigbp {
|
|||
#[derive(Clone, PartialEq, ::prost::Message)]
|
||||
pub struct SceneInfo {
|
||||
#[prost(uint32, tag = "5")]
|
||||
pub nnfgkelcban: u32,
|
||||
pub leader_entity_id: u32,
|
||||
#[prost(uint32, tag = "15")]
|
||||
pub lgflfajffjl: u32,
|
||||
#[prost(uint32, tag = "13")]
|
||||
pub pjbjelcgkof: u32,
|
||||
pub game_mode_type: u32,
|
||||
#[prost(message, repeated, tag = "3")]
|
||||
pub ijmddokpdff: ::prost::alloc::vec::Vec<BuffInfo>,
|
||||
#[prost(message, optional, tag = "1472")]
|
||||
|
@ -20111,7 +20111,7 @@ pub struct SceneInfo {
|
|||
#[prost(map = "string, int32", tag = "211")]
|
||||
pub dynamic_values: ::std::collections::HashMap<::prost::alloc::string::String, i32>,
|
||||
#[prost(uint32, tag = "1")]
|
||||
pub game_mode_type: u32,
|
||||
pub ipigefggbok: u32,
|
||||
#[prost(message, repeated, tag = "9")]
|
||||
pub padggdamiam: ::prost::alloc::vec::Vec<EntityBuffInfo>,
|
||||
#[prost(message, repeated, tag = "11")]
|
||||
|
|
Loading…
Reference in a new issue