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

    Messages:
    4,323
    On Skyblock I can't do /sb /is join /is /is invite etc. Pls help
     
  2. PiLe
    Offline

    PiLe Retired Admin Premium

    Messages:
    12,082
    Try re-logging a couple times.
     
  3. Linux
    Offline

    Linux Boss Member

    Messages:
    4,323
    I did 5 times
     
  4. Bananurz
    Offline

    Bananurz Retired Head-Mod

    Messages:
    3,401
    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

    Messages:
    4,323
    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

    Messages:
    1,313
    Maybe @melgrath can help you :). Thanks Mel!
     
  7. melgrath
    Offline

    melgrath Experienced Member

    Messages:
    470
    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

    Messages:
    5,089
    Resolved?
     
  9. Linux
    Offline

    Linux Boss Member

    Messages:
    4,323
    [quote[​IMG]="PopIs_MyLife, post: 471773, member: 7080"]Resolved?[/quote[​IMG]]
    Nope
     
  10. Max
    Offline

    Max Janice's Mentor Premium

    Messages:
    7,575
    Has this been resolved?
     
  11. Linux
    Offline

    Linux Boss Member

    Messages:
    4,323
  12. Max
    Offline

    Max Janice's Mentor Premium

    Messages:
    7,575
  13. Linux
    Offline

    Linux Boss Member

    Messages:
    4,323
    Does it have something to do with uSkyblock? Other people can use it.
     
  14. onesquad
    Offline

    onesquad i am your dad Premium

    Messages:
    2,163
  15. Linux
    Offline

    Linux Boss Member

    Messages:
    4,323
  16. onesquad
    Offline

    onesquad i am your dad Premium

    Messages:
    2,163
    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

    Messages:
    339
    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 Discord Moderator Premium

    Messages:
    2,799
    IGN:
    Malctar
    yes, yes i did

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

    onesquad i am your dad Premium

    Messages:
    2,163
    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

    Messages:
    7,575
    Has this been resolved?
     
Thread Status:
Not open for further replies.

Share This Page