Search results

  1. Waaaaagh

    All Access?

    Adding the shopsharing ability (neutral passive) allows any player to use a unit.
  2. Waaaaagh

    Is there a way to not need to define an array size? o.0

    No. Your options are basically: struct Bleh unit array mahUnitz[MAX_NUMBER_OF_UNITS_EVER_TO_BE_USED] endstruct or a linked list approach.
  3. Waaaaagh

    Elliptical orbits

    Long Post An ellipse can be modeled as (x^2/a^2) + (y^2/b^2) = 1, where a and b are the lengths of the horizontal and vertical axes, respectively. That's not overly helpful, but, parametrically, an ellipse can be modeled as: X(t) = h + a * cos(t) * cos(w) - b * sin(t) * sin(w) Y(t) = k + a *...
  4. Waaaaagh

    Close Door Trap?

    A Quick ASCII Interpretation: X = closed door O = open door | = wall ____ | | O X |____| They can't get through the closed door. See? Then wait until everyone is there, then: ____ | | X X |____| Kill stuff and: ____ | | O O |____|
  5. Waaaaagh

    Wait, wait, wait... You -repped me for sharing an opinion? I didn't even insult anyone! ... Madness!

    Wait, wait, wait... You -repped me for sharing an opinion? I didn't even insult anyone! ... Madness!
  6. Waaaaagh

    Report Smacking can lower children's IQ, research claims

    Despite your 'higher IQ', you still decided to make a statistical argument using a single antithetical case, and also ignore some key words like 'not really' and the like, but I won't fault you for the latter; selective recognition and response is the easiest/best way to make an argument.
  7. Waaaaagh

    Report Smacking can lower children's IQ, research claims

    TL;DR, but: Statistics are wonderful. People who were beaten as children aren't more likely to be stupid, stupid people are more likely to have been beaten when they were children. Family A ($$$): "Go to your room, and I'm taking your television privileges." "Awww. Shucks." [does his...
  8. Waaaaagh

    Cannot Access Scope function

    Make your scope a library. Scopes do not move things to the top of the script as libraries do.
  9. Waaaaagh

    Using private globals outside a textmacro

    No, however a module could do such a thing.
  10. Waaaaagh

    And, looking at all the incredibly intelligent requests for help on this forum, do you think it...

    And, looking at all the incredibly intelligent requests for help on this forum, do you think it is easier to get everyone to do things right 100% of the time, or just tell them dynamic triggers are bad and trust that they will believe you? This shouldn't be a discussion about a particular case...
  11. Waaaaagh

    Alright, let's bring it down a notch. I'll stop calling you a fucking retard, and you stop...

    Alright, let's bring it down a notch. I'll stop calling you a fucking retard, and you stop saying that I can't code (by the way, that's not true, and there's actually proof of such things throughout these very forums). Dynamic triggers add a possibility to bug - you have to create and destroy an...
  12. Waaaaagh

    System Trigger Utils v1.00

    Why should you have N triggers when you could just have 1? There is no difference, other than the whole leaking events thing. TimerUtils has a valid claim to its existence; we use timers for precision, thus one timer rounding off periods and such is just not good enough for things which require...
  13. Waaaaagh

    "terrible coding practice? probably you can't even code ... keep your jerky comments for...

    "terrible coding practice? probably you can't even code ... keep your jerky comments for yourself" -you (being a dumbass). Dynamic Triggers = Terrible Coding Practice. If you weren't fucking retarded you'd understand. It's not only the possibility to write code which breaks (which TriggerUtils...
  14. Waaaaagh

    System Trigger Utils v1.00

    I think it's really great how you are encouraging terrible coding practice. I would have expected better from you; you are apparently one of the go-to Jassers around here.
  15. Waaaaagh

    Snippet ShieldUnit

    No requirements != desirable. We aren't in the stone age, where we had to import all our systems to the custom script section. Importing a library is a simple copy-paste procedure. Also, I don't see why everybody is so in love with timer stacks...
  16. Waaaaagh

    System Faster Table

    You should probably warn that your system breaks after saving and loading the map.
  17. Waaaaagh

    Declaring Groups / Integers In One "Trigger", Using Them In Another

    change 'private' to 'public', and then, in other scopes, prefix it with whatever the scope is those things are declared in. set DeclarationScope_crushedGroup = CreateGroup()
  18. Waaaaagh

    alternatives to arrow key movement?

    Has anyone ever thought of detecting arrow key presses through movement of the camera? I'm pretty sure camera movement is local = no delay. It'd take some sync work, and you'd have to find a way to keep the camera from shaking, but you might be able to make it work.
  19. Waaaaagh

    Enemies run from Buildings? (was: I fail)

    it's a constant... that won't work. Also, why can't you just do IsUnitType(UNIT_TYPE_ANCIENT) ?
  20. Waaaaagh

    (Periodic Event - Every X seconds) How To Change X in Game?

    Periodic Event - Every X seconds is perfectly precise for the purposes of the game - the frame rate is ~.02 seconds, and it's far more accurate than that.
Top