Thread: Chaotic Crossbow doesnt hit properly

Results 1 to 7 of 7
  1. #1 Chaotic Crossbow doesnt hit properly 
    Registered Member Blaze3211's Avatar
    Join Date
    Dec 2012
    Posts
    384
    Thanks given
    39
    Thanks received
    4
    Rep Power
    10
    Hi there,
    I've been working on a server for a while now on a base called Erasedpkz and one of the major problems that i have been unable to fix from the start is my Chaotic crossbow not working properly, when i use it against npc's it hits a max of 12 or 13 regardless of the gear I'm in or the stats it has and when I'm in the wilderness for some reason it requires arrows to use against other players. If there's a way i can fix this i can finally get my server up and running. Any help?
    Much appreciated.
    Reply With Quote  
     

  2. #2  
    Registered Member Blaze3211's Avatar
    Join Date
    Dec 2012
    Posts
    384
    Thanks given
    39
    Thanks received
    4
    Rep Power
    10
    Any Help?
    Reply With Quote  
     

  3. #3  
    Donator

    Chief Sosa's Avatar
    Join Date
    Jun 2012
    Posts
    1,163
    Thanks given
    49
    Thanks received
    234
    Rep Power
    83
    Quote Originally Posted by Blaze3211 View Post
    Any Help?
    Have you added the server side for the cross bow ?

    Reply With Quote  
     

  4. #4  
    Registered Member
    Join Date
    Dec 2013
    Posts
    78
    Thanks given
    1
    Thanks received
    3
    Rep Power
    11
    The best way of going around this if you don't already know what to do is to follow the rune crossbow server-sided but obviously making the Chaotic Cbow like it, just increase the stats in item.cfg, or does your source use a different method? Probably not, also is this just with the Ccbow or is it with all range equipment? if so look at CombatAssistant
    Reply With Quote  
     

  5. #5  
    Quality over quantity


    Join Date
    Dec 2011
    Age
    28
    Posts
    1,318
    Thanks given
    74
    Thanks received
    157
    Rep Power
    110
    For the arrows against other players, that's in combat assistant. Look for the check for rune crossbow using bolts and add to that.
    Reply With Quote  
     

  6. #6  
    Registered Member
    Join Date
    Sep 2013
    Posts
    52
    Thanks given
    4
    Thanks received
    3
    Rep Power
    19
    go to combatassistant, use your brain find every 9185 (I think thats rune cbow code) the code and add 18357 (i think thats ccbow)
    for example.
    Code:
    boolean usingCross = c.playerEquipment[c.playerWeapon] == 9185;
    Code:
    boolean usingCross = c.playerEquipment[c.playerWeapon] == 9185 || c.playerEquipment[c.playerWeapon] == 18357;
    Code:
    				if(correctBowAndArrows() < c.playerEquipment[c.playerArrows] && Config.CORRECT_ARROWS  && !usingCrystalBow() && usingBow && c.playerEquipment[c.playerWeapon] != 9185) {
    Code:
    				if(correctBowAndArrows() < c.playerEquipment[c.playerArrows] && Config.CORRECT_ARROWS  && !usingCrystalBow() && usingBow && c.playerEquipment[c.playerWeapon] != 9185 && c.playerEquipment[c.playerWeapon] != 18357) {
    do that, use crtl+F to search for 9185
    Classes
    combatassistant
    attackplayer
    clicknpc
    player

    I think thats it.
    Reply With Quote  
     

  7. #7  
    Registered Member Blaze3211's Avatar
    Join Date
    Dec 2012
    Posts
    384
    Thanks given
    39
    Thanks received
    4
    Rep Power
    10
    Thanks, i'll try that
    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: 9
    Last Post: 07-17-2013, 06:02 PM
  2. Replies: 19
    Last Post: 07-06-2013, 10:23 PM
  3. Chaotic Crossbow weak hits
    By Blaze3211 in forum Help
    Replies: 11
    Last Post: 04-16-2013, 08:29 PM
  4. Replies: 2
    Last Post: 08-15-2011, 09:01 PM
  5. Replies: 5
    Last Post: 03-14-2009, 01:41 AM
Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •