Staredit Network > Forums > SC1 UMS Theory and Ideas > Topic: Concept Ladder
Concept Ladder
Apr 26 2008, 7:00 pm
By: lil-Inferno
Pages: < 1 2 3 4 56 >
 

Apr 30 2008, 2:22 am Falkoner Post #41



You completely ignored my last sentence, here, read it again:
Quote
Obviously I am not going to submit a map showing how every action and condition works, I only made one map showing a strange quirk that can really cause problems in maps.




None.

Apr 30 2008, 2:36 am Demented Shaman Post #42



Quote from Falkoner
You completely ignored my last sentence, here, read it again:
Quote
Obviously I am not going to submit a map showing how every action and condition works, I only made one map showing a strange quirk that can really cause problems in maps.
I'm not saying that you will, but that it could be done.

BTW, here's just a test of the bring condition since you said it's not within the trigger cycle.

Quote
Trigger("Player 1"){
Conditions:
Always();

Actions:
Display Text Message(Always Display, "FUCK");
}

//-----------------------------------------------------------------//

Trigger("Player 1"){
Conditions:
Bring("Player 1", "Terran Marine", "Location 0", Exactly, 1);

Actions:
Display Text Message(Always Display, "YOU FALKONER");
}

//-----------------------------------------------------------------//

Trigger("Player 1"){
Conditions:
Always();

Actions:
Display Text Message(Always Display, "LULZ NOOB");
}

//-----------------------------------------------------------------//

Quote
Trigger("Player 1"){
Conditions:
Elapsed Time(At least, 3);

Actions:
Set Switch("Switch1", set);
Create Unit("Player 1", "Terran Marine", 1, "Location 0");
}

//-----------------------------------------------------------------//

Trigger("Player 1"){
Conditions:
Switch("Switch1", set);

Actions:
Display Text Message(Always Display, "FUCK");
}

//-----------------------------------------------------------------//

Trigger("Player 1"){
Conditions:
Bring("Player 1", "Terran Marine", "Location 0", Exactly, 1);
Switch("Switch1", set);

Actions:
Display Text Message(Always Display, "YOU FALKONER");
}

//-----------------------------------------------------------------//

Trigger("Player 1"){
Conditions:
Switch("Switch1", set);

Actions:
Display Text Message(Always Display, "LULZ NOOB");
}

//-----------------------------------------------------------------//
*Hyper triggers not shown



None.

Apr 30 2008, 3:01 am Falkoner Post #43



Quote
I'm not saying that you will, but that it could be done.
That's why lil-inferno checks maps before adding them to the ladder.

And as I said in the second map, creating units updates the conditions, and preplaced units are already detected, your testing only proved what I said.



None.

Apr 30 2008, 3:07 am Demented Shaman Post #44



Quote from Falkoner
Quote
I'm not saying that you will, but that it could be done.
That's why lil-inferno checks maps before adding them to the ladder.

And as I said in the second map, creating units updates the conditions, and preplaced units are already detected, your testing only proved what I said.
That's why I have two tests fool.



None.

Apr 30 2008, 3:15 am Falkoner Post #45



First test simply shows that the unit is already detected when the game starts, otherwise it is only trigger order.

Second test shows what I said in the second map, that creating units via triggers updates the conditions immediately.

Both of which I already said. Who's the newb?



None.

Apr 30 2008, 3:17 am Demented Shaman Post #46



Quote from Falkoner
First test simply shows that the unit is already detected when the game starts, otherwise it is only trigger order.

Second test shows what I said in the second map, that creating units via triggers updates the conditions immediately.

Both of which I already said. Who's the newb?
You're the noob.

Quote from Falkoner
Second, Bring is not updated instantly, try out the first map and you will see that it takes around 1 trigger loop for Bring to update, and about 2 for Command.
Nice contradiction.



None.

Apr 30 2008, 3:25 am Falkoner Post #47



How is that a contradiction? I said that Bring takes a trigger loop to update, but creating a unit updates it immediately, and I said that when you start the game they are already detected, so how is that a contradiction?



None.

Apr 30 2008, 3:42 am Demented Shaman Post #48



Quote from Falkoner
How is that a contradiction? I said that Bring takes a trigger loop to update, but creating a unit updates it immediately, and I said that when you start the game they are already detected, so how is that a contradiction?
Quote
...creating units via triggers updates the conditions immediately.
Quote from Falkoner
Second, Bring is not updated instantly, try out the first map and you will see that it takes around 1 trigger loop for Bring to update, and about 2 for Command.




None.

Apr 30 2008, 3:43 am Falkoner Post #49



Bring is not updated instantly on it's own. I think it's obvious that I am trying to say that, since I would have to be a complete idiot to contradict myself like that.



None.

Apr 30 2008, 3:46 am Demented Shaman Post #50



Quote from Falkoner
Bring is not updated instantly on it's own.
That makes no sense.

Quote from Falkoner
I think it's obvious that I am trying to say that, since I would have to be a complete idiot to contradict myself like that.
No, it's not obvious what you're saying. You're contradicting yourself.



None.

Apr 30 2008, 3:48 am Falkoner Post #51



It makes perfect sense, the game will not update the conditions instantly like it does all other conditions unless you create a unit. You are taking what I say way too literally, I said it exactly like this in another topic back at Maplantis, and everyone got what I was saying, why can't you?



None.

Apr 30 2008, 3:54 am stickynote Post #52



You could use msn or aim to battle it out.



None.

Apr 30 2008, 3:55 am Falkoner Post #53



Nah, I'm done arguing, I see that it is pointless to argue, devilisk will never truly admit he was wrong, and so arguing with him is almost the same thing as spamming, thanks for ending it, sticky.



None.

Apr 30 2008, 4:02 am Demented Shaman Post #54



Quote from Falkoner
It makes perfect sense, the game will not update the conditions instantly like it does all other conditions unless you create a unit. You are taking what I say way too literally, I said it exactly like this in another topic back at Maplantis, and everyone got what I was saying, why can't you?

Quote
Trigger("Player 1"){
Conditions:
Always();

Actions:
Create Unit("Player 1", "Terran Marine", 1, "Location 0");
}

//-----------------------------------------------------------------//

Trigger("Player 1"){
Conditions:
Elapsed Time(At least, 3);

Actions:
Set Switch("Switch1", set);
}

//-----------------------------------------------------------------//

Trigger("Player 1"){
Conditions:
Switch("Switch1", set);

Actions:
Move Unit("Player 1", "Terran Marine", All, "Location 0", "Location 1");
}

//-----------------------------------------------------------------//

Trigger("Player 1"){
Conditions:
Switch("Switch1", set);

Actions:
Display Text Message(Always Display, "FALKONER IS");
}

//-----------------------------------------------------------------//

Trigger("Player 1"){
Conditions:
Bring("Player 1", "Terran Marine", "Location 1", Exactly, 1);
Switch("Switch1", set);

Actions:
Display Text Message(Always Display, "A DUMBASS");
}

//-----------------------------------------------------------------//

Trigger("Player 1"){
Conditions:
Switch("Switch1", set);

Actions:
Display Text Message(Always Display, "LULZ NOOB");
}

//-----------------------------------------------------------------//
I didn't create a unit and it still updated. WHAT NOW?



None.

Apr 30 2008, 4:04 am Falkoner Post #55



Okay, perhaps moving units updates it as well, I am not certain, but in most cases, the rules I put out work.



None.

Apr 30 2008, 4:05 am Demented Shaman Post #56



Quote from Falkoner
Okay, perhaps moving units updates it as well, I am not certain, but in most cases, the rules I put out work.
Move, create... what more is there to get a unit into a location?



None.

Apr 30 2008, 4:05 am stickynote Post #57



It doesn't matter anymore... Nobody really cares.



None.

Apr 30 2008, 4:07 am The Starport Post #58



Quote from stickynote
It doesn't matter anymore... Nobody really cares.
Because ignoring a problem makes it go away.


...


Seriously!



None.

Apr 30 2008, 4:08 am Falkoner Post #59



Devilisk, building units does not update it, removing them does not, killing them does not. I would not post it if I had no reason.



None.

Apr 30 2008, 4:12 am stickynote Post #60



Quote from name:Tuxedo-Templar
Quote from stickynote
It doesn't matter anymore... Nobody really cares.
Because ignoring a problem makes it go away.


...


Seriously!

I'm not saying to ignore it, but if you have issues in your map like that, it is pretty minor, and you could always test it yourself. Actually, just post test maps and we're good to go.



None.

Options
Pages: < 1 2 3 4 56 >
  Back to forum
Please log in to reply to this topic or to report it.
Members in this topic: None.
[06:48 pm]
Ultraviolet -- :wob:
[2024-4-21. : 1:32 pm]
Oh_Man -- I will
[2024-4-20. : 11:29 pm]
Zoan -- Oh_Man
Oh_Man shouted: yeah i'm tryin to go through all the greatest hits and get the runs up on youtube so my senile ass can appreciate them more readily
You should do my Delirus map too; it's a little cocky to say but I still think it's actually just a good game lol
[2024-4-20. : 8:20 pm]
Ultraviolet -- Goons were functioning like stalkers, I think a valk was made into a banshee, all sorts of cool shit
[2024-4-20. : 8:20 pm]
Ultraviolet -- Oh wait, no I saw something else. It was more melee style, and guys were doing warpgate shit and morphing lings into banelings (Infested terran graphics)
[2024-4-20. : 8:18 pm]
Ultraviolet -- Oh_Man
Oh_Man shouted: lol SC2 in SC1: https://youtu.be/pChWu_eRQZI
oh ya I saw that when Armo posted it on Discord, pretty crazy
[2024-4-20. : 8:09 pm]
Vrael -- thats less than half of what I thought I'd need, better figure out how to open SCMDraft on windows 11
[2024-4-20. : 8:09 pm]
Vrael -- woo baby talk about a time crunch
[2024-4-20. : 8:08 pm]
Vrael -- Oh_Man
Oh_Man shouted: yeah i'm tryin to go through all the greatest hits and get the runs up on youtube so my senile ass can appreciate them more readily
so that gives me approximately 27 more years to finish tenebrous before you get to it?
[2024-4-20. : 7:56 pm]
Oh_Man -- lol SC2 in SC1: https://youtu.be/pChWu_eRQZI
Please log in to shout.


Members Online: Ultraviolet, 3gabriellae5885fL3, Roy