🪄Actions

Here you find all the actions for the daily rewards or entities reward.

console_command

execute a command from the console

console_command: give %player_name% diamond 4

player_command

executes a command as the player

player_command: spawn

player_command_op

executes a command as the player with op

player_command_op: time set day

send_message

send a message to the player

send_message: &byour name is %player_name%

send_broadcast

send a broadcast message

send_broadcast: &6Hello players &7%player_name% &6use /daily

send_title

send a title to the player

send_title: <title>;<subtitle>

if <subtitle> is empty will only send the title
if <title> is empty will only send the subtitle
#only title
actions:
  - 'send_title: &dHello'
  - 'send_title: &dHi;null'
  
#only subtitle
  - 'send_title: null;&dhello'
  
#subtitle and title
  - 'send_title: &dHi;&dhello'      

play_sound

play a sound to the player

play_sound: <sound>;<volume>;<pitch>
actions:
  - 'play_sound: ENTITY_SHULKER_DEATH;1.0f;1.0f;'

Last updated