forked from NewEriduPubSec/JaneDoe-ZS
Implement interact event-action configurations. More interactions work now, for more transitions, we just need to generate more configs (soon) NOTE: this commit BREAKS your nap_gameserver.toml. To fix it, you have to add 'event_config_path' property into [assets] section of your config.
25 lines
646 B
Rust
25 lines
646 B
Rust
use crate::logic::ENPCInteraction;
|
|
|
|
use super::*;
|
|
|
|
pub async fn on_run_event_graph(
|
|
session: &NetSession,
|
|
_player: &mut Player,
|
|
req: RunEventGraphCsReq,
|
|
) -> NetResult<RunEventGraphScRsp> {
|
|
session
|
|
.notify(UpdateEventGraphScNotify {
|
|
owner_type: req.owner_type,
|
|
tag: req.tag,
|
|
ddiamibnibg: req.ddiamibnibg,
|
|
npc_interaction: ENPCInteraction::OnInteract.to_string(),
|
|
ppabhkhbalm: true,
|
|
gainclnemhc: req.owner_id,
|
|
..Default::default()
|
|
})
|
|
.await?;
|
|
|
|
Ok(RunEventGraphScRsp {
|
|
retcode: Retcode::RetSucc.into(),
|
|
})
|
|
}
|