Thread: Noob question... please help?

Results 1 to 4 of 4
  1. #1 Noob question... please help? 
    semiautox
    Guest
    Okay. I made the command list in a notepad document.

    How do I make an emote button bring up an interface that has the command list? Or a quest dialogue box bring up the commands?

    In-depth please?

    Thanks.
    Reply With Quote  
     

  2. #2  
    Registered Member
    Core's Avatar
    Join Date
    Sep 2007
    Posts
    4,194
    Thanks given
    11
    Thanks received
    393
    Rep Power
    1985
    In packet 185 the action button packet you would need to find the ids of the buttons I believe one of them is 167:
    So if you want to bring up an interface with text on it like a help menu maybe you would put something like this
    Code:
    case 167:
    	sendQuest("", 8144);
    	sendQuest("", 8147);
    	sendQuest("", 8148);
    	sendQuest("", 8149);
    	sendQuest("", 8150);
    	sendQuest("", 8150);
    	sendQuestSomething(8143);
    	showInterface(8134);
    	flushOutStream();
    break;
    if you just want a seperate interface like this
    Code:
    case 167:
    showInterface(XXX);
    break;
    if you want dialogue it would be like this
    Code:
    case 167:
    	NpcDialogue = XX;
    	NpcDialogueSend = false;
    break;
    any other questions?
    Reply With Quote  
     

  3. #3  
    semiautox
    Guest
    So, what would I do if I want to change the first emote to bring up the box that has the commands?
    Reply With Quote  
     

  4. #4  
    Registered Member
    Core's Avatar
    Join Date
    Sep 2007
    Posts
    4,194
    Thanks given
    11
    Thanks received
    393
    Rep Power
    1985
    Well what ever your method is you would do like this.
    Code:
    Case EMOTE:
    YOURCOMMANDHELPMETHOD();
    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

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •