1. The forums will be archived and moved to a read only mode in about 2 weeks (mid march).

Solved Latest PMMP

Discussion in 'Help' started by Gabriel Gomez, Jun 6, 2017.

  1. Gabriel Gomez

    Gabriel Gomez Spider Jockey

    Messages:
    32
    GitHub:
    ggomez
    Wait, is the PocketMine-MP.phar file for the release of MCPE that happened a few days ago out?


    (Hope I posted this in the correct section)

    (Edit: Changed 'PocketMine.MP' to 'PocketMine-MP.phar')
     
    Last edited: Jun 7, 2017
  2. HBIDamian

    HBIDamian HBIDamian Staff Member

    Messages:
    365
    GitHub:
    HBIDamian
    TuxerP and jasonwynn10 like this.
  3. Gabriel Gomez

    Gabriel Gomez Spider Jockey

    Messages:
    32
    GitHub:
    ggomez
    Yes, that is what I meant. I looked on that link and build 154 is the latest... When I run it on my mcpe server and execute the command "/version" on console I get that it says it is for 1.0.7.0 I am looking for the .phar for the 1.1.0.0 version of MCPE. (I know that the 154 build .phar does not work for me because I tried to join the server using a device running 1.1.0.0 and got a 'Syncing pack with server' screen and showed on console that 'ipaddress logged out do to login timeout... Unless that screen is caused by something else this is not the .phar I am looking for)

    (Edit: If you need more info just tell me what you need to know)
     
  4. HBIDamian

    HBIDamian HBIDamian Staff Member

    Messages:
    365
    GitHub:
    HBIDamian
    The information you supplied does not add up. I have ran the Build #154 myself, and it seems fine.
    Code:
    [23:07:45] [Server thread/INFO]: Loading pocketmine.yml...
    [23:07:45] [Server thread/INFO]: Loading server properties...
    [23:07:45] [Server thread/INFO]: Selected English (eng) as the base language
    [23:07:45] [Server thread/INFO]: Starting Minecraft: PE server version v1.1.0.55
    [23:07:45] [Server thread/INFO]: Opening server on 0.0.0.0:19132
    [23:07:46] [Server thread/INFO]: This server is running PocketMine-MP version 1.6.2dev-154 "Unleashed" (API 3.0.0-ALPHA5)
    [23:07:46] [Server thread/INFO]: PocketMine-MP is distributed under the LGPL License
    [23:07:46] [Server thread/INFO]: Loading recipes...
    [23:07:47] [Server thread/INFO]: Loading resource packs...
    [23:07:47] [Server thread/INFO]: Preparing level "world"
    [23:07:47] [Server thread/INFO]: Starting GS4 status listener
    [23:07:47] [Server thread/INFO]: Setting query port to 19132
    [23:07:47] [Server thread/INFO]: Query running on 0.0.0.0:19132
    [23:07:47] [Server thread/INFO]: Default game type: Creative Mode
    [23:07:47] [Server thread/INFO]: Done (2.185s)! For help, type "help" or "?"
    
    Your server should look similar to mine. I have also tried using /version (on console without the slash) and I got this output.
    [
    Code:
    23:08:19] [Server thread/INFO]: This server is running PocketMine-MP 1.6.2dev-154 「Unleashed」 implementing API version 3.0.0-ALPHA5 for Minecraft: PE v1.1.0.55 (protocol version 113)
    Please make sure you have saved the PocketMine-MP.phar properally.
    1. Delete old "PocketMine-MP.phar" file.
    2. Please download this version (#154 https://jenkins.pmmp.io/job/PocketM...P_1.6.2dev-154_9cc27b27_API-3.0.0-ALPHA5.phar)
    3. Save it in your PocketMine-MP folder as the name "PocketMine-MP.phar".
    ( you dont need the "_1.6.2dev-154_9cc27b27_API-3.0.0-ALPHA5" in the name, as this will not work.
    Done
     
    Last edited: Jun 7, 2017
    jasonwynn10 likes this.
  5. Gabriel Gomez

    Gabriel Gomez Spider Jockey

    Messages:
    32
    GitHub:
    ggomez
    What do you mean by folder?

    (Edit: Okay I see what you mean. Figured out I needed to stop and then start the server.... whoops)
     
    Last edited: Jun 7, 2017
  6. HBIDamian

    HBIDamian HBIDamian Staff Member

    Messages:
    365
    GitHub:
    HBIDamian
    Folder = Directory
     
  7. Gabriel Gomez

    Gabriel Gomez Spider Jockey

    Messages:
    32
    GitHub:
    ggomez
    Another problem has risen. I am now getting a crash when I join the server.

    PocketMine-MP Crash Dump Tue Jun 6 23:46:09 UTC 2017

    Error: Argument 1 passed to pocketmine\utils\Binary::writeVarLong_64() must be of the type integer, null given, called in phar:///root/PocketMine-MP.phar/src/pocketmine/utils/Binary.php on line 650
    File: /src/pocketmine/utils/Binary
    Line: 677
    Type: notice

    Code:
    [668] return self::writeUnsignedVarLong_32($v);
    [669] }
    [670]
    [671] /**
    [672] * 64-bit VarLong encoder.
    [673] *
    [674] * @param int $v
    [675] * @return string
    [676] */
    [677] public static function writeVarLong_64(int $v) : string{
    [678] return self::writeUnsignedVarLong_64(($v << 1) ^ ($v >> 63));
    [679] }
    [680]
    [681] /**
    [682] * Writes a 64-bit integer as a variable-length long
    [683] *
    [684] * @param int|string $v
    [685] * @return string up to 10 bytes
    [686] */
    [687] public static function writeUnsignedVarLong($v) : string{

    Backtrace:
    #0 /src/pocketmine/utils/Binary(650): pocketmine\utils\Binary::writeVarLong_64(NULL )
    #1 /src/pocketmine/utils/BinaryStream__64bit(343): pocketmine\utils\Binary::writeVarLong(NULL )
    #2 /src/pocketmine/network/mcpe/protocol/DataPacket(278): pocketmine\utils\BinaryStream->putVarLong(NULL )
    #3 /src/pocketmine/network/mcpe/protocol/AddPlayerPacket(77): pocketmine\network\mcpe\protocol\DataPacket->putEntityUniqueId(NULL )
    #4 /src/pocketmine/network/mcpe/RakLibInterface(193): pocketmine\network\mcpe\protocol\AddPlayerPacket->encode(boolean)
    #5 /src/pocketmine/Player__64bit(1081): pocketmine\network\mcpe\RakLibInterface->putPacket(pocketmine\Player object, pocketmine\network\mcpe\protocol\AddPlayerPacket object, boolean , boolean )
    #6 /Slapper.phar/src/slapper/entities/SlapperHuman(77): pocketmine\Player->dataPacket(pocketmine\network\mcpe\protocol\AddPlayerPacket object)
    #7 /src/pocketmine/Player__64bit(913): slapper\entities\SlapperHuman->spawnTo(pocketmine\Player object)
    #8 /src/pocketmine/Player__64bit(861): pocketmine\Player->doFirstSpawn(boolean)
    #9 /src/pocketmine/Player__64bit(1743): pocketmine\Player->sendNextChunk(boolean)
    #10 /src/pocketmine/Server__64bit(2417): pocketmine\Player->checkNetwork(boolean)
    #11 /src/pocketmine/Server__64bit(2179): pocketmine\Server->tick(boolean)
    #12 /src/pocketmine/Server__64bit(2061): pocketmine\Server->tickProcessor(boolean)
    #13 /src/pocketmine/Server__64bit(1646): pocketmine\Server->start(boolean)
    #14 /src/pocketmine/PocketMine(501): pocketmine\Server->__construct(BaseClassLoader object, pocketmine\utils\MainLogger object, string phar:///root/PocketMine-MP.phar/, string /root/, string /root/plugins/)
    #15 (1): require(string phar:///root/PocketMine-MP.phar/src/pocketmine/PocketMine.php)

    PocketMine-MP version: 1.6.2dev #154 [Protocol 113; API 3.0.0-ALPHA5]
    Git commit: 0000000000000000000000000000000000000000
    uname -a: Linux localhost 4.9.15-x86_64-linode81 #1 SMP Fri Mar 17 09:47:36 EDT 2017 x86_64
    PHP Version: 7.0.3
    Zend version: 3.0.0
    OS : Linux, linux

    Loaded plugins:
    SimpleAuth 1.8.1 by PocketMine Team, shoghicp, awzaw for API(s) 2.0.0, 3.0.0-ALPHA1, 3.0.0-ALPHA2, 3.0.0-ALPHA3, 3.0.0-ALPHA4, 3.0.0-ALPHA5
    SimpleAuthHelper 2.0.5 by aliuly for API(s) 2.0.0, 3.0.0-ALPHA1, 3.0.0-ALPHA2, 3.0.0-ALPHA3, 3.0.0-ALPHA4, 3.0.0-ALPHA5
    Jail 1.1.2 by hoyinm14mc for API(s) 2.0.0, 3.0.0-ALPHA3, 3.0.0-ALPHA4, 3.0.0-ALPHA5
    PurePerms 1.4.0-INDEV by 64FF00 & ProjectInfinity for API(s) 1.13.0, 2.0.0, 2.1.0, 3.0.0-ALPHA1, 3.0.0-ALPHA2, 3.0.0-ALPHA3, 3.0.0-ALPHA4, 3.0.0-ALPHA5
    EssentialsPE 2.0.0 by LegendsOfMCPE Team for API(s) 3.0.0-ALPHA5
    PureChat 1.4.1 by 64FF00 for API(s) 1.13.0, 2.0.0, 3.0.0-ALPHA1, 3.0.0-ALPHA2, 3.0.0-ALPHA3, 3.0.0-ALPHA4, 3.0.0-ALPHA5

    I just got rid of Slapper and the server is working now. Is there a slapper version that will work with 1.1.0.0 (Build 154)

    (The slapper version that I used when I got the crash was from this link https://poggit.pmmp.io/ci/jojoe77777/Slapper ... I used the one uploaded at 5:14:22 AM)
     
  8. HBIDamian

    HBIDamian HBIDamian Staff Member

    Messages:
    365
    GitHub:
    HBIDamian
    jasonwynn10 likes this.
  9. Gabriel Gomez

    Gabriel Gomez Spider Jockey

    Messages:
    32
    GitHub:
    ggomez
    Okay, thank you for all of the help!
     
  1. This site uses cookies to help personalise content, tailor your experience and to keep you logged in if you register.
    By continuing to use this site, you are consenting to our use of cookies.