[Help]Selection with Next

Results 1 to 9 of 9
  1. #1
    :l Cygnus is offline
    MemberRank
    Mar 2015 Join Date
    f425Location
    237Posts

    [Help]Selection with Next

    Hello~
    I'm wondering if anyone has the NPCConversation method for sending a selection with a next button for lower versions v55-v83 (or any version for that matter), and is feeling inclined to share. I'd try to figure it out on my own, but I'm completely ignorant in this matter, so it would be convenient if someone would be willing to share or give hints . This being how it looks;


  2. #2
    The journey never ends. SYJourney is offline
    MemberRank
    Mar 2015 Join Date
    FrankfurtLocation
    427Posts

    Re: [Help]Selection with Next

    Don't they always have the next button? My selection does:
    Code:
    public void sendSimple(String text, byte speaker) {
            getClient().announce(MaplePacketCreator.getNPCTalk(npc, (byte) 4, text, "", speaker));
        }
    Packet is available in MoopleDev but you should have the same structure in your source.

  3. #3
    :l Cygnus is offline
    MemberRank
    Mar 2015 Join Date
    f425Location
    237Posts

    Re: [Help]Selection with Next

    Quote Originally Posted by SYJourney View Post
    Don't they always have the next button? My selection does:
    Code:
    public void sendSimple(String text, byte speaker) {
            getClient().announce(MaplePacketCreator.getNPCTalk(npc, (byte) 4, text, "", speaker));
        }
    Packet is available in MoopleDev but you should have the same structure in your source.
    Oh, had no idea Moople had this, the speaker byte wasn't in my getNPCTalk packet, thanks :)
    This is how it looks without the next button

  4. #4
    The journey never ends. SYJourney is offline
    MemberRank
    Mar 2015 Join Date
    FrankfurtLocation
    427Posts

    Re: [Help]Selection with Next

    Huh, weird. I've actually never seen that before...

  5. #5
    :l Cygnus is offline
    MemberRank
    Mar 2015 Join Date
    f425Location
    237Posts

    Re: [Help]Selection with Next

    Turns out the speaker byte wasn't even in v62 (furthermore it doesn't appear to be what turns it into a selection with next either). I've tried playing with the selection method
    Code:
        public void sendSimple(String text) {        getClient().getSession().write(MaplePacketCreator.getNPCTalk(npc, (byte) 4, text, ""));
        }
    But can't seem to figure it out. Coming into this, I was absolutely certain the Selection+Next type was in lower version, but seeing as the method is the very same (apart from the speaker byte) in v83 and unlike v62, it has the next button, I'm not so sure anymore. Could anyone help shed some light?

  6. #6
    Nae-un <33 Thane Krios is offline
    MemberRank
    Jun 2012 Join Date
    CaliforniaLocation
    568Posts

    Re: [Help]Selection with Next

    I played on v55/v62 before and I believe that they don't have the cm.sendSelection with a next.

  7. #7
    :l Cygnus is offline
    MemberRank
    Mar 2015 Join Date
    f425Location
    237Posts

    Re: [Help]Selection with Next

    Quote Originally Posted by Thane Krios View Post
    I played on v55/v62 before and I believe that they don't have the cm.sendSelection with a next.
    Are you talking about GMS or private servers? Private servers I know for sure don't; but I'm fairly certain they used to have selections with next buttons ie. for Victoria Island taxi's way back when ;_;

  8. #8
    Moderator Eric is offline
    ModeratorRank
    Jan 2010 Join Date
    DEV CityLocation
    3,188Posts

    Re: [Help]Selection with Next

    Quote Originally Posted by Cygnus View Post
    Are you talking about GMS or private servers? Private servers I know for sure don't; but I'm fairly certain they used to have selections with next buttons ie. for Victoria Island taxi's way back when ;_;
    lol next has always been there. I can't remember if i had it working on v40beta or not, i know simple itself is though. for sure v55/v62 does have next within their sendSimples, I remember some server would trick you and crash you when you clicked next on a sendSimple when they were v62.

  9. #9
    :l Cygnus is offline
    MemberRank
    Mar 2015 Join Date
    f425Location
    237Posts

    Re: [Help]Selection with Next

    Quote Originally Posted by chunkarama View Post
    lol next has always been there. I can't remember if i had it working on v40beta or not, i know simple itself is though. for sure v55/v62 does have next within their sendSimples, I remember some server would trick you and crash you when you clicked next on a sendSimple when they were v62.
    Alright, thanks for confirming :)



Advertisement