Good way to start Jassing?

lh2705

Just another Helper
Reaction score
111
Hey, I'm just curious to know..

What's a good way to start Jassing?
as in applying Jass into triggers. ?

I've read most of the JASS tutorials, but I still can't apply them. I can read some of the triggers, but I can't write them.

Suggestions are very much appreciated :D
 
Reaction score
456
First of all, you should read Introduction Jass tutorials (last intro what you should read is Vexorian's. I thought that it was a lil bit harder than the others).

Then just start playing around with the triggers and such a things and ask stupid questions in this forum :p
 

lh2705

Just another Helper
Reaction score
111
Yeah, I read it sometime ago..
I also tried playing around with the triggers, but they just ended up with insane errors.. haha..
 

~GaLs~

† Ғσſ ŧħə ѕαĸε Φƒ ~Ğ䣚~ †
Reaction score
180
Converting GUI codes to JASS and starts learning how to simplifieng them...Replacing all those BJ's...

When you are familar with it, you will be able to write it :D:D
I don't knw what way you wanna start, but i start it off like this....

Getting NewGenJass WorldEditor and TESH would greatly helps you on it...

Cheers...
_____________________________________________________
I hate blueserver...You do?
 

Rheias

New Helper (I got over 2000 posts)
Reaction score
232
> as in applying Jass into triggers. ?

Read this tutorial I made while ago for some tips on how to learn Jass.

If you got the basics down start converting GUI triggers to Jass and read them until you got it all. Then start doing triggers alone. After a while stop using BJs and move natives and instead of Locs use reals. And then you can get started with the harders things.

Make sure you got TESH / JassCraft / Jass Editor / etc.
 

lh2705

Just another Helper
Reaction score
111
Ahh.. Thanks alot for your kind suggestions :D will check the tut out Rheias, Thanks.

Converting just makes my eyes bleed lol..even harder to read the codes..than those JASS spells, anyways, will do check the stuff out.

_____________________________________________________
At the moment currently..I hate its condition..
Leavers 90% of the time..But it's all I got..Started playing WoW a while ago tho :p
 
Reaction score
456
You should not convert triggers with if-then-else conditions. They kill you when you convert them.
 

waaaks!

Zinctified
Reaction score
256
heres a good tip in starting jass...

dont use systems when just starting....you must use basic jass as first time, and when u already know jass, even basics, like what the function needs, then u can start to put systems in ur map...

i just realized that i was wrong on studying jass, because i first download systems even if i dont know jass....well systems are your tool to make ur coding faster....

like me, i dont know jass functions at all....i just convert actions or conditions to jass and start coding it....

also if u start jassing always get Jass craft of ur side for free functions library...just search the functions u want use in jass craft...but some functions in jass craft cant be implemented in WE, or gives u error because there are caster system and cscache funtions in jasscraft...i also recommend caster system and cscache, caster system has fast functions....and also u can use all functions in jass craft because u have caster system and cscache already in ur map...
 

PurgeandFire

zxcvmkgdfg
Reaction score
509
Converting GUI codes to JASS and starts learning how to simplifieng them...Replacing all those BJ's...

When you are familar with it, you will be able to write it :D:D
I don't knw what way you wanna start, but i start it off like this....

Getting NewGenJass WorldEditor and TESH would greatly helps you on it...

Cheers...
_____________________________________________________
I hate blueserver...You do?

Well, you don't really want to learn vJASS in the beginning. It is way to confusing if you don't know JASS.

The number one thing I remember from my starting days - InitTrig's looked like freaking Chinese.

JASS:
function InitTrig_Kill takes nothing returns nothing
    set gg_trg_Kill = CreateTrigger(  )
    call TriggerRegisterAnyUnitEventBJ( gg_trg_Kill, EVENT_PLAYER_UNIT_SPELL_EFFECT )
    call TriggerAddAction( gg_trg_Kill, function Trig_Kill_Actions )
endfunction


Yeah. Chinese.

Lol... Yeaa..

=================

To learn JASS, get JASSCraft and read Daelin's moving from GUI to JASS tutorial, or read Ghan_04's JASS (Concise) introduction. (Sorry, I don't have the linkies. =] )

Lol, I didn't see you for a while lh2705, damn; its hard to spell your name. :p

Happy JASSing.
 

Squll2

je'ne sais pas
Reaction score
76
Yeah. Chinese.

you just keep thinking that..

i advise not reading the real thing if u think jass is bad o_O

heres a example..

/:.//.'":;/ (not a real symbol.. but you get the idea lol)

_______________________

Ontopic:

also i found with learning jass, that downloading tinki3's jass spells and reading them, helps, because they are very clear - of course after youve read a few tuts ^^ also look for IkilledKennies Classroom it was very helpful
 

waaaks!

Zinctified
Reaction score
256
its better to learn jass first than GUI

because GUI will mess on ur mind when thinking jass...
 

Tinki3

Special Member
Reaction score
418
>What's a good way to start Jassing?

Create a simple spell in the GUI, convert it.
Look at what the code turns into - JASS;

"Triggering unit" becomes "GetTriggerUnit()"
"Target Unit Of Ability Being Cast" becomes "GetSpellTargetUnit()".

What I found most helpful when I first started to learn, was to memorize those
basic unit-function conversions, as they will most likely be what you'll use most when spell-making in JASS.

And what do you do after?
Learn how to handle your local variables;

Get the local handle vars system, and practise using the way of timers.
That will be the 2nd most useful thing you'll need to memorize, and you'll be using timers alot when spell-making in JASS.

Obviously in between the learning process you should read a few tutorials here and there, to expand your knowledge of JASS.
I highly advise you to download JASS Craft;

It will be the 3rd most useful and helpful thing that will happen to you when JASSing.
At first, when you launch it, it won't seem useful at all, believe me on that one.

Though, once you start moving away from those ghastly BJs, you'll move closer to JC.

And what for the conclusion?
Not much - just the odd "yea, just keep reading those tutorials and she'll be right".

Personally, from me: once you think you don't need to convert a GUI trigger to know what it looks like in the JASS form any longer, start writing them yourself, from scratch.
 
Reaction score
333
I agree with Tinki. The best way to learn, I find, is to look at example code and triggers that have been converted to custom text (Edit > Convert to Custom Text).Everyone learns differently, however, so you might want to try all the methods suggested so far to see which one suits you best.
 

lh2705

Just another Helper
Reaction score
111
Ah..thank you guys for your kind suggestions :D

Yea, I got JASScraft..will start practicing soon...Thanks all :p

>PurgeandFire
Yea, been quite inactive for sometime..didn't have enough time/out of creativity for spells ..
 

Sim

Forum Administrator
Staff member
Reaction score
534
I myself think reading tutorials is the key, but it's maybe just because I like learning while reading.

Try some things out. Convert a few triggers, look up some functions in JASSCraft. Try to create a few simple things. Try to make a non-MUI spell MUI using JASS.

Read Tutorials :p
 
General chit-chat
Help Users
  • No one is chatting at the moment.
  • 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 The Helper:
    Power back on finally - all is good here no damage
    +2
  • V-SNES V-SNES:
    Happy Friday!
    +1

      The Helper Discord

      Members online

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top