JaneDoe-ZS/nap_gameserver/src/handlers/event_graph.rs
xeon cbe169fe1a Implement event configs, more interactions work
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.
2024-07-26 22:44:44 +03:00

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(),
})
}