Hello so I am trying to create a ArenaPvP/Practice system like Badlion/Arcane for fun, but I'm having one problem. When someone joins the queue, the script adds 1 to {practice.queue}. Everything is fine except for the sidebar. I'm using FeatherBoard and it's displaying as "1.0" instead of "1". Does anyone know how to help?
Also, I tried to figure out how to create a sidebar with Skript but I couldn't figure it out fully. It was too buggy. Anyone know how to do this?
Thanks,
code_language.skript:
command /queue [<text>]:
trigger:
if arg 1 is not set:
message "&cUsage: /queue <ladder>"
stop
if arg 1 is "BuildUHC":
message "&aQueued for unranked &6BuildUHC&"
add 1 to {practice.queue}
clear player's inventory
wait 1 tick
set slot 1 of player to 351:1 named "&cLeave Unranked Queue"
Also, I tried to figure out how to create a sidebar with Skript but I couldn't figure it out fully. It was too buggy. Anyone know how to do this?
Thanks,