Super simple vJass Trigger

Kyzerdrood

New Member
Reaction score
3
Im trying to learn vJass from GUI from the tutorial posted on this site and i read till it said i should practice a bit b4 continuing and i cant get this.

JASS:
scope whichTrigger initializer Init

function Actions01 takes unit returns nothing
    call RemoveUnit(GetDyingUnit())
endfunction

function Condition01 takes nothing returns nothing

endfunction

function Init takes nothing returns nothing
    call set t = CreateTrigger()
    call TriggerAddCondition(t,Condition(function Condition01))
    call TriggerAddAction(t, function Actions01)
endfunction

endscope


I know its got to be something simple, but why doesnt this work?

im just practicing and trying to make it when a unit dies, its removed from the game.

i get error on every line.
 

Flare

Stops copies me!
Reaction score
662
JASS:
function Condition01 takes nothing returns nothing

endfunction


Conditions must return a boolean
JASS:
function Condition01 takes nothing returns boolean
  return true
//Or, if you have a specific condition, use that instead e.g.
  return GetUnitTypeId (GetTriggerUnit ()) == 'hfoo'
//That only remove the unit if it was a footman
endfunction


JASS:
function Actions01 takes unit returns nothing
    call RemoveUnit(GetDyingUnit())
endfunction

Action functions can't take any parameters.
JASS:
function Actions01 takes nothing returns nothing
    call RemoveUnit(GetDyingUnit())
endfunction

Also, when adding parameters to a function, they must be given a name e.g.
JASS:
function DisplayText takes string text returns nothing
  call DisplayTextToPlayer (GetLocalPlayer (), text, 0, 0)
endfunction
 
Reaction score
341
JASS:
scope whichTrigger initializer Init

private function Actions takes unit returns nothing
    call RemoveUnit(GetDyingUnit())
endfunction

private function Conditions takes nothing returns nothing

endfunction

private function Init takes nothing returns nothing
    call set t = CreateTrigger()
    call TriggerAddCondition(t,Condition(function Conditions))
    call TriggerAddAction(t, function Actions)
endfunction

endscope


You need to be using JNGP (NewGen) for vjass to work. Since your triggers are already in a scope make 'em private like i did. And

JASS:
function Actions01 takes unit returns nothing


Can't take anything , it must be

JASS:
function Actions01 takes nothing returns nothing


Because your referencing it with TriggerAddAction. Also change

JASS:
call set t = CreateTrigger()


to

JASS:
 

Kyzerdrood

New Member
Reaction score
3
K i did like u said, and ya i just forgot to make private, and im using newgen 1.5 and i downgraded my WE for it to work, i still get compile errors when i syntax check but ill just test the map...


tested and it wont work.
 
Reaction score
341
Don't use the syntax check button , it doesn't compile vjass. Just hit save then JassHelper will come up and compile it.
 

Kyzerdrood

New Member
Reaction score
3
ok so it will save and i cant test it but when a unit dies it doesnt get removed from the game.
 

Kyzerdrood

New Member
Reaction score
3
LOL DUH thnx


so THIS should work?

JASS:
scope whichTrigger initializer InitTrig_whichTrigger

private function Actions01 takes nothing returns nothing
    call RemoveUnit(GetDyingUnit())
endfunction

private function Condition01 takes nothing returns boolean
    return true
endfunction

private function InitTrig_whichTrigger takes nothing returns nothing
    local trigger t = CreateTrigger()
    call TriggerRegisterAnyUnitEventBJ(t, EVENT_PLAYER_UNIT_DEATH )
    call TriggerAddCondition(t,Condition(function Condition01))
    call TriggerAddAction(t, function Actions01)
endfunction

endscope


Edit: WOOT WORKS, first jass trigger lol, so simple, yet im so happy :D
 

Romek

Super Moderator
Reaction score
964
vJass is an extension of Jass.
So you can't possibly learn vJass without knowing Jass.
 

Kyzerdrood

New Member
Reaction score
3
well can i learn how to convert vJass to jass easily then? Cuz i havent done jass, just vJass xD
 

Romek

Super Moderator
Reaction score
964
vJass is Jass with scopes, libraries, etc.

Remove the scope from what you have there, and you're doing Jass.
vJass just adds a few extra keywords to make Jassing easier. :)
 

Kyzerdrood

New Member
Reaction score
3
lol then its more simple than i thought, i just started at like 5:50 and its 6:51 now and i know how to make simple jass triggers :D
 

saw792

Is known to say things. That is all.
Reaction score
280
By the way Kyzer, you don't need a condition when it just returns true. In that case you can simply remove the call TriggerAddCondition() line.

(You still working on that FSE RPG, or is that well and truly out the window?)
 

Kyzerdrood

New Member
Reaction score
3
yes i was, but i stopped PLAYING wc3 and so clan fse thought i quit alltogether, and so they are making a RPG called Fortress Survival Delta, which pretty much stole my idea, so i just stopped. i dont even have the map anymore :/


However i would like to get started on a rpg and release one sometime soon.

though if i was going to start, i would need someone to make quests, spells, and then terrain.
 

saw792

Is known to say things. That is all.
Reaction score
280
Nevo was trying to make me do Delta. Except I hate RPG's.

He's making some other map now, and FSE is down the toilet as I'm sure you know.

Anyway, good to see you.
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • Monovertex Monovertex:
    How are you all? :D
    +1
  • Ghan Ghan:
    Howdy
  • Ghan Ghan:
    Still lurking
    +3
  • The Helper The Helper:
    I am great and it is fantastic to see you my friend!
    +1
  • The Helper The Helper:
    If you are new to the site please check out the Recipe and Food Forum https://www.thehelper.net/forums/recipes-and-food.220/
  • Monovertex Monovertex:
    How come you're so into recipes lately? Never saw this much interest in this topic in the old days of TH.net
  • Monovertex Monovertex:
    Hmm, how do I change my signature?
  • tom_mai78101 tom_mai78101:
    Signatures can be edit in your account profile. As for the old stuffs, I'm thinking it's because Blizzard is now under Microsoft, and because of Microsoft Xbox going the way it is, it's dreadful.
  • The Helper The Helper:
    I am not big on the recipes I am just promoting them - I use the site as a practice place promoting stuff
    +2
  • Monovertex Monovertex:
    @tom_mai78101 I must be blind. If I go on my profile I don't see any area to edit the signature; If I go to account details (settings) I don't see any signature area either.
  • The Helper The Helper:
    You can get there if you click the bell icon (alerts) and choose preferences from the bottom, signature will be in the menu on the left there https://www.thehelper.net/account/preferences
  • The Helper The Helper:
    I think I need to split the Sci/Tech news forum into 2 one for Science and one for Tech but I am hating all the moving of posts I would have to do
  • The Helper The Helper:
    What is up Old Mountain Shadow?
  • The Helper The Helper:
    Happy Thursday!
    +1
  • Varine Varine:
    Crazy how much 3d printing has come in the last few years. Sad that it's not as easily modifiable though
  • Varine Varine:
    I bought an Ender 3 during the pandemic and tinkered with it all the time. Just bought a Sovol, not as easy. I'm trying to make it use a different nozzle because I have a fuck ton of Volcanos, and they use what is basically a modified volcano that is just a smidge longer, and almost every part on this thing needs to be redone to make it work
  • Varine Varine:
    Luckily I have a 3d printer for that, I guess. But it's ridiculous. The regular volcanos are 21mm, these Sovol versions are about 23.5mm
  • Varine Varine:
    So, 2.5mm longer. But the thing that measures the bed is about 1.5mm above the nozzle, so if I swap it with a volcano then I'm 1mm behind it. So cool, new bracket to swap that, but THEN the fan shroud to direct air at the part is ALSO going to be .5mm to low, and so I need to redo that, but by doing that it is a little bit off where it should be blowing and it's throwing it at the heating block instead of the part, and fuck man
  • Varine Varine:
    I didn't realize they designed this entire thing to NOT be modded. I would have just got a fucking Bambu if I knew that, the whole point was I could fuck with this. And no one else makes shit for Sovol so I have to go through them, and they have... interesting pricing models. So I have a new extruder altogether that I'm taking apart and going to just design a whole new one to use my nozzles. Dumb design.
  • Varine Varine:
    Can't just buy a new heatblock, you need to get a whole hotend - so block, heater cartridge, thermistor, heatbreak, and nozzle. And they put this fucking paste in there so I can't take the thermistor or cartridge out with any ease, that's 30 dollars. Or you can get the whole extrudor with the direct driver AND that heatblock for like 50, but you still can't get any of it to come apart
  • Varine Varine:
    Partsbuilt has individual parts I found but they're expensive. I think I can get bits swapped around and make this work with generic shit though
  • Ghan Ghan:
    Heard Houston got hit pretty bad by storms last night. Hope all is well with TH.

      The Helper Discord

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top