"chunk fetched was not the chunk requested"

Discussion in 'Bukkit Help' started by Flawd, Feb 23, 2011.

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

    Flawd

    I'm getting this 5+ times per second on build 435. I have a bunch of plugins loaded, I'm going to try without any plugins when I get home...
     
  2. Offline

    James Whitney

    same here, i think its the new build but i'm not sure.
     
  3. Offline

    cjc343

    I tried it without any plugins a while ago. Same result.
     
  4. Offline

    Vorna

    Ok. I installed my first Craftbukkit. Build 435. (Since it seems thats the only build it allows me to download..)
    -I have Permissions Plugin in the Plugin Folder. Renamed it to world since wold is my default world name.
    -I have countless of times played with permissions to try and get it working. Using an yml Editor to be safe.
    -I even tried making owner which has ['*'] permissions as default just to see if it would give me it all.
    -Of coarse I restart the entire server after changes. ;)
    - I have vorna (character name) set to be owner in the yml file.

    Yet... here is what happens.


    I start my .bat file which runs Craftbot build 435

    - The world creates.
    - Permissions Plugin Holder is loaded. (2.1)
    - Then it says done.

    I then join the game myself as vorna. I can destroy and create things.. I think im just part of the default group still. But cant check to see how.

    - I have no powers at all. I can still do things from the command prompt outside the game though.
    - My game seems to lag a bit now for some reason... which my character stops walking and then going.
    - and my Server begins being flooded with the message "Chunk Fetched is not the chunk Requested"

    As you all know, that ate up a lot of ram. So here is my question since this is my first time running a Bukkit server.

    Are the build problem and the permissions problem related or are they seperate? Because I can swear up and down there is nothing wrong with my permissions, yet I cannot get them to work even though the plugin is loaded.

    Code:
    plugin:
        permissions:
            system: default
    
    ##
    # Groups can contain inheritance.
    #   To make a group inherit the permissions from another
    #   group simply place the groups name in the "inheritance:"
    #   field seperated by commas.
    #
    #   Example: inheritance: Default,Admins,
    ##
    #   All permissions including the asterisks must be placed in single quotes.
    #   like so:
    #
    #       - 'general.spawn'
    #
    #   Otherwise errors will happen!
    ##
    #   Globalized Permission settings:
    #
    #       If a permission contains periods (.) you can denote a globalized parameter:
    #
    #           - 'general.*'
    #
    #       This will allow you to use all general commands.
    #
    ##
    #
    #   Single Asterisk denotes all commands:
    #
    #       - '*'
    ##
    groups:
        Guest:
            default: false
            info: {prefix: '&8[&0Guest&8]&8', suffix: '&8', build: true}
            inheritance: []
            permissions: [general.spawn, essentials.rules, essentials.afk, essentials.motd, essentials.help]
        User:
            default: false
            info: {prefix: '&8[&6User&8]&e', suffix: '&f', build: true}
            inheritance: [Guest]
            permissions: [essentials.home, essentials.sethome]
        SU:
            default: false
            info: {prefix: '&8[&3SuperUser&8]&b',suffix: '&f', build: true}
            inheritance: [User]
            permissions:
        VIP:
            default: false
            info: {prefix: '&2[&aV&2I&aP&2]&a', suffix: '&f', build: true}
            inheritance: [SU]
            permissions:
        Moderator:
            default: false
            info: {prefix: '&8[&4Mod&8]&4', suffix: '&f', build: true}
            inheritance: [VIP]
            permissions:
        Admin:
            default: false
            info: {prefix: '&4[&1Admin&4]&9', suffix: '&a', build: true}
            inheritance: [Moderator]
            permissions: [general.*, tpack.*, tpack.cuboid, essentials.*]
        Owner:
            default: true
            info: {prefix: '&4[&1Owner&4]&9', suffix: '&a', build: true}
            inheritance: [Admin]
            permissions: ['*']
    ##
    # Wintendo1 has control over all general commands.
    # Gman8403 and Craigger can use /setspawn
    ##
        vorna:
            group: Owner
            permissions:
        Vorna:
            group: Admin
            permissions:
        gman8403:
            group: Admin
            permissions:
    

    Oh and before you ask.. Yes I know the owner is on default. I was testing it because I got desperate to find out why its not working. (Which it still didnt give me any powers) Also, yes. I have vorna and Vorna. I tried both by themselves. but this was what I finsihed with. I just don't get why I cannot get thr permissions plugin to work.

    But is it the Chunk error problem im having related to it? Btw.. where can I download an earlier build? The build seem to be missing except for the .poms and build 435.jar
     
  5. Offline

    Flawd

    Must be a bug with 435. I'll try in the morning with the next build. Thanks for the feedback everyone.
     
  6. Offline

    Goblox

    Go back to 432. I don't recall if 433 does this as well but I'm certain 434 and 435 do.
     
  7. Offline

    cjc343

    I've gone back to 432 as well. I am not getting the errors any more.
     
  8. Offline

    Flawd

    432 works fine. Thanks again
     
  9. Offline

    Vorna

    Yea. 432 seems to have fixed it. Silly devs... always Spilling their mt dew on the keyboard causing sticky buttons causing bad coding. tsk tsk. :p I looked into it. It seems its like the code line requesting the the chunk of choice is not matching what the code actually does... so its complaining about it... over and over again... lol.. So its like. I know you did your job right.. but Thats not what I requested dammit! ><.. but good guess on the chunk choice! ;)

    But of coarse Im not an expert on their coding, so beats me.
     
  10. Offline

    Timberjaw

    I believe 433 is the last build without this behavior. They're sorting out some chunk loading/caching issues, so builds after 433 will have debug messages until the chunk issues are sorted out.
     
Thread Status:
Not open for further replies.

Share This Page