Thread: Seperating Dialog Options

Results 1 to 6 of 6
  1. #1 Seperating Dialog Options 
    Donator
    slash123's Avatar
    Join Date
    Apr 2014
    Posts
    183
    Thanks given
    5
    Thanks received
    12
    Rep Power
    0
    Hey guy I'm trying to get a nice clean look instead of everything being bunched together

    The picture below should explain it better.

    Thanks ahead of time!

    From -->



    To <--

    Reply With Quote  
     

  2. #2  
    Extreme Donator


    Join Date
    Mar 2009
    Posts
    1,461
    Thanks given
    111
    Thanks received
    184
    Rep Power
    79
    bump
    Attached image
    Quote Originally Posted by MaxXi View Post
    Your combat is so awsome that i almost forgot its the combat matrix coded.
    Quote Originally Posted by twobrosplay View Post
    Try allowing the batch file through your firewall?
    Quote Originally Posted by SS_Alophonse View Post
    i have no life u say ha anything u say kid.i doubt u can even get a girlfriend
    i bet u cant even code anything.
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    May 2011
    Age
    29
    Posts
    2,246
    Thanks given
    2,469
    Thanks received
    1,120
    Rep Power
    943
    Reply With Quote  
     

  4. Thankful user:


  5. #4  
    Registered Member
    Project's Avatar
    Join Date
    Dec 2010
    Posts
    2,669
    Thanks given
    1,043
    Thanks received
    820
    Rep Power
    1101
    As posted by Santa Hat
    Code:
    public boolean sendOptionsDialogue(String title, String... options) {
    	        int i = 0;
    	        player.getInterfaceManager().sendChatBoxInterface(1188);
    	        Object params[] = new Object[options.length + 1];
    	        params[i++] = Integer.valueOf(options.length);
    	        List optionsList = Arrays.asList(options);
    	        Collections.reverse(optionsList);
    	        for(Iterator iterator = optionsList.iterator(); iterator.hasNext();) {
    	            String string = (String)iterator.next();
    	            params[i++] = string;
    	        }
    
    	        player.getPackets().sendIComponentText(1188, 20, title);
    	        player.getPackets().sendRunScript(5589, params);
    	        return true;
    	    }
    Reply With Quote  
     

  6. #5  
    Donator
    slash123's Avatar
    Join Date
    Apr 2014
    Posts
    183
    Thanks given
    5
    Thanks received
    12
    Rep Power
    0
    Thanks =)
    Reply With Quote  
     

  7. #6  
    Donator
    slash123's Avatar
    Join Date
    Apr 2014
    Posts
    183
    Thanks given
    5
    Thanks received
    12
    Rep Power
    0
    Quote Originally Posted by Tyler H View Post
    lol I looked up "Dialogue Indexing" I'm so ashamed..
    Reply With Quote  
     


Thread Information
Users Browsing this Thread

There are currently 1 users browsing this thread. (0 members and 1 guests)


User Tag List

Similar Threads

  1. Npc Dialog Options
    By jester2290 in forum Help
    Replies: 0
    Last Post: 07-23-2011, 12:47 AM
  2. Npc Dialog + Teleport option
    By Vsall in forum Help
    Replies: 1
    Last Post: 04-30-2010, 02:18 AM
  3. Npc dialog with options + separate tele's
    By Jeddac in forum Requests
    Replies: 3
    Last Post: 10-30-2009, 11:25 PM
  4. option dialog
    By Dannos in forum Help
    Replies: 1
    Last Post: 06-02-2009, 07:02 PM
  5. npc dialog continu option
    By Serenity in forum Requests
    Replies: 4
    Last Post: 04-20-2009, 09:01 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •