Thread: [PI] need help.

Results 1 to 6 of 6
  1. #1 [PI] need help. 
    Donator
    MrBeka's Avatar
    Join Date
    Jan 2011
    Age
    28
    Posts
    306
    Thanks given
    14
    Thanks received
    16
    Rep Power
    20
    Hello guys
    I'm kinda new to Coding, and i have a question:
    How do i increase the powers of weapons? like d claw specs or VLS SPEC?
    Reply With Quote  
     

  2. #2  
    Donator


    Join Date
    Sep 2008
    Age
    27
    Posts
    397
    Thanks given
    138
    Thanks received
    27
    Rep Power
    161
    CombatAssistant.Java.



    [Only registered and activated users can see links. ]
    ---


    Lawl! ^ ^
    Reply With Quote  
     

  3. #3  
    Donator
    MrBeka's Avatar
    Join Date
    Jan 2011
    Age
    28
    Posts
    306
    Thanks given
    14
    Thanks received
    16
    Rep Power
    20
    Quote Originally Posted by Ragez Fury View Post
    CombatAssistant.Java.
    Ragez, tyvm but what's next when i'm there?
    Reply With Quote  
     

  4. #4  
    Banned
    Join Date
    Oct 2008
    Age
    24
    Posts
    57
    Thanks given
    20
    Thanks received
    21
    Rep Power
    0
    Quote Originally Posted by MrBeka View Post
    Ragez, tyvm but what's next when i'm there?
    Search the item id with case like:

    case ####:
    Reply With Quote  
     

  5. Thankful user:


  6. #5  
    Donator
    MrBeka's Avatar
    Join Date
    Jan 2011
    Age
    28
    Posts
    306
    Thanks given
    14
    Thanks received
    16
    Rep Power
    20
    case 15027:
    c.gfx0(1950);
    c.startAnimation(10961);
    c.specAccuracy = 320.0;
    c.clawDamage = 0;

    if (c.playerIndex > 0) {
    Client o = (Client) Server.playerHandler.players[c.playerIndex];
    if (Misc.random(calculateMeleeAttack()) > Misc.random(o.getCombat().calculateMeleeDefence()) ) {
    c.clawDamage = Misc.random(calculateMeleeMaxHit() + Misc.random(4));
    }
    c.clawIndex = c.playerIndex;
    c.clawType = 1;
    } else if (c.npcIndex > 0) {
    NPC n = Server.npcHandler.npcs[c.npcIndex];
    if (Misc.random(calculateMeleeAttack()) > Misc.random(n.defence)) {
    c.clawDamage = Misc.random(calculateMeleeMaxHit() + Misc.random(2));
    }
    c.clawIndex = c.npcIndex;
    c.clawType = 2;
    }

    c.doubleHit = true;
    c.usingClaws = true;
    c.specEffect = 5;
    c.hitDelay = getHitDelay(c.getItems().getItemName(c.playerEquip ment[c.playerWeapon]).toLowerCase());
    break;


    NOW WHERE DO I CHANGE IT???
    Reply With Quote  
     

  7. #6  
    Donator
    MrBeka's Avatar
    Join Date
    Jan 2011
    Age
    28
    Posts
    306
    Thanks given
    14
    Thanks received
    16
    Rep Power
    20
    Quote Originally Posted by d3rkb0w13 View Post
    Code:
    case 15027:
    c.gfx0(1950);
    c.startAnimation(10961);
    c.specAccuracy = 320.0;
    c.clawDamage = 0;
                             ^
    for wich number should u replace the 0 for clawdamage, you think?
    cause right now claw specs sucks atm 0-0-0-5 and sometimes 30-15-8-0
    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

Posting Permissions
  • You may not post new threads
  • You may not post replies
  • You may not post attachments
  • You may not edit your posts
  •