• Listen to a special audio message from Bill Roper to the Hive Workshop community (Bill is a former Vice President of Blizzard Entertainment, Producer, Designer, Musician, Voice Actor) 🔗Click here to hear his message!
  • Read Evilhog's interview with Gregory Alper, the original composer of the music for WarCraft: Orcs & Humans 🔗Click here to read the full interview.

jass

  1. kStiyl

    [vJASS] EVENT_PLAYER_UNIT_ISSUED_ORDER memory leak issue

    My map has been having a lot of fatal errors due to 'out of memory' errors, and I traced the issue down to a single line of JASS code (in a unit indexing system) that looks something like this: call TriggerRegisterPlayerUnitEvent(CreateTrigger(), Player(12), EVENT_PLAYER_UNIT_ISSUED_ORDER...
  2. Adorm

    [General] Two Questions on Unit Groups

    Hey Guys, How do you create a Unit Group through a Custom Script/JASS? And also, is it possible to check if a Unit Group is Empty and if so how would both of these things be accomplished through Triggers? Thanks so much! Cordially, Adorm
  3. Svynct

    [Solved] How to get the target point X and Y of a unit's current order in JASS?

    I'm working on a Creep AI and I need to know how to get the creep's current order target points, so I can repeat its previous order.
  4. Svynct

    [Solved] Help with dummy not beeing removed

    can someone explain me why is the dummy not beeing removed? function Turmoil_Condition takes nothing returns boolean return GetSpellAbilityId() == 'A003' endfunction function Timer takes nothing returns nothing local timer t = GetExpiredTimer() call DestroyTimer(t) set t = null endfunction...
  5. izaiphovias

    Help with learning JASS

    So, I was reading a bunch of tutorials for JASS scripting here and also Vexorian's and am trying to get the hang of things. In my new project I have a simple GUI spell based on Entangling Roots that hides the caster, creates 4 visible dummies around the target and damage the area, then it shows...
  6. Nowow

    Creating AI workflow

    Or How I Learned to Stop Worrying and Read AI This tutorial serves one primary purpose: teaching you how to learn ai by yourself. In order to achieve that we'll go through two steps: First, we'll read through an ai script from one of blizzard's campaign maps and use it to understand how ai...
  7. Krakenn99

    [Solved] How to fix these leaks?

    I used the JASS Cheker and it said that I have 2 leaks in my map. Idk what these lines and columns are so I don't know where exactly am I leaking, I'm pretty sure it shouldn't leak. Is it a false alarm or am I blind? Type: location 1. war3map.j (line: 1605, column: 5) 2. war3map.j (line: 1605...
  8. Swan

    [Spell] Making a Burrow Spell

    So I want to make burrowing spell that will allow the hero to fire out spikes as long as they have mana. So far my initial idea is that I would play the morph animation for the crypt fiend, hide the model (0% transparency maybe), place a dummy unit on top of the burrowed crypt fiend for the...
  9. pOke

    [Solved] Trouble with usage GetLocalPlayer()

    So the goal of the code is to check which player's turn it is by looking at the global, then if it is their turn allow them to click on on things. If it isn't, don't allow them to click on things, select their builder. Currently, it just makes it so no one is able to click on anything. When...
  10. userid907

    [vJASS] Why my script not working?

    hello, hive. i here want to ask why my script not working, i've try to search the problem, and i change the script that i think is wrong, and when i test it the script still not working, after repeat it about 10 times, i give up because i'm new on vJass. and i've try to debug the script and only...
  11. JarJar1337

    [Spell] Spawning Trees through ability

    So I made this ability right? And I made the custom triggers yes? Heres what I have Unit - A unit begins casting an ability (Ability being Cast) Equal to _Plant Sappling ( L ) Set Caster_Plant = (Casting Unit) // not needed Set Caster_Plant_Point = (Target Point of Ability)...
  12. Zwiebelchen

    Dungeon Generator & Stamp

    After almost two days of non-stop working on this, I finally finished my masterpiece. This baby allows generating complete dungeons and cave designs directly by RNG. For dungeons, it applies a pattern of rooms and connects them with corridors; caves on the other hand are generated by using...
  13. fruitsandice

    [Solved] How to set up my a custom math in JASS?

    (Before I jump into this issue, let me talk to some my Personality Issue to you who read this thread. Unfortunately, I'm Non-English person and my English grammar looks like may be terrible. So please excuse my ridiculously sentence.) Hi. As you can see I genuinely using 'Slopes' and...
  14. fruitsandice

    [JASS] Message Issue (basic)

    function Msg takes string s returns nothing call DisplayTextToForce( GetPlayersAll(), s ) endfunction function ShowMessage takes nothing returns nothing call Msg("This is a message!") endfunction function ShowSum takes integer a, integer b returns nothing local integer r=a+b call Msg("r=...
  15. DeMoN100

    Looking for Trigger / JASS AI Scripters

    Looking to create a RP map like all the other successes. I am currently at this moment terraining the map and writing a unique storyline with a whole custom lore. I will update post with screenshots soon and need someone who is familiar with writing triggers and scripting commands and animations...
  16. Ruke

    vrJASS

    vrJASS Language What is vrJASS? A just-for-fun programming language which compiles down to JASS (Warcraft 3). It aims to improve and replace the beloved vJASS. What? x2 An update to vJASS which tries to solve its flaws. I want to try it! - I need a manual...
  17. moyackx

    How to make a Campaign AI

  18. Bribe

    [GUI] Advanced Triggering Tips

    [GUI]*Advanced Triggering Tips Advanced Triggering Tips Why I am writing this I see lots of GUI scripts which make the same mistakes again and again, whether it be by leaks or by adding work to the list that doesn't need to be added. Hopeful goals I hope GUI users will learn to pay better...
  19. Zacuge

    Looking for a JASS editor!

    I can't seem to find a jass editor anywhere online. I was wondering if anyone can help me out by directing me to an editor and possibly a tutorial.
  20. ModelerHv

    Hello

    :grin::grin::grin::grin::grin::grin::grin::grin::grin::grin::grin::grin::grin::grin::grin: Tnx HiveWork for leting me in :grin::grin::grin::grin::grin::grin::grin::grin::grin::grin::grin::grin::grin::grin::grin:
  21. Hordeon

    How to: Test map correctly

    Testing the map is very important. First you must fix all leaks (No leaks , good game). The second rule is: The Path... The pach must be placed correctly. The third testing rule is: The Coding of Colors. The collor code is very important.You can't write color code like this: OR And...
  22. DawnOfMe

    Im New

    Im new and i need help learning jass asap lol :D
  23. Kamikazzee

    What does the colored text in JASSNewGen mean?

    This is more of a curiosity than a true problem. I'm wondering what it means when a function is colored purple or red in Jass NewGen, even though they basically do the same thing. For example: GroupAddUnit - Purple GroupAddUnitSimple - Red What does this difference mean? Is red less...
  24. MeEsA

    What is JASS?

    can some one help me and tell me what JASS is and how to use it its always used in maps for ability
Top