x
  • IP Copied!
    Click to Copy IP
    0 Players Online
  • Join our Discord!
    0 Users Online
  • Skyblock cant do Skyblock commands

    Discussion in 'Help' started by Linux, Mar 11, 2015.

    Thread Status:
    Not open for further replies.
    1. Linux
      Offline

      Linux Boss Member

      Joined:
      Aug 20, 2014
      Messages:
      4,323
      Likes Received:
      969
      On Skyblock I can't do /sb /is join /is /is invite etc. Pls help
       
    2. PiLe
      Offline

      PiLe Retired Admin Premium

      Joined:
      Nov 20, 2013
      Messages:
      12,082
      Likes Received:
      5,322
      Try re-logging a couple times.
       
    3. Linux
      Offline

      Linux Boss Member

      Joined:
      Aug 20, 2014
      Messages:
      4,323
      Likes Received:
      969
      I did 5 times
       
    4. Bananurz
      Offline

      Bananurz Retired Head-Mod

      Joined:
      May 9, 2014
      Messages:
      3,401
      Likes Received:
      1,593
      Yes, I reported this as Im having an even bigger issue. I literally can't do anything on sb anymore. Cyp hasn't responded to my report in over a week. Its been open for 2 and still nothing.
       
    5. Linux
      Offline

      Linux Boss Member

      Joined:
      Aug 20, 2014
      Messages:
      4,323
      Likes Received:
      969
      Yea, it's annoying cause my friend and I were gonna start a series on it today XD
       
    6. PayUp
      Offline

      PayUp Well-Known Member

      Joined:
      Jul 6, 2014
      Messages:
      1,313
      Likes Received:
      639
      Maybe @melgrath can help you :). Thanks Mel!
       
    7. melgrath
      Offline

      melgrath Experienced Member

      Joined:
      Dec 22, 2014
      Messages:
      470
      Likes Received:
      527
      Greetings,

      Unfortunately I am afraid this particular particular issue is above my ability to resolve. The issue itself has been reported in the Bug/Glitch forum, but I do not have any estimated time to resolution for it.

      I can say that for another player, they were able to be invited to an island, then leave the island and a new one was created. You may have some luck with that approach.

      Apologies for the inconvenience.

      Cheers,
      Melgrath
       
    8. PopIs_MyLife
      Offline

      PopIs_MyLife Legendary Member

      Joined:
      Jul 22, 2014
      Messages:
      5,089
      Likes Received:
      1,330
      Resolved?
       
    9. Linux
      Offline

      Linux Boss Member

      Joined:
      Aug 20, 2014
      Messages:
      4,323
      Likes Received:
      969
      [quote[​IMG]="PopIs_MyLife, post: 471773, member: 7080"]Resolved?[/quote[​IMG]]
      Nope
       
    10. Max
      Offline

      Max Janice's Mentor Premium

      Joined:
      Apr 16, 2014
      Messages:
      7,575
      Likes Received:
      2,568
      Has this been resolved?
       
    11. Linux
      Offline

      Linux Boss Member

      Joined:
      Aug 20, 2014
      Messages:
      4,323
      Likes Received:
      969
    12. Max
      Offline

      Max Janice's Mentor Premium

      Joined:
      Apr 16, 2014
      Messages:
      7,575
      Likes Received:
      2,568
    13. Linux
      Offline

      Linux Boss Member

      Joined:
      Aug 20, 2014
      Messages:
      4,323
      Likes Received:
      969
      Does it have something to do with uSkyblock? Other people can use it.
       
    14. onesquad
      Offline

      onesquad i am your dad Premium

      Joined:
      Oct 23, 2013
      Messages:
      2,162
      Likes Received:
      258
    15. Linux
      Offline

      Linux Boss Member

      Joined:
      Aug 20, 2014
      Messages:
      4,323
      Likes Received:
      969
    16. onesquad
      Offline

      onesquad i am your dad Premium

      Joined:
      Oct 23, 2013
      Messages:
      2,162
      Likes Received:
      258
      He can't fix it. It is a plugin glitch, with perms, and the owner of the Skyblock plugin. Contact [email protected]
       
    17. Sherbii
      Offline

      Sherbii Experienced Member

      Joined:
      Aug 3, 2014
      Messages:
      339
      Likes Received:
      358
      Some other problems on skyblock are ./is party. Which will show all players as "null".
      2015-08-03_03.58.05.png
      Also, when I know a person is on my island. If I try to ./is kick them, it will say and internal error has occurred.
      2015-08-03_04.01.28.png

      A couple hours ago, I did successfully invite a player to my island, and she joined without any problems.
       
    18. Malc
      Offline

      Malc The Pro Moderator Premium

      Joined:
      Oct 10, 2014
      Messages:
      2,799
      Likes Received:
      2,567
      yes, yes i did

      No, but seriously, these problems need to be fixed. ;-;
       
    19. onesquad
      Offline

      onesquad i am your dad Premium

      Joined:
      Oct 23, 2013
      Messages:
      2,162
      Likes Received:
      258
      Code:
      package jdbm.helper;
      import java.io.Serializable;
      import java.util.Comparator;
      /**
      * Comparator for byte arrays.
      *
      * @author <a href="mailto:[email protected]">Alex Boisvert</a>
      * @version $Id: ByteArrayComparator.java,v 1.4 2002/05/31 06:33:20 boisvert Exp $
      */
      public final class ByteArrayComparator
      implements Comparator<byte[]>, Serializable
      {
      /**
      * Version id for serialization.
      */
      final static long serialVersionUID = 1L;
      /**
      * Compare two objects.
      *
      * @param obj1 First object
      * @param obj2 Second object
      * @return a positive integer if obj1 > obj2, 0 if obj1 == obj2,
      * and a negative integer if obj1 < obj2
      */
      public int compare( byte[] obj1, byte[] obj2 )
      {
      if ( obj1 == null ) {
      throw new IllegalArgumentException( "Argument 'obj1' is null" );
      }
      if ( obj2 == null ) {
      throw new IllegalArgumentException( "Argument 'obj2' is null" );
      }
      return compareByteArray( obj1, obj2 );
      }
      /**
      * Compare two byte arrays.
      */
      public static int compareByteArray( byte[] thisKey, byte[] otherKey )
      {
      int len = Math.min( thisKey.length, otherKey.length );
      // compare the byte arrays
      for ( int i=0; i<len; i++ ) {
      if ( thisKey >= 0 ) {
      if ( otherKey >= 0 ) {
      // both positive
      if ( thisKey < otherKey ) {
      return -1;
      } else if ( thisKey > otherKey ) {
      return 1;
      }
      } else {
      // otherKey is negative => greater (because MSB is 1)
      return -1;
      }
      } else {
      if ( otherKey >= 0 ) {
      // thisKey is negative => greater (because MSB is 1)
      return 1;
      } else {
      // both negative
      if ( thisKey < otherKey ) {
      return -1;
      } else if ( thisKey > otherKey ) {
      return 1;
      }
      }
      }
      }
      if ( thisKey.length == otherKey.length) {
      return 0;
      }
      if ( thisKey.length < otherKey.length ) {
      return -1;
      }
      return 1;
      }
      


      This may work (It is from another plugin + I edited it).
       
      • Like Like x 1
    20. Max
      Offline

      Max Janice's Mentor Premium

      Joined:
      Apr 16, 2014
      Messages:
      7,575
      Likes Received:
      2,568
      Has this been resolved?
       
    Thread Status:
    Not open for further replies.

    Share This Page