Search results

  1. Tukki

    System BuffStruct

    This is pretty cool! Anyway, I'm just wondering if there's an easy way to get a unit's buff instance? Or is it up to the user to store them in an array? I've currently solved the problem, but I'm looking for something neater :P // seek mybuff instance; function...
  2. Tukki

    Weird Jass Newgen problem

    Oh damn! Didn't know 'bout that, thx for link!
  3. Tukki

    Weird Jass Newgen problem

    Sometimes it just doesn't work to disable "Reinventing the Craft", in that case you'll have to manually edit one of the wehack.<something> files inside your JNGP folder and delete some things related to "RoC". If disabling it doesn't work, I'll add my edited version to this post - but right...
  4. Tukki

    System [ZTS] - Zwiebelchens Threat System

    Aight, will check it out when the opportunity reveals itself to me! Btw, pretty neat way of discovering out-of-range events you have there :thup:, abusing the "smart" order :D It's a shame such a useful system as this gets half-ignored, though. Anyway, have some rep!
  5. Tukki

    System [ZTS] - Zwiebelchens Threat System

    Pretty solid system! I've encountered a bug, though :P I'm using version 2.2 The following function doesn't return the player unit's aggro, it actually returns 0.0 no matter how I use it. public function GetThreatUnitAmount takes unit npc, unit pu returns real if GetUnitTypeId(npc)...
  6. Tukki

    System Ammo System

    I'm not 100% sure of what you mean with "clip still shootable", are you saying that: a - the system malfunction and the user may attack, discardig how many bullets he got? b - that you shouldn't be able to target some things when out of ammo? c - that it malfunctions and doesn't reduce the...
  7. Tukki

    Snippet Colorize

    Care to read the script? :P As for the player-color thing; that's not the purpose of this script. This doesn't care about which player the string is going to be displayed to.
  8. Tukki

    Snippet Colorize

    Current Version: 1.0 //=========================================================================== // COLORIZE [1.0] //=========================================================================== // // QUICK INFO: // // Importing : Paste this text into an empty, custom-text...
  9. Tukki

    Storm the Building (my first JASS ability)

    Have you checked that the trigger is named Storm? Because I'm using scopes, so it should be named 'Storm' only, without the ' that is. But as Viikuna said, you'll need to but some BJDebugMsg("") in some places where the spell may bug. Also using above code (the one you posted) will not...
  10. Tukki

    Storm the Building (my first JASS ability)

    Please specify what code you're using, or post your own :) //======================================================================================== // Storm - sample code for Siefer...
  11. Tukki

    Floating Texts (my computer or a bug?)

    Tried to lower the size? Furthermore it seems like you've edited the font, maybe that's what causing it.
  12. Tukki

    System CustomStun System

    Nah, you refer to the Stunned variable when a new stun is throwed at an already stunned unit. If the new stun is > than Stunned then switch. <-- This is the original WC3 stun management, stun durations never stack. Only a higher stun can replace another. Else it's looking good, +rep!
  13. Tukki

    System CustomStun System

    Typecasting is basically about the time when Vexorian wanted vJass to be typecast safe, not sure if it's required anymore though. The struct type can be seen as an integer. struct myStruct integer mass endstruct private function somefunc takes nothing returns nothing local...
  14. Tukki

    System CustomStun System

    Notice that using TimerUtils will actually be faster if you stun more than 4 units simultaneously, or at least have 4+ structs allocated. I also like that you use methods instead of crappy functions, but maybe you should provide some external functions for the user. Also delete one of those...
  15. Tukki

    Storm the Building (my first JASS ability)

    You mean this? call SetUnitState(caster, GetUnitState(caster, UNIT_STATE_MAX_LIFE)-(0.05*GetUnitState(target, UNIT_STATE_MAX_LIFE)) // this is pretty strange; the caster will be healed pretty much if not: // 1: the caster has nearly full health; // 2: the...
  16. Tukki

    Storm the Building (my first JASS ability)

    You are using NewGen! Make global blocks instead of those old constant functions! Example: globals private constant integer AID_MY_SPELL_NAME = 'A000' endglobals And you should begin to scope your spells. Put the 'scope' as first line in your code, and after that the name of the...
  17. Tukki

    Quest to only 1 player via JASS

    You can also use the 'Enable' function (not sure of its name though) instead of changing the description. In that way the quest will not be displayed for the other players. But I'm not sure that this is what you want. Probably somthing like this will do: call QuestEnable(<yourquest>...
  18. Tukki

    Copy a unit?

    Store the unit in a gamecache.
  19. Tukki

    Spell Request - Armor and Strenght?

    Constitution Events Unit - A unit Learns a skill Conditions (Learned Hero Skill) Equal to (==) (<YourAbility1>) Actions If (All Conditions are True) then do (Then Actions) else do (Else Actions) If - Conditions (Level of...
  20. Tukki

    System Projectile System

    You could remove that SquareRoot function, as you only use it as a distance checker. Instead, put something like this: local real x = currentX-targetX local real y = currentY-targetY local real distance = x*x+y*y if distance<=MIN_DISTANCE*MIN_DISTANCE then blargh... ...
Top