1. Welcome to skUnity!

    Welcome to skUnity! This is a forum where members of the Skript community can communicate and interact. Skript Resource Creators can post their Resources for all to see and use.

    If you haven't done so already, feel free to join our official Discord server to expand your level of interaction with the comminuty!

    Now, what are you waiting for? Join the community now!

Dismiss Notice
This site uses cookies. By continuing to use this site, you are agreeing to our use of cookies. Learn More.

Addon MundoSK 1.8.5

1.8.8 - 1.12 | Packets, WebSockets, World Border/Management/Custom Generation, and more!

  1. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    When a player joins the server, do you immediately set them to use custom tablist, or how do you do your system with the tablist?
     
  2. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    I have it set so that it applies the custom tablist to all players 2 ticks after a player joins using the on join event, I do the same thing when a player disconnects, should I wait a little longer?
     
  3. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    I'm not sure, I'm busy right now so I'll have to save this for tomorrow, but it's possible that that's the problem. I don't know what you're doing after a player disconnects, but there isn't any need to remove players from tablists after disconnects. As of now, with either of the tick changes, is the steve/alex issue only happening on join, or is it still happening after it has already been reverted to correct skins?
     
  4. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    Ah no worries, no rush I really just wanted to bring the issue up to try and get to the bottom of it eventually, not really in a rush for it to get fixed so no pressure, and yeah the issue mostly only happens when a player joins and only that player, any players around him will see his skin fine, he just wont see theirs. When I teleport to others I see their skins everytime, so I think in game skin issues are fixed, I'll keep you updated if I notice it happening while players are in game, I'll also try to do some more testing such as disabling my tablist script to confirm if the tablist part of mundosk is causing this
    --- Double Post Merged, Mar 30, 2017, Original Post Date: Mar 30, 2017 ---
    Ah, relief! Your suggestion to wait longer to send the tablist to players after they join seems to have worked, instead of waiting 2 ticks I switched it to 60(3 seconds) and it's working like a charm, skins are loading fine now when the player joins, Thanks alot for the help
     
    Tlatoani likes this.
  5. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    Help... I join server and this error :/


    123q.png
     
  6. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    Try updating your MundoSK to the latest beta.
     
    Jarns likes this.
  7. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    Thanks for answer. Where is it ? I have 1.7.4 Update.
     
  8. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    Click 'Overview' on the MundoSK page (here) and in the description there will be a part linking to the latest beta.
     
  9. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    Oh.. I love you man :emoji_grinning: Thanks!
     
    Tlatoani likes this.
  10. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    :emoji_smile:How to open a Sign

    When the player close sign

    How to get his input content
     
  11. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    You can open a sign to a player using the play_server_open_sign_editor packet. All you have to do is set the location pinfo to something random, like his location:
    Code (Skript):
    1. set location pinfo 0 of {_packet} to player's location
    And send the packet to the player.

    Once the player is done writing, they will send a play_client_update_sign packet, containing the lines they wrote in the string array pinfo:
    Code (Skript):
    1. string array pinfo 0 of event-packet
    You can loop that, print it straight, do whatever, etc. with it.
     
  12. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    Thank you very much. I did it!
    --- Double Post Merged, Apr 10, 2017, Original Post Date: Apr 10, 2017 ---
    In the game
    Each time a rebirth
    I will be transferred to the starting point of the world
    But I want to control the mobile location
    So can make some changes by this package to be moved?
    play_server_respawn

    How to do?

    For example, I want to move to after death
    The location (500.5, 116, 500.5, the world (" test "),)
     
  13. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    Changing respawn stuff with packets is a bit messy and hard to do, and could result in some bugs if done wrong, so it's better to just change respawn without packets, MundoSK (version BETA.7.135 and above) has an expression that you can use to do this, in the on respawn event:
    Code (Skript):
    1. on respawn:
    2.     set respawn location to {_loc}
     
  14. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    Code (Text):
    1.  
    2.  [Skript] Can't understand this condition/effect: set respawn location to location(0.5, 96, 10.5, world("world"), 179.9, -1.4) (1.sk, line 20: set respawn location to location(0.5, 96, 10.5, world("world"), 179.9, -1.4)')
    3.  
    I use a 1.7.4
     
  15. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
  16. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    Tlatoani likes this.
  17. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    I have get error.

    Code (Skript):
    1. [18:07:24] [Server thread/ERROR]: [Skript] Can't understand this expression: 'new play_server_open_sign_editor packet' (code.sk, line 9: set {_packet} to new play_server_open_sign_editor packet')
    2. [18:07:24] [Server thread/ERROR]: [Skript] can't understand this event: 'on packet event play_client_update_sign' (code.sk, line 19: on packet event play_client_update_sign:')
    I install MundoSK and ProtocolLib.
     
  18. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    Which versions are you running of MundoSK, ProtocolLib, and Bukkit/Spigot?
     
  19. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    BETA.7.135 MundoSK, ProtocolLib 4.2.0, PaperSpigot 1.8.8
     
  20. ShaneBee

    Supporter + Addon Developer

    Joined:
    Sep 7, 2017
    Messages:
    2,183
    Likes Received:
    234
    It's possible that those packets aren't available in 1.8, try writing some code using a packet like play_server_chat and see if that gives an error.
     

Share This Page

Loading...