HomeUser Control Panel (unavailable in archive)ForumsTutorialsArt GalleryResourcesMaps

a little JASS help!

05-13-2006, 10:52 PM#1
Sir-LoynStake
I've been experimenting in JASS, and I've been doing great, but this one thing is annoying me. It says
Collapse JASS:
set udg_b =(udg_b+1)
has an invalid number of arguments. What am I doing wrong here?
05-13-2006, 11:19 PM#2
aquilla
Often when it says something is wrong, it is the line above which is faulty. Also, those brackets are unneccessary, GUI likes adding them though, set udg_b = udg_b+1 works too. Not that it really matters I guess...