Thread: Dialogue/Clicking Buttons problem.

Results 1 to 4 of 4
  1. #1 Dialogue/Clicking Buttons problem. 
    Registered Member
    Join Date
    May 2012
    Posts
    13
    Thanks given
    1
    Thanks received
    0
    Rep Power
    11
    So i've been trying to add a gambler to my server, but it just won't click the options

    Heres the dialogue:

    Code:
    case 90:			
    			sendOption4("How Do I Play?","Play Dice x60","Maybe Later","");
    			c.dialogueAction = 100;
    			break;
    
    
    		case 92:
    			sendNpcChat3("To play this game, you must offer me a set amount", 
    					"of coins. The minimum bet is 50k and the max bet is 20m",
    					"for players, and 50m for Donators.", 
    					c.talkingNpc, "~ Dice x60 ~");
    					c.nextChat = 93;
    					break;
    
    
    		case 93:
    			sendNpcChat4("", 
    					"I'll take your bet and roll a dice, and if that", 
    					"number is higher than 60, you win double your bet!",
    					"Care to try? Its very addicting and you can lose a lot.", 
    					c.talkingNpc, "~ Dice x60 ~");
    					c.nextChat = 0;
    					break;
    Here is my clickbutton

    Code:
    case 9178:
    				if (c.dialogueAction == 90) {					
    					c.getDH().sendDialogues(92, 2998);
    					return;
    				}
    				if (c.usingGlory)
    					c.getPA().startTeleport(Config.EDGEVILLE_X, Config.EDGEVILLE_Y, 0, "modern");
    				if (c.dialogueAction == 2)
    					c.getPA().startTeleport(3428, 3538, 0, "modern");
    				if (c.dialogueAction == 3)		
    					c.getPA().startTeleport(Config.EDGEVILLE_X, Config.EDGEVILLE_Y, 0, "modern");
    				if (c.dialogueAction == 4)
    					c.getPA().startTeleport(3565, 3314, 0, "modern");
    				if (c.dialogueAction == 20) {
    					c.getPA().startTeleport(2897, 3618, 4, "modern");
    				}
    				
    					
    			break;
    			
    			case 9179:
    				if (c.dialogueAction == 90) {					
    					c.getDH().sendDialogues(92, 2998);
    					return;
    				}
    				if (c.usingGlory)
    					c.getPA().startTeleport(Config.AL_KHARID_X, Config.AL_KHARID_Y, 0, "modern");
    				if (c.dialogueAction == 2)
    					c.getPA().startTeleport(2884, 3395, 0, "modern");
    				if (c.dialogueAction == 3)
    					c.getPA().startTeleport(3243, 3513, 0, "modern");
    				if (c.dialogueAction == 4)
    					c.getPA().startTeleport(2444, 5170, 0, "modern");
    				if (c.dialogueAction == 20) {
    					c.getPA().startTeleport(2897, 3618, 12, "modern");
    				}
    				
    			break;
    It shows the dialog, I just can't click the options What's up with it?
    Reply With Quote  
     

  2. #2  
    Registered Member
    Karma_K's Avatar
    Join Date
    Nov 2012
    Posts
    4,287
    Thanks given
    152
    Thanks received
    610
    Rep Power
    108
    should be dialogueaction 100....
    Reply With Quote  
     

  3. #3  
    Old Webdeveloper
    Dondxon's Avatar
    Join Date
    Aug 2011
    Posts
    1,147
    Thanks given
    209
    Thanks received
    108
    Rep Power
    65
    You have in your Dialogues dialogueAction = 100; But your not using them in clickingbuttons.
    Do you need any PHP work done? Or are you looking for RSPS integrations? click [Only registered and activated users can see links. ].

    [Only registered and activated users can see links. ]

    Reply With Quote  
     

  4. #4  
    Registered Member
    Join Date
    May 2012
    Posts
    13
    Thanks given
    1
    Thanks received
    0
    Rep Power
    11
    Thanks for the help guys, can anyone maybe quickily help me over skype?

    [Only registered and activated users can see links. ]

    I'm following that guide, and done everything 200 times now, not giving me a single error. but it just won't open the ammount I want to dice.

    Would really appreciate it, add my skype: thomas_wassink
    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. Clicking button problem
    By pwnsrd in forum Help
    Replies: 6
    Last Post: 12-28-2012, 01:08 AM
  2. Clicking buttons case problem? [PI]
    By 13lack drag in forum Help
    Replies: 6
    Last Post: 06-27-2012, 05:25 AM
  3. Click Button :p
    By Dreamsnake in forum Showcase
    Replies: 0
    Last Post: 10-14-2009, 09:20 PM
  4. Npc Dialogue(click here to continue...)
    By dont frunt in forum Help
    Replies: 2
    Last Post: 05-06-2009, 01:12 PM
  5. Login button problem.
    By Barinade in forum Help
    Replies: 12
    Last Post: 05-04-2009, 09:23 PM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •