Thread: SoulSplit Smiting

Results 1 to 7 of 7
  1. #1 SoulSplit Smiting 
    Registered Member
    Join Date
    Jun 2010
    Posts
    296
    Thanks given
    2
    Thanks received
    2
    Rep Power
    37
    quick question where do you change the amount smited per hit because people get smited off to fuck at the moment.
    Reply With Quote  
     

  2. #2  
    Kuhn
    Guest
    English please?
    Reply With Quote  
     

  3. #3  
    HEAD GFX DESIGNER

    Rusko's Avatar
    Join Date
    Aug 2010
    Posts
    3,316
    Thanks given
    645
    Thanks received
    1,199
    Rep Power
    5000
    Translation: Where do I decrease the amount a player is smited, because people are being smited badly right now.
    Reply With Quote  
     

  4. #4  
    Registered Member
    Join Date
    Jun 2010
    Posts
    296
    Thanks given
    2
    Thanks received
    2
    Rep Power
    37
    basically how do adjust the amount of prayer drained from a single hit. for example soul split has a smite ability to drain prayer. however at the moment each hit is draining shit loads of prayer.
    Reply With Quote  
     

  5. #5  
    Donator


    Join Date
    Jan 2010
    Age
    29
    Posts
    4,122
    Thanks given
    274
    Thanks received
    551
    Rep Power
    738
    Quote Originally Posted by x eddie x View Post
    check the smithing.java bro its not hard..
    Thanks for the troll

    he means not smithing but something else the prayer of his players gets drained to much
    Reply With Quote  
     

  6. #6  
    Registered Member
    Mr.Client's Avatar
    Join Date
    Jun 2010
    Posts
    2,094
    Thanks given
    100
    Thanks received
    317
    Rep Power
    259
    Quote Originally Posted by x eddie x View Post
    check the smithing.java bro its not hard..
    he means the prayer smite
    Reply With Quote  
     

  7. #7  
    Registered Member Satan666's Avatar
    Join Date
    May 2010
    Posts
    449
    Thanks given
    65
    Thanks received
    100
    Rep Power
    15
    here's the methode just adjust something in it.
    Code:
        public void applySmite(int index, int damage) {
            if (!c.prayerActive[23]) {
                return;
            }
            if (damage <= 0) {
                return;
            }
            if (Server.playerHandler.players[index] != null) {
                Client c2 = (Client) Server.playerHandler.players[index];
                c2.playerLevel[5] -= (int) (damage / 4);
                if (c2.playerLevel[5] <= 0) {
                    c2.playerLevel[5] = 0;
                    c2.getCombat().resetPrayers();
                }
                c2.getPA().refreshSkill(5);
            }
        }
    its combatassisttant.java

    Code:
    c2.playerLevel[5] -= (int) (damage / 4);
    thats the line u gotta edit.
    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. soulsplit...
    By jessie thompson in forum Help
    Replies: 6
    Last Post: 11-28-2010, 09:54 PM
  2. [PI] Soulsplit GFX
    By xTylerR in forum Help
    Replies: 0
    Last Post: 10-30-2010, 04:15 AM
  3. [PI]SoulSplit help!
    By zivkovic in forum Help
    Replies: 4
    Last Post: 10-22-2010, 01:56 PM
  4. SoulSplit ?
    By Snow Cat123 in forum Forum Related Help
    Replies: 8
    Last Post: 10-15-2010, 08:45 PM
  5. Dodain - Smiting solution [blocking with uid]
    By littleplop in forum Tutorials
    Replies: 20
    Last Post: 05-27-2008, 01:12 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
  •