Do you think I could just leave this part blank and it'd be okay? We're just going to replace the whole thing with a header image anyway, right?
You are not logged in.
Pages: 1
I frequently see everyone (including myself) doing this.
If you open some discussion topics, you may eventually see posts like this:
This is not nice.
Yeah, it's totally not nice.
You should know that this is not nice.
Sorry, but this is not nice, you should know that.
And so on.
Do you think all these posts are needed? What would you do if you saw this happening? You would probably ignore, but what if someone comes with different content?
Don't believe me? Take a look here. This thread was not important anyways, but someone might come with an useful idea, it wouldn't be nice if it were swallowed with duplicated posts. If you want real examples, take a look at this, there's basically a lot of posts with the exact same content, but interpreted different.
What do you think about these posts?
(No, I am not being against these posts, I just thought it would help not duplicate posting)
This is a false statement.
Offline
More people voicing their opinion makes their argument stronger.
Offline
I'd say it has something to do with making the argument stronger because more people voicing the same opinion will have that effect.
thx for sig bobithan
Offline
I have to agree, when more people voice the same opinion it strengthens the argument.
Offline
When more people agree with the same thing, they become one with the opinion. The opinion will be all that matters.
Offline
If (people.AgreeOn("samething"))
{
argument = "stronger";
}
thanks zoey aaaaaaaaaaaand thanks latif for the avatar
Offline
Well, then woots are useless as all you have to do is say: "I agree/disagree, because...".
This is a false statement.
Offline
I don't usually see people doing this unless they have something else to add though. (Or at least, not masses of people)
^People usually say
"I agree"
multiple times, yes, but they all have different reasons.
thanks zoey aaaaaaaaaaaand thanks latif for the avatar
Offline
If (people.AgreeOn("samething"))
{
argument = "stronger";
}
Let me majorly improve that statement for you... in Lua.
local topic = Forum:GetTopic(29397)
local argumentstarter = 147 --The ID of the one who started the argument
local match1 --For effecient usage below
local match2 --Same here
posters = {}
argumentstrength = 1
topic.PostSubmitted:connect(function(poster, post)
if poster.Id ~= argumentstarter then
if posters[poster.Id] == nil then --If the poster already returned an opinion on the topic, it's not necessary to do the below
match1 = string.find(post, "not nice") --Agree?
match2 = string.find(post, "is nice") --Disagree?
if match1 ~= nil then
posters[poster.Id] = true --True as he/she agrees
argumentstrength = argument-strength + 1
elseif match2 ~= nil then
posters[poster.Id] = false --False as he/she disagrees
argumentstrength = argumentstrength - 1
end
print("Argument 'This is not nice.' current strength is " .. tostring(argumentstrength))
end
end
end)
Why all of this, Marios? Because what Xfrogman43 posted is not code... at least for me. So i wanted to return something more accurate.
What is a Lua, and can i eat it? http://www.lua.org/about.html
And, on-topic, i also agree with people posting the same thing to empower it.
Offline
Xfrogman43 wrote:If (people.AgreeOn("samething"))
{
argument = "stronger";
}Let me majorly improve that statement for you... in Lua.
local topic = Forum:GetTopic(29397) local argumentstarter = 147 --The ID of the one who started the argument local match1 --For effecient usage below local match2 --Same here posters = {} argumentstrength = 1 topic.PostSubmitted:connect(function(poster, post) if poster.Id ~= argumentstarter then if posters[poster.Id] == nil then --If the poster already returned an opinion on the topic, it's not necessary to do the below match1 = string.find(post, "not nice") --Agree? match2 = string.find(post, "is nice") --Disagree? if match1 ~= nil then posters[poster.Id] = true --True as he/she agrees argumentstrength = argument-strength + 1 elseif match2 ~= nil then posters[poster.Id] = false --False as he/she disagrees argumentstrength = argumentstrength - 1 end print("Argument 'This is not nice.' current strength is " .. tostring(argumentstrength)) end end end)
Why all of this, Marios? Because what Xfrogman43 posted is not code... at least for me. So i wanted to return something more accurate.
What is a Lua, and can i eat it? http://www.lua.org/about.html
And, on-topic, i also agree with people posting the same thing to empower it.
wow thanks so useful
thx for sig bobithan
Offline
wow thanks so useful
I'm just going to pretend i don't even know what irony is and say "you're welcome".
Offline
After onjits post you guys reached a point of diminishing returns on the cleverness.
Offline
After onjits post you guys reached a point of diminishing returns on the cleverness.
That was my master plan. I had the decision to either contribute something new, or start the chain reaction joke that happened.
I AM BECOME ONJIT
DESTROYER OF THREADS
:.|:;
Offline
Pages: 1
[ Started around 1738515266.7827 - Generated in 0.074 seconds, 13 queries executed - Memory usage: 1.61 MiB (Peak: 1.8 MiB) ]