Thread: I Need Some One Create This

Results 1 to 10 of 10
  1. #1 I Need Some One Create This 
    I heal clients


    Join Date
    Apr 2013
    Posts
    680
    Thanks given
    65
    Thanks received
    239
    Rep Power
    108
    I Need Some One Create This dialogues and cases
    i need some one to create dialogues content
    1- Archer
    2- Mage
    3- Meele
    and if i choose archer it give 10M
    and if i choose Mager it give 9M
    and if i choose Meele it give 8M
    Please
    NO ONE IS PERFECT
    "No one in this world is pure and perfect, if you avoid people for their little mistakes you will be always alone in this world, so judge less and love more."
    "Ship in the harbor is safe, but that is not what ships are built for."
    Reply With Quote  
     

  2. #2  
    Registered Member
    Karma_K's Avatar
    Join Date
    Nov 2012
    Posts
    4,283
    Thanks given
    152
    Thanks received
    610
    Rep Power
    108
    i loled at your sig.

    but creating dialogues is easy.. idk what you want..but you can just do this?

    case NPCID:
    c.getDH().sendDialogues(1, 1);
    break;

    then go to dialoguehandler and add the dialogues

    case 1:
    sendNpcChat1("Hi, i give you 10m okay.",c.talkingNpc,"Archer");
    c.getItems().addItems(995, 100000000;
    c.nextChat = 0;
    break;
    Reply With Quote  
     

  3. Thankful user:


  4. #3  
    Registered Member

    Join Date
    May 2012
    Age
    28
    Posts
    1,548
    Thanks given
    415
    Thanks received
    231
    Rep Power
    81
    Quote Originally Posted by Karma_K View Post
    i loled at your sig.
    So did I, lmfao, hack3r is a pro at adding tuts, but he's really not as good as you think.
    Inactive.


    Spoiler for FirstDesign:
    Reply With Quote  
     

  5. #4  
    I heal clients


    Join Date
    Apr 2013
    Posts
    680
    Thanks given
    65
    Thanks received
    239
    Rep Power
    108
    i don't need it for npc i need it for the start package when new player start it shown dialogues show 3 option mage meele archer every one give custom items
    NO ONE IS PERFECT
    "No one in this world is pure and perfect, if you avoid people for their little mistakes you will be always alone in this world, so judge less and love more."
    "Ship in the harbor is safe, but that is not what ships are built for."
    Reply With Quote  
     

  6. #5  
    Registered Member
    Karma_K's Avatar
    Join Date
    Nov 2012
    Posts
    4,283
    Thanks given
    152
    Thanks received
    610
    Rep Power
    108
    Quote Originally Posted by walied yassen View Post
    i don't need it for npc i need it for the start package when new player start it shown dialogues show 3 option mage meele archer every one give custom items
    shouldve been more specific then..

    just go to addstarter or whateer in playerass

    c.getDH().sendDialogues(1, 1);

    dialoguehandler

    case 1:
    sendOption4("Melee","Range","Mage","");
    c.dialogueAction = 1;
    break;

    clickingbuttons

    case 9178:
    if(c.dialogueAction == 1){
    c.getItems().addItem(995, 10000000);
    }
    break;

    case 9179:
    if(c.dialogueAction == 1){
    c.getItems().addItem(995, 10000000);
    }
    break;

    case 9180:
    if(c.dialogueAction == 1){
    c.getItems().addItem(995, 10000000);
    }
    break;

    case 9181:
    if(c.dialogueAction == 1){
    c.getItems().addItem(995, 10000000);
    }
    break;
    Reply With Quote  
     

  7. #6  
    I heal clients


    Join Date
    Apr 2013
    Posts
    680
    Thanks given
    65
    Thanks received
    239
    Rep Power
    108
    hey do i need to change any of any numbers
    NO ONE IS PERFECT
    "No one in this world is pure and perfect, if you avoid people for their little mistakes you will be always alone in this world, so judge less and love more."
    "Ship in the harbor is safe, but that is not what ships are built for."
    Reply With Quote  
     

  8. #7  
    Registered Member
    Karma_K's Avatar
    Join Date
    Nov 2012
    Posts
    4,283
    Thanks given
    152
    Thanks received
    610
    Rep Power
    108
    Quote Originally Posted by walied yassen View Post
    hey do i need to change any of any numbers
    that was just an example.. you might have to, yes.
    Reply With Quote  
     

  9. #8  
    I heal clients


    Join Date
    Apr 2013
    Posts
    680
    Thanks given
    65
    Thanks received
    239
    Rep Power
    108
    for what i need to change theese after changing do i need to do anything else
    Code:
    Server Compiler Start
    source\server\model\players\packets\ClickingButtons.java:3111: error: duplicate
    case label
                            case 9178:
                            ^
    source\server\model\players\packets\ClickingButtons.java:3200: error: duplicate
    case label
                            case 9179:
                            ^
    source\server\model\players\packets\ClickingButtons.java:3284: error: duplicate
    case label
                            case 9180:
                            ^
    source\server\model\players\packets\ClickingButtons.java:3364: error: duplicate
    case label
                            case 9181:
                            ^
    Note: Some input files use unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    4 errors
    Finished Compiling Server :D
    Press any key to continue . . .
    NO ONE IS PERFECT
    "No one in this world is pure and perfect, if you avoid people for their little mistakes you will be always alone in this world, so judge less and love more."
    "Ship in the harbor is safe, but that is not what ships are built for."
    Reply With Quote  
     

  10. #9  
    Registered Member
    Karma_K's Avatar
    Join Date
    Nov 2012
    Posts
    4,283
    Thanks given
    152
    Thanks received
    610
    Rep Power
    108
    Quote Originally Posted by walied yassen View Post
    for what i need to change theese after changing do i need to do anything else
    Code:
    Server Compiler Start
    source\server\model\players\packets\ClickingButtons.java:3111: error: duplicate
    case label
                            case 9178:
                            ^
    source\server\model\players\packets\ClickingButtons.java:3200: error: duplicate
    case label
                            case 9179:
                            ^
    source\server\model\players\packets\ClickingButtons.java:3284: error: duplicate
    case label
                            case 9180:
                            ^
    source\server\model\players\packets\ClickingButtons.java:3364: error: duplicate
    case label
                            case 9181:
                            ^
    Note: Some input files use unchecked or unsafe operations.
    Note: Recompile with -Xlint:unchecked for details.
    4 errors
    Finished Compiling Server :D
    Press any key to continue . . .
    Reply With Quote  
     

  11. #10  
    I heal clients


    Join Date
    Apr 2013
    Posts
    680
    Thanks given
    65
    Thanks received
    239
    Rep Power
    108
    i did it but when i play the game it shown
    1- meele
    2- mage
    3- range
    4- skiller
    but when i press on one nothing happen
    NO ONE IS PERFECT
    "No one in this world is pure and perfect, if you avoid people for their little mistakes you will be always alone in this world, so judge less and love more."
    "Ship in the harbor is safe, but that is not what ships are built for."
    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. Need some one to host your server look here!!
    By I_weed_I in forum Hosting
    Replies: 4
    Last Post: 10-11-2010, 11:06 AM
  2. Could some one rename this?
    By x Shoter x in forum Requests
    Replies: 6
    Last Post: 10-01-2010, 08:03 PM
  3. Need some help with this!plz
    By Richie in forum Help
    Replies: 3
    Last Post: 04-21-2010, 10:06 PM
  4. Does some one eat this?
    By Meet Willy in forum Images
    Replies: 1
    Last Post: 08-06-2008, 11:51 AM
  5. can some one cut this please
    By oblivorato in forum Graphics
    Replies: 8
    Last Post: 06-19-2008, 12:00 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
  •