SPELL CONTEST | theme: Hell | 29.06.08 - 13.07.08

Status
Not open for further replies.

Andrewgosu

The Silent Pandaren Helper
Reaction score
716
After some ten days, over 40 submissions later - here are the results!


It was a very close battle, but MoonSlinger snatched the victory with just only a single point!

Smith_S9 was close behind and jnZ finished 3rd.


I am sorry, but I had to disqualify Exide.

Using a GUI-JASS hybrid was not allowed.



results.jpg



Congratulations to winners and all the other participants!
 

Attachments

  • Coding Commentaries.txt
    14.5 KB · Views: 333

UndeadDragon

Super Moderator
Reaction score
447
Congratulations to MoonSlinger! As Smith just said, let's hope that another competition comes soon.
 

XeNiM666

I lurk for pizza
Reaction score
138
finally! i know the limit of my spell making!!

Congratulations to Moonslinger!!
and all the other contestants!!
 

vypur85

Hibernate
Reaction score
803
GG :). Damn it my coding sucks >.<. Now waiting for the Hero Contest#2 result :rolleyes:. Waiting... and wait...

+R to Andrew with fast response in everything :). And also to others who I can possibly spot.
 

emootootoo

Top Banana
Reaction score
51
Grats to moonslinger.

Not really sure why I got such a bad score on balance, I put a lot of effort into balancing it for melee. Maybe someone can explain it to me?

Anyway, gj with the contest.

Edit: K thanks for fixing that up, even if I still disagree with the new score, atleast it's a pass :p.
 

MoonSlinger

I Love using Cheap Tricks... only Results matters
Reaction score
74
Thanks everyone for the congrats...

Guess I was lucky to have thought of a "cute" idea which is easy to balance. :thup:
It helps greatly for "Balance", "Wow-Factor" and "General Feeling" :D
If the contest is based on coding skills and effects arrangement, I don't think I would have won :p


@ Andrew
I always known that Integer A was a call function,
but I never thought making it more code optimal, thanks for the tips :thup:
 

UndeadDragon

Super Moderator
Reaction score
447
If the contest is based on coding skills and effects arrangement, I don't think I would have won :p

You did get some of the highest points in coding :rolleyes:
 

Larcenist

REP: Respect, Envy, Prosperity?
Reaction score
211
Congratulations to you MoonSlinger, and to everyone else who finished. And a special thanks to whoever summarized all the submissions somewhere on page 20-ish (saved me from going through 23 pages).

Edit: How awesome isn't the top 5?

67, 66, 65, 64 and 63 points.
 

Trollvottel

never aging title
Reaction score
262
Congratz to the ones who won.
Seems like my coding wasnt as bad as i thought but the rest was crap x(. Well, there will be a next contest....
 

Exide

I am amazingly focused right now!
Reaction score
448
I am sorry, but I had to disqualify Exide.

Using a GUI-JASS hybrid was not allowed.


-I don't get it. There's not GUI-JASS hybrid in my map? :confused:

EDIT:
Unless you consider:
Code:
Message
    Events
        Map initialization
    Conditions
    Actions
        Set Hero = Soul Lord 0002 <gen>
        Selection - Select Hero for Player 1 (Red)
        Visibility - Create an initially Enabled visibility modifier for Player 1 (Red) emitting Visibility across (Playable map area)
        Game - Display to (All players) the text: |c00FF8000Commands:...
To be a GUI-JASS hybrid.. Whatever that is?
 

Miz

Administrator
Reaction score
424
When I signed up to judge, I thought it would be like the poetry contest or terrain contest, not that many people...

I graded on everything besides the coding, and many of you, I was extremely impressed and I play your map for maybe 5 minutes longer; though for some, I ether found, not much differences in the original spell...

Although, I believe I should get a medal for grading all these :rolleyes:

Hoped you enjoy the contest, Congrats to MoonSlinger
 

Exide

I am amazingly focused right now!
Reaction score
448
When I signed up to judge, I thought it would be like the poetry contest or terrain contest, not that many people...

I graded on everything besides the coding, and many of you, I was extremely impressed and I play your map for maybe 5 minutes longer; though for some, I ether found, not much differences in the original spell...

Although, I believe I should get a medal for grading all these :rolleyes:

Hoped you enjoy the contest, Congrats to MoonSlinger

I'm sure you did a great job.
However, I'm still surprised about my spell and waiting for an answer on why it was disqualified. So I can't appriciate what you have done, as of now. :p
 

Sevion

The DIY Ninja
Reaction score
413
Why is the spell in two different triggers?

Because I have two separate effects o_O

1. The spell itself.
2. Hell Fire.

Also, you do a very funny thing, compare if the variable "target" is equal to "null" and if it is, set it to "null", again. Not needed.

o_o That's really strange. It's probably because I coded everything at 2:00 - 3:00 AM (My time) ._.

And I sort of stopped looking through my code about 10% of the way through :p I didn't feel like doublechecking anymore -_-'

On the bright side, I now have more tipzzz from Andrew :O And I have all these resources to look through :O

And a special thanks to whoever summarized all the submissions somewhere on page 20-ish (saved me from going through 23 pages).

That was me. Post #250
 

monoVertex

I'm back!
Reaction score
460
You don't need to remove the “TriggerRegisterAnyUnitEventBJ” function no matter it is a BJ – it keeps your code inlined and in term of speed, it really does not matter because it runs on map initialization.

That coming from a guy who didn't support seeing that BJ in triggers and said he likes to code with no BJ in it :p.

(Usually I don't remove that, but since I remember that quote of yours, I thought you would like it more that way :eek:).

EDIT:
Handle Variables are pretty much obsolete.

I agree, but since I just do spells from time to time and I don't plan on releasing any map, I won't bother to learn to use anything else as it would just waste my time. I'll keep doing it in my old fashioned way. I keep thinking at the first spellmakers. Imagine that they didn't had even this obsolete system and they couldn't transfer information and handles like that :rolleyes:.
 

AdamGriffith

You can change this now in User CP.
Reaction score
69
@ Exide

It was probably because your spell was a mix of JASS triggers and GUI triggers... even though the GUI ones were disabled.

Though usually, a GUI-JASS hybrid is something like a GUI trigger with a random line in JASS that is not for removing leaks. Or using local globals or whatever they are called:

JASS:
    local unit udg_Caster = GetTriggerUnit()


Sort of thing.
 

Exide

I am amazingly focused right now!
Reaction score
448
@ Exide

It was probably because your spell was a mix of JASS triggers and GUI triggers... even though the GUI ones were disabled.

Though usually, a GUI-JASS hybrid is something like a GUI trigger with a random line in JASS that is not for removing leaks. Or using local globals or whatever they are called:

JASS:
    local unit udg_Caster = GetTriggerUnit()


Sort of thing.

-That's what I thought, too.

So I'm curious why I was disqualified..

EDIT:
The GUI triggers are disabled because in case anyone wanted to know what the triggers looked in GUI, I kept them in the map. -It's not like they're being used.
 
Status
Not open for further replies.
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

      No members online now.

      Affiliates

      Hive Workshop NUON Dome World Editor Tutorials

      Network Sponsors

      Apex Steel Pipe - Buys and sells Steel Pipe.
      Top