Thread: 718 Different starters different xp different drop rate

Results 1 to 3 of 3
  1. #1 718 Different starters different xp different drop rate 
    Registered Member Saddam's Avatar
    Join Date
    Jul 2013
    Posts
    585
    Thanks given
    39
    Thanks received
    22
    Rep Power
    2
    Im trying to get this dialogue open "starter.java" whenever the players joins
    the dialogue is 3 starter choices,
    1.Easy
    2.Hard
    3.Rs xp

    i also can't get it to give lower xp and more drop rate to each one of them :/ help?
    Reasons why i started coding and learning java:
    1.Lost-Realm
    2.Santa Hat
    3.Santa Hat
    Oh.. wait forgot something..
    4.Santa Hat
    Reply With Quote  
     

  2. #2  
    Success is the worst teacher

    Santa Hat's Avatar
    Join Date
    Oct 2012
    Age
    24
    Posts
    3,337
    Thanks given
    801
    Thanks received
    1,185
    Rep Power
    189
    start the dialogue, will be like

    player.getDialogueManager().startDialogue("Starter ");

    then declare an integer in the Player class like;

    int starterType;

    then for each opption set starterType to 0, 1, 2

    0 being Easy, 1 being Hard, 2 being RS Xp

    then in the skills class where the xp is added base the xp amount on the starterType, ie.

    if (starterType == 0)
    exp = 2;
    else if....

    [Only registered and activated users can see links. ]
    Reply With Quote  
     

  3. #3  
    Registered Member Saddam's Avatar
    Join Date
    Jul 2013
    Posts
    585
    Thanks given
    39
    Thanks received
    22
    Rep Power
    2
    Quote Originally Posted by Santa Hat View Post
    start the dialogue, will be like

    player.getDialogueManager().startDialogue("Starter ");

    then declare an integer in the Player class like;

    int starterType;

    then for each opption set starterType to 0, 1, 2

    0 being Easy, 1 being Hard, 2 being RS Xp

    then in the skills class where the xp is added base the xp amount on the starterType, ie.

    if (starterType == 0)
    exp = 2;
    else if....
    Thanks
    Reasons why i started coding and learning java:
    1.Lost-Realm
    2.Santa Hat
    3.Santa Hat
    Oh.. wait forgot something..
    4.Santa Hat
    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: 1
    Last Post: 12-15-2013, 12:09 PM
  2. Replies: 3
    Last Post: 07-02-2013, 04:58 PM
  3. Replies: 8
    Last Post: 11-15-2012, 11:13 AM
  4. [562][rs2hd] XP and Drop Rates
    By Lolwut? in forum Help
    Replies: 11
    Last Post: 07-01-2011, 01:35 PM
  5. [pi] different starters
    By artist in forum Help
    Replies: 26
    Last Post: 06-27-2011, 06:28 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
  •