• 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.

Need help and info (i think it will be usefull to every1)

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.

Is that usefull question to every1?


  • Total voters
    4
#1
Hello i have 2 questions that i need help with
1)How can i set an amount of homes that a rank can have Example: (Guest rank can set 1home/Vip can set 2 homes)
2)how can i make some warps private to only one rank Example: (guest rank have access to all warps but doesnt have access to vip warp/on the other hand vip rank have access to all guest warps also vip warp .)
If any of my problems need madcommand and some1 code them for me please thanks
 
#2
Q. 1:

Limited Homes: With MadCommands is possible, but would take a while to "code" it. Not that easy for begginers.

Q. 2:

Option 1: Action Plugin or Slappers + Warps Plugin

Option 2: MadCommands Plugin

How to set private warps, /setwarp Steve -p, -p makes it private.
 
#4
Ok how do i give people or a specific rank access to this private warp.
Thanks
With which option are you going with?

1: Place a block
2: /action, and tap the block.
3: /tp %p 123 113 123 %pow
4: /action, and tap the block.
5: /setwarp ABC -p %op

How it works: When player taps the block, it gets teleported and private warp gets set.

/setwarp abc -p
/warp abc -p
/delwarp abc -p
 

MCPlayingTV

Staff Member
Department Head
Support Team
#5
for warps:

Change %vipwarps% to warps only vips can access

Change message on line 9

Change VIP Rank name

Code: (Not tested, if not working tell me)

cmd create warp warp

cmd add warp let %grp% = playergroup(%p%)

cmd add warp let %vipwarps% = array(\"vip\", \"warps\", \"here\")

cmd add warp if varset(%args%[1]) = %false% then exit

cmd add warp let %wn% = %args%[1]

cmd add warp if %wn% in %vipwarps% then goto 8

cmd add warp /warp %wn%

cmd add warp exit

cmd add warp if %grp% = \"vip\" then goto 11

cmd add warp message %p% only vips can use this

cmd add warp exit

cmd add warp /warp %wn%

cmd add warp exit