Search results

  1. A

    3D Projectile problem

    The missile system in general only two Vector a starting position, an end position, rogueteddybear's AdvancedProjectile has three positions, which the fundamental and other missile systems.The formula is not the same as normal missile system, I have written one, I want the three positions of the...
  2. A

    Snippet Angles: Cone

    Well, the cone application is almost finished, and all of the formula I has been updated on the first page.
  3. A

    3D Projectile problem

    I do not want to discuss who the system more efficient, I just want a self-defined curve-missile system in the missile system, I have ever seen the other system can be custom curve, the biggest problem is the system of the formula used is very complex, if used in the game, will cause the game to...
  4. A

    Snippet Angles: Cone

    I am very sorry, because I do not agree with some of your views,I have updated some new functions, the cone function can not be used for the detection unit facing for the function is used to Assassin skills, CheckUnitPosition function Assassin skills can use the extended functions
  5. A

    3D Projectile problem

    Gwypaas and Dirac are simplier system. I already have one. rogueteddybear AdvancedProjectile can make NIKE logo curve. like I say have bug,need to fix.
  6. A

    3D Projectile problem

    http://www.hiveworkshop.com/forums/graveyard-418/system-advancedprojectile-186566/ I Know already have a lot Projectile system, but this Projectile is much powerful and complex, also has a lot problem. If Projectile Have a target ,this system often rotate around target for a for a while...
  7. A

    Snippet Angles: Cone

    function GetUnitAngle takes unit a, unit b returns real // - Angle between units return Atan2(GetUnitY(b) - GetUnitY(a), GetUnitX(b)- GetUnitX(a)) endfunction private function GetAngleDifference takes real a1, real a2 returns real local real x set...
  8. A

    Snippet Angles: Cone

    function GroupEnumUnitsInSector2 takes group whichGroup,unit u,real angle,real facing,real radius returns nothing local real x = GetUnitX(u) local real y = GetUnitY(u) local real face = Deg2Rad(facing*0.5) local unit v local group g = CreateGroup()...
  9. A

    Snippet Angles: Cone

    I think your formula be supposed to rewrite CheckUnitPosition function.
  10. A

    Snippet Angles: Cone

    This is my revised code, // The code is as Fire Breath function AngleDifference takes real angle, real angle1, real angle2 returns boolean local real x set angle = ModuloReal(angle,360) set angle1 = ModuloReal(angle1,360) set angle2 = ModuloReal(angle2,360)...
  11. A

    System Stun

    So,One timer loop used for stack stun time, I don't think worth it.
  12. A

    function method interface bug!

    vJass interface has a big bug,handle can't clear,interface base on use trigger array ,when interface use it,begin create a new trigger,this trigger not stack,so handle start glow. Projectile 0.26 has this problem,you can download Jesus4Lyf's AgentStats check it. How to fix this problem?
  13. A

    System Projectile

    Projectile bigger and bigger,I remove GroupProjectile,ListModule, I want make a pure Projectile,AIDS still not remove yet.see more check attachment.
  14. A

    Cone Furmula problem

    I didn't know that,thanks.
  15. A

    System Projectile

    method operator unitHitRadius= takes real value returns nothing if this.allowUnitCollisions then if this.unitTrig != null and this.uColl != value and value != 0.00 then call TriggerClearConditions(this.unitTrig) call...
  16. A

    Cone Furmula problem

    function DoesQuadContainOrigin takes real x1, real y1, real x2, real y2, real x3, real y3, real x4, real y4 returns boolean local integer counter = 0 if (x1-x2)*y1 < x1 * (y1-y2) then set counter = counter + 1 endif if (x2-x3)*y2 < x2 *...
  17. A

    Count attack and Animation System request

    Attack count system ,I know name a little silly,Like use 7 count do CriticalStrike ,it's a system can be replace chance passive ability. Animation system it's 3D combo move system,only use in Diablo3 for now, In Diablo3 max Animation was 7. in WC3 it's hard use ,for me only know use in...
  18. A

    Count attack and Animation System request

    As people konw,LoL is icefrog's new game ,this game use a lot count attack ability ,just like damage 1 time do something ,2 time do something,then let count go 0, maybe people say this so easy ,I know,I just think a system manage it .Animation System it's little hard original idea is from...
  19. A

    finding a model

    These models are what you need?:)
  20. A

    Spell The Allmighty Fear

    This fear spell look better!:)
Top