Thread: verry nub 2h help :/

Results 1 to 9 of 9
  1. #1 verry nub 2h help :/ 
    Donator


    Join Date
    Aug 2012
    Posts
    2,462
    Thanks given
    312
    Thanks received
    459
    Rep Power
    457
    Screenshot by Lightshot

    atm chatoic maul can also be wielded with shield how do i make it so chaotic maul can only be a 2h weapon i went in combatassitnat and searched 2h and i put the name chaotic maul aswell but that dint work and my chaotic maul stance is liek a run2h stance so please help?
    Reply With Quote  
     

  2. #2  
    There's only 1Day2Die
    1Day2Die's Avatar
    Join Date
    Oct 2012
    Posts
    467
    Thanks given
    22
    Thanks received
    33
    Rep Power
    8
    in combatassisant search for
    switch(c.playerEquipment[c.playerWeapon]) {
    and add
    case 18353: // maul chaotic
    c.playerStandIndex = 13217;
    c.playerWalkIndex = 13218;
    c.playerRunIndex = 13220;
    break;
    delete the "chaotic maul" u added with 2h sword
    Attached image

    Quote Originally Posted by Charlie' View Post
    ^ to the assholes (...) above that hate on people when they don't know something, remember little kids you once didn't know shit so get off your high horse.
    Reply With Quote  
     

  3. #3  
    Donator


    Join Date
    Aug 2012
    Posts
    2,462
    Thanks given
    312
    Thanks received
    459
    Rep Power
    457
    i can still equip shields and all :/
    Reply With Quote  
     

  4. #4  
    Registered Member

    Join Date
    Nov 2011
    Posts
    491
    Thanks given
    23
    Thanks received
    66
    Rep Power
    86
    Code:
    public boolean wearing2h() {
    In your player.java
    Reply With Quote  
     

  5. #5  
    Donator


    Join Date
    Aug 2012
    Posts
    2,462
    Thanks given
    312
    Thanks received
    459
    Rep Power
    457
    thanks
    Reply With Quote  
     

  6. #6  
    Donator


    Join Date
    Aug 2012
    Posts
    2,462
    Thanks given
    312
    Thanks received
    459
    Rep Power
    457
    actually that didnt work here is my code

    Code:
    public boolean wearing2h() {
    		Client c = (Client)this;
    		String s = c.getItems().getItemName(c.playerEquipment[c.playerWeapon]);
    		if (s.contains("2h"))
    			return true;
    		else if (s.contains("godsword"))
    			return true;
    		else if (s.contains("chaotic maul"))
    			return true;	
    		return false;	
    	}
    Reply With Quote  
     

  7. #7  
    Development Services √

    Oogle's Avatar
    Join Date
    Apr 2012
    Age
    25
    Posts
    3,978
    Thanks given
    650
    Thanks received
    516
    Rep Power
    483
    You have

    Code:
               return true;   
            return false;
    Maybe delete the return true; ??


    Attached image

    Attached image
    Reply With Quote  
     

  8. #8  
    Registered Member

    Join Date
    Nov 2011
    Posts
    491
    Thanks given
    23
    Thanks received
    66
    Rep Power
    86
    Also try to edit case-sensitive.
    Reply With Quote  
     

  9. #9  
    Donator


    Join Date
    Aug 2012
    Posts
    2,462
    Thanks given
    312
    Thanks received
    459
    Rep Power
    457
    bump still need this :/
    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. Server help verry inportant
    By pkownage135 in forum Help
    Replies: 5
    Last Post: 02-26-2009, 08:20 PM
  2. Verry Important *READ NOW*
    By 'Ramon in forum Help
    Replies: 0
    Last Post: 02-02-2009, 05:43 PM
  3. my first gameframes (not verry good)
    By booher in forum Graphics
    Replies: 5
    Last Post: 03-29-2008, 04:24 AM
  4. my verry first pic
    By da reaper in forum Showcase
    Replies: 3
    Last Post: 01-09-2008, 11:33 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
  •