Thread: [317 PI] - Vesta/Statius Specials

Results 1 to 4 of 4
  1. #1 [317 PI] - Vesta/Statius Specials 
    Member
    Join Date
    Jul 2013
    Age
    25
    Posts
    379
    Thanks given
    81
    Thanks received
    14
    Rep Power
    0
    I've recently add these three items, Vesta's Longsword, Statius Warhammer, and Vesta's Spear, and I've noticed that when upon adding the item there no special bar on the item and I cannot figure out the right special interface number along with the GFX/Animation number to place in CombatAssistance.java. If someone could help me out adding those or at least giving me the code, that would be wonderful. Much thanks and rep to anyone that is willing to reply.


    Here is what I'm looking at when I wield these items:



    Reply With Quote  
     

  2. #2  
    Let the good times roll
    Eazy's Avatar
    Join Date
    Jun 2012
    Age
    27
    Posts
    1,234
    Thanks given
    90
    Thanks received
    223
    Rep Power
    70
    In activateSpecial method add

    Code:
                  case 13905: // Vesta spear
    			c.startAnimation(10499);
    			c.gfx0(1835);
                            c.specAccuracy = 1.25;
                            c.specEffect = 6;
                            c.hitDelay = getHitDelay(c.getItems().getItemName(c.playerEquipment[c.playerWeapon]).toLowerCase());
    			break;
    
    			case 13899: // Vesta LongSword
    			c.startAnimation(10502);
    			c.hitDelay = getHitDelay(c.getItems().getItemName(c.playerEquipment[c.playerWeapon]).toLowerCase()+1);
    			c.specDamage = 1.15;
    			c.specAccuracy = 1.70;
    			break;
    			case 13902: // Statius
    			c.startAnimation(10505);
    			c.gfx0(1840);
    			c.hitDelay = getHitDelay(c.getItems().getItemName(c.playerEquipment[c.playerWeapon]).toLowerCase()+1);
    			c.specDamage = 1.35;
    			c.specAccuracy = 2.25;
    			break;
    And add these to checkSpecAmount method

    Code:
    case 13899:
    case 13902:
    case 13905:
    Then go to itemassistant.java and add the same id's to addSpecialBar method




    Reply With Quote  
     

  3. #3  
    Member
    Join Date
    Jul 2013
    Age
    25
    Posts
    379
    Thanks given
    81
    Thanks received
    14
    Rep Power
    0
    Great, thanks, but unfortunately I do not have 10k+ animations so my client freezes. So what should I do?
    Reply With Quote  
     

  4. #4  
    Let the good times roll
    Eazy's Avatar
    Join Date
    Jun 2012
    Age
    27
    Posts
    1,234
    Thanks given
    90
    Thanks received
    223
    Rep Power
    70
    Quote Originally Posted by Killapkz View Post
    Great, thanks, but unfortunately I do not have 10k+ animations so my client freezes. So what should I do?
    You gotta add them in.

    Search for a guide, there are lots of them.




    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. vesta and statius specials etc. help please!!
    By Ichigo1019 in forum Help
    Replies: 1
    Last Post: 12-21-2012, 01:33 AM
  2. Replies: 4
    Last Post: 05-20-2011, 01:27 AM
  3. [10$][PI]Vesta Spear Special Attack!
    By Division in forum Help
    Replies: 14
    Last Post: 08-28-2010, 12:30 PM
  4. [PI]Vesta Spear Special Attack
    By Division in forum Help
    Replies: 0
    Last Post: 08-28-2010, 09:23 AM
  5. Replies: 13
    Last Post: 07-28-2010, 03:51 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
  •