Thread: Why does this not work.

Results 1 to 4 of 4
  1. #1 Why does this not work. 
    Registered Member
    Join Date
    Jun 2010
    Posts
    296
    Thanks given
    2
    Thanks received
    2
    Rep Power
    37
    basically a dialogue should be the easyist thing ever, or so you would think.

    any idea why this isnt working basically the dialogue doesnt even display never mind the action buttons or anything just when you click the npc nothing at all pops up.

    DialogueHandler.java

    Code:
    case 100:
                            sendOption4("Floor 1 - Level 1","Floor 2 - Level 60","Dungeoneering Statistics","Dungeoneering Shop");
                            c.dialogueAction = 90;
                            c.teleAction = -1;
                            break;
    
                   case 125:
                            sendOption2("Re-do Dungeon", "Quit Dungeon");
                            c.dialogueAction = 91;
                            break;
    ActionHandler.java

    in the void for first click npv

    Code:
    case 37: 
    			c.getDH().sendDialogues(90, npcType);
    		        break;
    Reply With Quote  
     

  2. #2  
    Registered Member Script's Avatar
    Join Date
    Apr 2010
    Posts
    293
    Thanks given
    26
    Thanks received
    74
    Rep Power
    47
    Replace the 90 in the dialogue action with the case of the dialogue
    Reply With Quote  
     

  3. #3  
    Registered Member X Revolution's Avatar
    Join Date
    Feb 2011
    Age
    27
    Posts
    22
    Thanks given
    0
    Thanks received
    0
    Rep Power
    2
    Is the dialogue action already being used. Look in your dialogue handler for any other dialogue with dialogueAction = 90;
    How does one gain Java Experience

    If nobody offers help to gain experience?
    Reply With Quote  
     

  4. #4  
    Registered Member pk3r john's Avatar
    Join Date
    Apr 2009
    Posts
    877
    Thanks given
    16
    Thanks received
    30
    Rep Power
    63
    Code:
    case 37: 
    			c.getDH().sendDialogues(100, npcType);
    		        break;
    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. Replies: 2
    Last Post: 10-01-2012, 04:33 PM
  2. Replies: 7
    Last Post: 12-03-2008, 04:53 AM
  3. Replies: 8
    Last Post: 11-17-2007, 05:44 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
  •