• 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.

Spells & Systems Mini-Contest #18

Status
Not open for further replies.
Level 25
Joined
Jun 5, 2008
Messages
2,573
I am learning JASS bit by bit, currently i am lazy so i only got the handle of basic stuff(structs,scopes) but still didn't get the grip when using something like .dat allocate and some more stuff.

I don't think GUI or JASS is worse the more you use it, why should it be?
 
Level 25
Joined
Jun 5, 2008
Messages
2,573
Well first time i got in touch with any kind of programing was in a program called Game Maker, later Delphi(simple stuff) and on the end comes JASS.
Not that i need programing in my life(programers aren't verry needed in my country) but i like warcraft and making nice spells/stuff with it/GUI.
 
Level 23
Joined
Nov 29, 2006
Messages
2,482
Eccho has been assigned to judge the spells.

Just for the record. If I got time I will begin today. Otherwise I will begin tomorrow.
And Hanky has had a very busy life at the moment. Don't blaim him.
 
Level 25
Joined
Jun 5, 2008
Messages
2,573
Give the judge time...
You would be suprised how dificult it can be to judge something, not to say that there is a great number of submisions in this particular contest...

@xd.Schurke
JASS:
globals
 constant fact GUI
 constant fact JASS
endglobals

function Truth takes nothing returns nothing
 set GUI = User friendly JASS
 if GUI = evil then
  set JASS = evil
  set vJASS = evil
 endif
endfunction
 
Level 16
Joined
Feb 22, 2006
Messages
960
Give the judge time...
You would be suprised how dificult it can be to judge something, not to say that there is a great number of submisions in this particular contest...

@xd.Schurke
JASS:
globals
 constant fact GUI
 constant fact JASS
endglobals

function Truth takes nothing returns nothing
 set GUI = User friendly JASS
 if GUI = evil then
  set JASS = evil
  set vJASS = evil
 endif
endfunction

soooo true^^
 
Level 17
Joined
Sep 8, 2007
Messages
994
Give the judge time...
You would be suprised how dificult it can be to judge something, not to say that there is a great number of submisions in this particular contest...

@xd.Schurke
JASS:
globals
 constant fact GUI
 constant fact JASS
endglobals

function Truth takes nothing returns nothing
 set GUI = User friendly JASS
 if GUI = evil then
  set JASS = evil
  set vJASS = evil
 endif
endfunction

Syntax error!
JASS:
if GUI = evil then //Setting uses "="; Comparing uses "=="!
set vJASS = evil //Value too low - "extreme" expected!
xD
 
Status
Not open for further replies.
Top