Thread: I think I Figured This Out

Results 1 to 3 of 3
  1. #1 I think I Figured This Out 
    HazeyScape
    Guest
    Someone Gave Me A Hint On How To Fix My Dclaws, She Says If I Add A 0.5 Millisecond Timer Between First 2, And Second 2 Hits.

    Heres My Codes....
    Code:
    public boolean DCDamg = false;
    	public int DCdown = 0;
    Code:
    if(playerEquipment[playerWeapon] == 13056 && specialAmount > 24){
    specialAtk(true, 25, 252, 2068);
    DCdown = 4;
    DCDamg = true;
    getHit(8);
    usingSpecial = true;
    }
    Code:
    if(playerEquipment[playerWeapon] == 13056 && specialAmount > 24){
    specialAtkNPC(true, 75, 282, 2068);
    DCdown = 4;
    DCDamg = true;
    npcDamage(8);
    }
    Code:
    if ((IsAttackingNPC) && DCDamg == true ) {
    		if (DCdown == 2 ) {
    			startAnimation(2068);
    		}
    			SpecDamgNPC(30);
    			DCdown -= 1;
    		if (DCdown == 0 ) {
    			DCDamg = false;
    		}
    	}
    	
    if (IsAttacking == true && DCDamg == true ) {
    if (DCdown == 2 ) {
    startAnimation(2068);
    }
    SpecDamg(25);
    DCdown -= 1;
    if (DCdown == 0 ) {
    DCDamg = false;
    }
    }
    Where do You Guys Think I Should Add The Timer?
    Reply With Quote  
     

  2. #2  
    HazeyScape
    Guest
    Can someone Add the Timer To The Right Place Please
    Reply With Quote  
     

  3. #3  
    HazeyScape
    Guest
    bump
    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
  •