• This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn more.
  • Minecraft 1.16.220 Update + Bug/Crash Fixes
    Added MCPE 1.16.220 version and fixed crashes for multiple plugins. You can view the full changelist here.
  • Forum Updates - 4/11/2021
    Various changes have been made to the forums and a few categories. You can view the full changelist here.

Player Information

Warning!
Hello , there have been no replies in this thread for more than 30 days.
Please make sure you have a valid reason before you reply to this thread or you may face moderation action.

TechKingHQ

Retired Staff
#1
Name: Info
Purpose: Check your information as well as other players' information.
Usage: /info [<player>]

cmd create info Player information
cmd add info if varset(%args%[1]) then goto 21
cmd add info %status% = playerstatus(%p%)
cmd add info %xx% = %status%["x"]
cmd add info %yy% = %status%["y"]
cmd add info %zz% = %status%["z"]
cmd add info %world% = %status%["level"]
cmd add info %gamemode% = %status%["gm"]
cmd add info %lives% = %status%["health"]
cmd add info %group% = playergroup(%p%)
cmd add info message %p% §8[§5INFO§8] §aHere is your information:
cmd add info sleep 0
cmd add info message %p% §ex: §a%xx%
cmd add info message %p% §ey: §a%yy%
cmd add info message %p% §ez: §a%zz%
cmd add info message %p% §b(%xx%, %yy%, %zz%)
cmd add info message %p% §aYou are currently in the §b%world% §aworld
cmd add info message %p% §aYour health: §c%lives%/20
cmd add info message %p% §aYour gamemode: §2%gamemode%
cmd add info message %p% §aYour group is: §9%group%
cmd add info exit
cmd add info %allowed% = array(<staff ranks you want to have access to check another player's information>)
cmd add info if playergroup(%p%) in %allowed% then goto 25
cmd add info message %p% §6You must be Staff to check another player's information
cmd add info exit
cmd add info %player% = %args%[1]
cmd add info if %args%[1] in onlineplayers() then goto 29
cmd add info message %p% §c%player% is not online
cmd add info exit
cmd add info %status% = playerstatus(%player%)
cmd add info %player% = %args%[1]
cmd add info %status% = playerstatus(%player%)
cmd add info %xx% = %status%["x"]
cmd add info %yy% = %status%["y"]
cmd add info %zz% = %status%["z"]
cmd add info %world% = %status%["level"]
cmd add info %gamemode% = %status%["gm"]
cmd add info %lives% = %status%["health"]
cmd add info %op% = %status%["op"]
cmd add info %group% = playergroup(%player%)
cmd add info message %p% §8[§5INFO§8] §aHere is %player%'s information:
cmd add info sleep 0
cmd add info message %p% §ex: §a%xx%
cmd add info message %p% §ey: §a%yy%
cmd add info message %p% §ez: §a%zz%
cmd add info message %p% §b(%xx%, %yy%, %zz%)
cmd add info message %p% §a%player% is currently in the §b%world% §aworld
cmd add info message %p% §a%player%'s health: §c%lives%/20
cmd add info message %p% §a%player%'s gamemode: §2%gamemode%
cmd add info if %op% then goto 52
cmd add info message %p% §a%player% is not op
cmd add info goto 53
cmd add info message %p% §a%player% is op
cmd add info message %p% §a%player%'s group is: §9%group%
cmd add info exit