2020-12-13 23:08:15 +00:00
|
|
|
use veloren_plugin_rt::{
|
2020-12-13 17:11:55 +00:00
|
|
|
api::{event::*, Action, GameMode},
|
|
|
|
*,
|
|
|
|
};
|
2020-12-09 20:47:42 +00:00
|
|
|
|
2021-02-16 23:11:05 +00:00
|
|
|
#[event_handler]
|
2020-12-13 12:27:48 +00:00
|
|
|
pub fn on_load(load: PluginLoadEvent) {
|
|
|
|
match load.game_mode {
|
|
|
|
GameMode::Server => emit_action(Action::Print("Hello, server!".to_owned())),
|
|
|
|
GameMode::Client => emit_action(Action::Print("Hello, client!".to_owned())),
|
|
|
|
GameMode::Singleplayer => emit_action(Action::Print("Hello, singleplayer!".to_owned())),
|
|
|
|
}
|
2020-12-11 23:37:22 +00:00
|
|
|
}
|
|
|
|
|
2020-12-12 15:02:58 +00:00
|
|
|
#[event_handler]
|
|
|
|
pub fn on_command_testplugin(command: ChatCommandEvent) -> Result<Vec<String>, String> {
|
2020-12-13 17:11:55 +00:00
|
|
|
Ok(vec![format!(
|
2021-02-17 13:03:20 +00:00
|
|
|
"Player of id {:?} named {} with {:?} sended command with args {:?}",
|
|
|
|
command.player.id,
|
|
|
|
command
|
|
|
|
.player
|
|
|
|
.get_player_name()
|
|
|
|
.expect("Can't get player name"),
|
|
|
|
command
|
|
|
|
.player
|
|
|
|
.get_entity_health()
|
|
|
|
.expect("Can't get player name"),
|
|
|
|
command.command_args
|
2020-12-13 17:11:55 +00:00
|
|
|
)])
|
2020-12-12 15:02:58 +00:00
|
|
|
}
|
|
|
|
|
2020-12-12 13:22:51 +00:00
|
|
|
#[event_handler]
|
2020-12-11 23:37:22 +00:00
|
|
|
pub fn on_player_join(input: PlayerJoinEvent) -> PlayerJoinResult {
|
2020-12-13 17:11:55 +00:00
|
|
|
emit_action(Action::PlayerSendMessage(
|
|
|
|
input.player_id,
|
|
|
|
format!("Welcome {} on our server", input.player_name),
|
|
|
|
));
|
2020-12-11 23:37:22 +00:00
|
|
|
if input.player_name == "Cheater123" {
|
|
|
|
PlayerJoinResult::CloseConnection
|
|
|
|
} else {
|
|
|
|
PlayerJoinResult::None
|
|
|
|
}
|
2020-12-09 20:47:42 +00:00
|
|
|
}
|