Thread: Changing weapon attack speed and changing drop rate on rings.

Results 1 to 7 of 7
  1. #1 Changing weapon attack speed and changing drop rate on rings. 
    Registered Member
    Join Date
    May 2016
    Posts
    18
    Thanks given
    0
    Thanks received
    0
    Rep Power
    11
    So, I need help with changing a weapons attack speed and percent of drop rate on a ring, if you could help, it'd be much appreciated.
    Also, you can add my Skype if you'd like if you'd like to help me in the future as I started learning how to code yesterday, lol. I'm not putting up my server unless I think everything is ok.
    I have a very big to-do list that I want to complete before putting my server online that may take me months to complete but will be worth it in the end.
    My Skype is "hey.it.is.noley"
    Reply With Quote  
     

  2. #2  
    Banned
    Join Date
    May 2016
    Posts
    105
    Thanks given
    21
    Thanks received
    28
    Rep Power
    0
    asdsadsadsad
    Reply With Quote  
     

  3. #3  
    Registered Member
    Join Date
    May 2016
    Posts
    18
    Thanks given
    0
    Thanks received
    0
    Rep Power
    11
    Quote Originally Posted by Kazem View Post
    I could do that, and your list for a payment. add me on skype: adamdramaboy
    Eh, I'd prefer to learn how to do things on my own rather than someone else doing them. I also have 0$ in my Paypal.
    Reply With Quote  
     

  4. #4  
    Banned
    Join Date
    May 2016
    Posts
    105
    Thanks given
    21
    Thanks received
    28
    Rep Power
    0
    youtube, google is your answer then
    Reply With Quote  
     

  5. #5  
    Registered Member
    Join Date
    May 2016
    Posts
    639
    Thanks given
    260
    Thanks received
    66
    Rep Power
    56
    i can help add my skype: themamerican17
    Reply With Quote  
     

  6. #6  
    Registered Member
    Join Date
    May 2016
    Posts
    18
    Thanks given
    0
    Thanks received
    0
    Rep Power
    11
    Quote Originally Posted by TheAmerican View Post
    i can help add my skype: themamerican17
    I can't find your Skype, try adding mine?
    Reply With Quote  
     

  7. #7  
    Registered Member Shook Ones's Avatar
    Join Date
    Apr 2016
    Posts
    414
    Thanks given
    151
    Thanks received
    129
    Rep Power
    13
    For item speed:

    Search for
    Code:
    switch (c.playerEquipment[Player.playerWeapon]) {
    in CombatAssistant.java
    Right under it add:
    Code:
    case ####:
    return #;
    Change #### to item ID
    Change # to speed of the weapon (1 being fastest and 10 being slowest)

    To change drop rate for ring of wealth:

    Go to NPCHandler and search for:

    Code:
    public boolean rareDrops(int i) {
    Under you should see something like:

    Code:
    if (c.playerEquipment[c.playerRing] == 2572
    				&& c.playerEquipment[2] == 15834) {
    			ringOfWealth += 5;
    		}
    The rest is self explanatory
    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: 7
    Last Post: 02-25-2016, 10:17 PM
  2. how to change drop rates on matrix source
    By scullboy491 in forum Help
    Replies: 2
    Last Post: 06-02-2013, 07:22 AM
  3. i how to change drop rates on [pi]
    By beaten1 in forum Help
    Replies: 3
    Last Post: 08-28-2011, 11:51 PM
  4. How to change weapon attack delay.
    By tucybro in forum Help
    Replies: 4
    Last Post: 05-19-2009, 10:01 PM
  5. adding/changing weapon attack emotes!
    By Dust R I P in forum Tutorials
    Replies: 2
    Last Post: 03-13-2008, 08:13 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
  •