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
255
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
255
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.
  • Varine Varine:
    How can you tell the difference between real traffic and indexing or AI generation bots?
  • The Helper The Helper:
    The bots will show up as users online in the forum software but they do not show up in my stats tracking. I am sure there are bots in the stats but the way alot of the bots treat the site do not show up on the stats
  • Varine Varine:
    I want to build a filtration system for my 3d printer, and that shit is so much more complicated than I thought it would be
  • Varine Varine:
    Apparently ABS emits styrene particulates which can be like .2 micrometers, which idk if the VOC detectors I have can even catch that
  • Varine Varine:
    Anyway I need to get some of those sensors and two air pressure sensors installed before an after the filters, which I need to figure out how to calculate the necessary pressure for and I have yet to find anything that tells me how to actually do that, just the cfm ratings
  • Varine Varine:
    And then I have to set up an arduino board to read those sensors, which I also don't know very much about but I have a whole bunch of crash course things for that
  • Varine Varine:
    These sensors are also a lot more than I thought they would be. Like 5 to 10 each, idk why but I assumed they would be like 2 dollars
  • Varine Varine:
    Another issue I'm learning is that a lot of the air quality sensors don't work at very high ambient temperatures. I'm planning on heating this enclosure to like 60C or so, and that's the upper limit of their functionality
  • Varine Varine:
    Although I don't know if I need to actually actively heat it or just let the plate and hotend bring the ambient temp to whatever it will, but even then I need to figure out an exfiltration for hot air. I think I kind of know what to do but it's still fucking confusing
  • The Helper The Helper:
    Maybe you could find some of that information from AC tech - like how they detect freon and such
  • Varine Varine:
    That's mostly what I've been looking at
  • Varine Varine:
    I don't think I'm dealing with quite the same pressures though, at the very least its a significantly smaller system. For the time being I'm just going to put together a quick scrubby box though and hope it works good enough to not make my house toxic
  • Varine Varine:
    I mean I don't use this enough to pose any significant danger I don't think, but I would still rather not be throwing styrene all over the air
  • The Helper The Helper:
    New dessert added to recipes Southern Pecan Praline Cake https://www.thehelper.net/threads/recipe-southern-pecan-praline-cake.193555/
  • The Helper The Helper:
    Another bot invasion 493 members online most of them bots that do not show up on stats
  • Varine Varine:
    I'm looking at a solid 378 guests, but 3 members. Of which two are me and VSNES. The third is unlisted, which makes me think its a ghost.
    +1
  • The Helper The Helper:
    Some members choose invisibility mode
    +1
  • The Helper The Helper:
    I bitch about Xenforo sometimes but it really is full featured you just have to really know what you are doing to get the most out of it.
  • The Helper The Helper:
    It is just not easy to fix styles and customize but it definitely can be done
  • The Helper The Helper:
    I do know this - xenforo dropped the ball by not keeping the vbulletin reputation comments as a feature. The loss of the Reputation comments data when we switched to Xenforo really was the death knell for the site when it came to all the users that left. I know I missed it so much and I got way less interested in the site when that feature was gone and I run the site.
  • Blackveiled Blackveiled:
    People love rep, lol
    +1
  • The Helper The Helper:
    The recipe today is Sloppy Joe Casserole - one of my faves LOL https://www.thehelper.net/threads/sloppy-joe-casserole-with-manwich.193585/
  • The Helper The Helper:
    Decided to put up a healthier type recipe to mix it up - Honey Garlic Shrimp Stir-Fry https://www.thehelper.net/threads/recipe-honey-garlic-shrimp-stir-fry.193595/

      The Helper Discord

      Members online

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top